标签:
create or replace procedure MAS_ADMIN.receive_SendForm is url VARCHAR2(1000); REQ UTL_HTTP.REQ; RESP UTL_HTTP.RESP; res VARCHAR2(1000); begin --处理装箱后15天未接收的发货单 url := 'http://xxx.xxx.xxx.xxx/Ztemas/Interface/ReceiveSendForm.ashx'; REQ := UTL_HTTP.begin_request(url, 'POST', 'HTTP/1.0'); RESP := UTL_HTTP.get_response(REQ); UTL_HTTP.READ_LINE(RESP, res, TRUE); UTL_HTTP.end_response(RESP); end receive_SendForm;
标签:
原文地址:http://blog.csdn.net/hutao1101175783/article/details/44219079