Delphi <-> c# Web Service SOAP 请求,缺少参数值



我需要在Delphi7中的客户端和.NETWebservice(ASMX(之间实现SOAP通信。我知道,非常古老的项目/技术。

我已经编写了Web服务,但通过WSDL导入器(基于THTTPRIO(自动创建的类无法正常工作,我无法将参数值传递到Web服务中。换句话说,webservice中的方法被调用,但它的所有参数都有默认值。我可以自己解析xml请求,但在WebMethod中无法访问原始xml。我希望,我只是缺少一些方法属性。知道吗?

我使用网络嗅探器来确保,参数被发送到服务,它看起来像这样:

POST /Lib/ASPX/WSService.asmx HTTP/1.1
SOAPAction: "WS/GetMessages"
Content-Type: text/xml
User-Agent: Borland SOAP 1.2
Host: localhost:54561
Content-Length: 480
Connection: Keep-Alive
Cache-Control: no-cache
<?xml version="1.0"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<NS1:GetMessages xmlns:NS1="WS">
<id xsi:type="xsd:int">12345</id>
</NS1:GetMessages>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

webservice中方法的头,使用参数id=0 调用

[WebMethod]
public List<HelpDeskView> GetMessages(int id) 

我找到了解决方案。在自动生成单元的末尾,在initialization部分,缺少这一行:

InvRegistry.RegisterInvokeOptions(TypeInfo(Service1Soap), ioDocument);

相关内容

  • 没有找到相关文章

最新更新