我试图在PL / SQL中调用REST WebService但它不起作用。我收到这个错误:
Content-type must be multipart/form-data
这就是我所拥有的:
DECLARE
req UTL_HTTP.REQ;
resp UTL_HTTP.RESP;
value VARCHAR2(1024); -- URL to post to
v_url VARCHAR2(200) := 'http://local/api/ws';
-- Post Parameters
v_param VARCHAR2(500) := 'art=11111\&qty=1';
v_param_length NUMBER := length(v_param);
BEGIN
req := UTL_HTTP.BEGIN_REQUEST (url=> v_url, method => 'POST');
UTL_HTTP.SET_HEADER(req, 'User-Agent', 'Mozilla/4.0');
UTL_HTTP.SET_HEADER (r => req,
name => 'Content-Type',
value => 'multipart/form-data; charset=utf-8; boundary=/');
UTL_HTTP.SET_HEADER (r => req,
name => 'Content-Length',
value => v_param_length);
UTL_HTTP.WRITE_TEXT (r => req,
data => v_param);
resp := UTL_HTTP.GET_RESPONSE(req);
LOOP
UTL_HTTP.READ_LINE(resp, value, TRUE);
DBMS_OUTPUT.PUT_LINE(value);
END LOOP;
UTL_HTTP.END_RESPONSE(resp);
EXCEPTION
WHEN UTL_HTTP.END_OF_BODY THEN
UTL_HTTP.END_RESPONSE(resp);
END;
以下是CURL的示例:
curl -v -X POST -H "Content-Type: multipart/form-data" -F "art=11111" -F "qty=1" http://local/api/ws
此示例适用于curl,但我不知道为什么它不适用于PL / SQL。 你能帮助我吗 ?
答案 0 :(得分:2)
我认为您不能像在URL中那样使用带有GET查询的POST ...
看起来很难做到你期望的事情。以下是Ask Tom的一些输入:
这个想法是生成帖子文本,包括一个特定的“边界”,如下所示:
POST /path/to/script.php HTTP/1.0 Host: example.com Content-type: multipart/form-data, boundary=AaB03x Content-Length: $requestlen --AaB03x content-disposition: form-data; name="field1" $field1 --AaB03x content-disposition: form-data; name="field2" $field2 --AaB03x content-disposition: form-data; name="userfile"; filename="$filename" Content-Type: $mimetype Content-Transfer-Encoding: binary $binarydata --AaB03x--
这里还有same issue developed代码很多。
希望它有所帮助。
答案 1 :(得分:1)
我在http请求中使用与POST方法类似的过程,但是我设置标题如下:
UTL_HTTP.set_header( v_http_request, 'Content-Type', 'application/x-www-form-urlencoded;charset=utf-8' );
另请注意,如果Web服务站点实现了安全证书,您的DBA必须创建钱包服务器端,在打开请求之前,您应该调用该钱包:
utl_http.set_wallet('file:<your wallet file route>', '<your pass>');
有关钱包的更多信息,请here