码迷,mamicode.com
首页 > Web开发 > 详细

存储过程的HTTP post

时间:2015-03-12 11:30:09      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

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 post

标签:

原文地址:http://blog.csdn.net/hutao1101175783/article/details/44219079

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!