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;
时间: 2024-10-09 23:33:22