Hello,
I can successfully call a POST REST service method with this code:
l_response_clob := apex_web_service.make_rest_request(
p_url => 'http://localhost:8150/consumeXML',
p_http_method => 'POST',
p_body => l_body);--some xmltype converted to clob via xmltype.getClobVal()
Is it possible to create a web service reference in Shared Components =>Web Service References and test/use it? I cannot find where I can specify the p_body parameter equivalent.
Thanks a lot,
Pavel