Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

apex_web_service.make_rest_request p_body parameter declarative equivalent

Pavel_pJan 13 2016 — edited Mar 9 2016

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

This post has been answered by Pavel_p on Mar 9 2016
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 6 2016
Added on Jan 13 2016
8 comments
2,472 views