在 Delphi 2007 中使用 Web 服务
任何人都可以解释或帮助我创建一个代码来使用以下 Web 服务:http://207.150。 244.30:9000/txserver/1?wsdl 我曾使用过此网络服务,但运气不佳!
Can any one explain or help me create a code to consume the following Web Service: http://207.150.244.30:9000/txserver/1?wsdl I've worked with this web service but with no luck!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需让
WSDL Importer
为您完成这些工作即可。转到File / New / Other
,然后转到Delphi Projects / WebServices / WSDL Importer
。在向导中,只需粘贴您发布的 Web 服务定义链接并完成向导。 Delphi 将生成完整的单元,包括所有类、函数和属性。...................................................... ...................................................... ...................................................... ......................
创建 Web 服务客户端的复杂指南,例如 此处。
Simply let the
WSDL Importer
do the stuff for you. Go toFile / New / Other
and there go toDelphi Projects / WebServices / WSDL Importer
. In the wizard just paste your web service definition link you've posted and finish the wizard. Delphi will generate complete unit including all classes, functions and properties......................................................................................................................................................................
Complex guide for creating web service clients you can find for instance here.