Hi, I'm using apex 19.1.
Since we are upgrading to 12.2, I need to convert all our calls to web service from UTL_DBWS to APEX_WEB_SERVICE.
All examples I saw specify soap envelope and pass it as a parameter to apex_web_service.make_request.
Instead of this, is there a way to reference wsdl like UTL_DBWS does, ie:
utl_dbws.set_target_endpoint_address(
call_Handle => L_call,
endpoint => L_wsdl_url);
Many thanks in advance.