gpt4 book ai didi

xml - 我自己的 SOAP 代码?

转载 作者:数据小太阳 更新时间:2023-10-29 02:22:37 26 4
gpt4 key购买 nike

D6 教授

我们必须使用 SOAP XML 服务。我尝试导入wsdl,并使用Delphi生成的接口(interface),但失败了。

而且:正如我所见,我必须在 XML 部分提供用户名和密码,但我不知道如何使用这个自动界面...

我决定手动提供 XML。这不是问题,问题是如何发布到服务器...wsdl 导入知道如何调用服务器。它知道 url、端口等。

我想编写自己的代码。因为我认为 SOAP 调用是使用“Post”方法,所以我可以轻松地做到这一点。但是post需要什么参数呢?SOAP 服务器读取哪些参数?

要理解我在说什么,请看这段代码(FParams : TStrings):

procedure TDDHTTPObject.Post;
var
WinHttpReq : variant;
posts : string;
begin
Result := '';
WinHttpReq := CreateOleObject('WinHttp.WinHttpRequest.5.1');
try
posts := EncodeParamsToURL(FParams);
URL := URL + '?' + posts;
WinHttpReq.Open('POST', URL, false);
WinHttpReq.Send();
Result := WinHttpReq.ResponseText;
finally
WinHttpReq := 0;
end;
end;

例如:

Params['data'] = xmlstring;

Params['soap'] = xmlstring;

你知道吗?

最佳答案

如果您使用 .NET 作为 Web 服务器,您可以在浏览到 WS URL 时看到方法和原始 XML,即: http://yourdomain.com/ws/ApplicationWebService.asmx

XML 可用于 SOAP 1.1 和 1.2它可能看起来像这样 (SOAP 1.1):

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<UserIdentificationHeader xmlns="http://yourdomain.com/ws">
<UserAgent>string</UserAgent>
<UserToken>string</UserToken>
</UserIdentificationHeader>
</soap:Header>
<soap:Body>
<MyTestMethod xmlns="http://yourdomain.com/ws" />
</soap:Body>
</soap:Envelope>

接下来我像这样使用“MSXML2.XMLHTTP”:

var
mhttp: OleVariant;

URL := 'http://yourdomain.com/ws/ApplicationWebService.asmx';
mhttp := CreateOleObject('MSXML2.XMLHTTP');
mhttp.Open('POST', URL, False); // False=synchronously
mhttp.setRequestHeader('User-Agent', APP_WS_USER_AGENT); // optional
mhttp.setRequestHeader('Content-Type', 'text/xml; charset=utf-8');
mhttp.setRequestHeader('SoapAction', 'http://yourdomain.com/ws/' + 'MyTestMethod');

mhttp.send(TheSOAPXML);

if mhttp.Status = 202 then ShowMessage('ACCEPTED OK!');

关于xml - 我自己的 SOAP 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8210263/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com