在 Javascript 中使用 Web 服务 (WSDL)
我设计了一个基于网络的计算器。但我想让这个计算器在网络服务(WSDL)上运行。我在我的网站背后使用 C# 和 Javascript。那么您能帮我在代码中的何处添加 WSDL 描述吗?如果需要,我可以将我的代码放在这里。此致。
I have designed a web based calculator. But I want to have this calculator run on a web service(WSDL). I'm using C# and Javascript behind the back of my website. So could you help me where to add the WSDL descriptions in code and where? If required I can put my code here. Best regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要向 Web 服务发出请求,不需要将 WSDL 放入 JavaScript 中。
调用 Web 服务是一个与任何其他请求一样的请求,您可以将 AJAX 与 JQuery 结合使用,例如:
示例来自:http://encosia.com/2008/03/27/using-jquery-to-consume-aspnet-json-web-services/
You need to make a request to the webservice, you don't need to put WSDL into javascript.
Calling a webservice is a request like any other request, you can use AJAX with JQuery for example:
Example from: http://encosia.com/2008/03/27/using-jquery-to-consume-aspnet-json-web-services/