使用 OverByte ICS 组件的 Delphi Soap 客户端示例?
我正在寻找使用 OverByte Internet 组件套件的 Delphi 示例 SOAP 客户端,一个非阻塞套接字库。 OverByte ICS 的演示包括基本的 HTTP 客户端和服务器,但不包括 SOAP。
我希望有人有一个演示,或者可以指出使用 ICS 使 SOAP 工作的步骤。
I am looking for a sample SOAP client for Delphi using the OverByte Internet Component Suite, a non-blocking socket library. The demos for OverByte ICS include basic HTTP client and server, but not SOAP.
I am hoping that someone has a demo, or can point the steps to making SOAP work using ICS.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要使用 Delphi 中的标准 Soap 库将 Soap 插入到 HTTP 客户端或服务器中,您可以使用 ObjectToSOAP 和 SOAPToObject 方法为起点。这些方法将从 TRemotable 派生的对象序列化为 XML 或从 XML 序列化/反序列化。
To plug in Soap in a HTTP client or server using the standard Soap library in Delphi, you can use the ObjectToSOAP and SOAPToObject methods of TRemotable as a starting point. These methods serialize / deserialize objects derived from TRemotable to / from XML.