SOAP

Required Name Type Default
* target String
* uri String
* body String {}
username String
password String
timeout String (Duration) "2000 ms"
headers String
Name Type
status int
body String
headers HttpHeaders

Response headers are read as a case-insensitive multi-valued map, e.g. ${#headers['Content-Type'][0]}. See HTTP actions for details.

Example🔗

1
2
3
4
5
6
7
8
9
HttpSoapAction(
    target = "HTTP_TARGET",
    uri = "https://github.com/search?q=chutney",
    username = "userprivate",
    password = "userpassword",
    headers = mapOf(
      "Content-Type" to "application/json"
    ),
)