Delphi 调用WebService 直接发送SOPA报文
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Delphi 调用WebService 直接发送SOPA报文相关的知识,希望对你有一定的参考价值。
参考技术A 有一些WebService使用D7的HTTPRIO控件已经不能正常调用了,这个时候可以直接使用HTTPReqResp控件直接发送报文,
或者使用TIdHTTP控件 http post方式请求 webservices soap 协议接口
函数示例:
HTTPReq: THTTPReqResp;
function TDM_Demo.WebSrvMain( In_fkey_XML,In_funccode,In_fparam_XML:String):String;
var
DataMsg:WideString;
strStream, strSend: TStringStream;
begin
//使用SOPAUI等工具获得标准示例报文DataMsg
DataMsg:='<?xml version="1.0" encoding="utf-8"?>'+
'<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"'+
' xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" '+
'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" '+
'xmlns:xsd="http://www.w3.org/2001/XMLSchema">'+
'<SOAP-ENV:Body>'+
'<m:funMain xmlns:m="http://services.dtshis/">'+
'<In_fkey_XML><![CDATA['+In_fkey_XML+']]></In_fkey_XML>'+
'<In_funccode>'+In_funccode+'</In_funccode>'+
'<In_fparam_XML><![CDATA['+In_fparam_XML+']]></In_fparam_XML>'+
'</m:funMain></SOAP-ENV:Body></SOAP-ENV:Envelope>';
strStream := TStringStream.Create('');
strSend := TStringStream.Create(AnsiToUtf8(DataMsg)); //Utf8转码
try
HTTPReq.url := ' 服务地址 ';
HTTPReq.Execute(strSend, strStream);
result := strStream.DataString;
result := UTF8Decode(result);
//xml < > " 转码
result := StringReplace(result,'<','<',[rfReplaceAll, rfIgnoreCase]);
result := StringReplace(result,'>','>',[rfReplaceAll, rfIgnoreCase]);
result := StringReplace(result,'"','"',[rfReplaceAll, rfIgnoreCase]);
//转为delphi XMLDocument 文档
result := StringReplace(result,'<?xml version="1.0" encoding="UTF-8"?>',
'<?xml version="1.0" encoding="gb2312"?>',[rfReplaceAll, rfIgnoreCase]);
finally
strStream.Free;
strSend.Free;
end;
end;
http post方式请求 webservices soap 协议接口
with IdHttp do
begin
ProtocolVersion := pv1_1;
AllowCookies := True;
ProxyParams.BasicAuthentication := False;
ProxyParams.ProxyPort := 0;
Request.ContentLength := -1;
Request.Accept := 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8';
Request.BasicAuthentication := False;
Request.ContentType := 'application/x-www-form-urlencoded';
HTTPOptions :=[hoKeepOrigProtocol, hoInProcessAuth];
ReadTimeout:=5000;
end;
strSend.WriteString(DataMsg);
result:=IdHttp.Post(sWSDLAddr,strSend);
如何在网页中调用webservice?
我现在可以有个webservice,想在我做的网页中调用它.有高手知道怎么做吗?谢谢!
谁知道怎么用RSA开发Web service啊~~~~~~~~
神啊!救救我吧~~~~~~
再在命名空间中引入这个WEBService,然后再实例化一个对象!通过这个对象去使用它的方法! 参考技术B 如果你用Delphi调用Web Service
可以直接加入一个THTTPRIO控件
然后就能直接使用Web Service的方法
以上是关于Delphi 调用WebService 直接发送SOPA报文的主要内容,如果未能解决你的问题,请参考以下文章
delphi 调用百度地图WEBSERVICE转换GPS坐标 转
如何有delphi5调用webservice,别人写的webservice?
使用delphi 10.2 开发linux 上的webservice