I'm new to IBM BPM and am trying to put together a process that sends a POST
request to a RESTful web service using teamworks.HttpClient
.
I am able to POST
via Chrome's Advanced REST Client, so I know the server and service are accessible from my system.
When I try to do this via teamworks.HttpClient
in Process Designer I get HTTP Status 405
. I've only ever seen that when I screwed up and specified GET
.
I have written Ajax calls in JavaScript to access this service. I have had to specify POST
in the Ajax calls.
Is teamworks.HttpClient
configured to be a GET
or POST
by default? If it does GET
, how can I tell it to do a POST
?