我们使用UTL_HTTP
方法调用外部URL,并设置HTTP头,如basic authentication
,keep alive
,content
,soap action
,因此我需要打印我设置的头。
DBMS_OUTPUT.put_line('l_http_request-'||l_http_request); -- not working
下面是代码
UTL_HTTP.set_header(l_http_request, 'Content-Type', 'text/xml;charset=UTF-8');
if soap_action is not null then
UTL_HTTP.set_header(l_http_request, 'SOAPAction', soap_action);
end if;
UTL_HTTP.set_header(l_http_request, 'Content-Length', LENGTH(request_clob));
DBMS_OUTPUT.put_line('l_http_request-'||l_http_request); ---how to print this
1条答案
按热度按时间mpgws1up1#
按设置打印它们: