aware_support wroteExposed services support both GET and POST
Support, you should make the "User Guide" more clear that an exposed REST-ful service does support POST.
Despite my earlier ignorance, I am now a happy camper. 😃
Using build 2628, I created a simple service that implements REST and was able to consume that service with JSON in the body of the request.
Here are some details:
BSV: TestPost
Service: TestRest
Input BO to my implementing process: ServiceInput. With 2 Plain Text attribute: InData1 and InData2.
I used Postman to send the test request to my test service.
HTTP Verb: POST
URL: http://localhost:8080/AwareIM/REST/TestPost/TestRest
Header contained: Content-Type : application/json
Body: { "InData1" : "test 4 body", "InData2" : "POST" }
And it worked. The above data was saved in the ServiceInput BO and the service returned the expected output.