对于 Live Search SOAP 服务,我应该发布到什么 URL?
有可能我真的很厚。 然而,查看使用 SOAP 的实时搜索(MSN 搜索)的 SDK,并没有告诉我该服务位于哪个 URL? 我可以下载可能封装的 C# 或 VB 的 SDK,但这对我没有帮助(我正在使用 ruby)。
Its possible I am just really really thick. However, looking over the SDK for the live search (MSN search) that uses SOAP, doesn't tell me what URL the service is at?? I can download SDKs for C# or VB which probably encapsulate, but that doesn't help me (I am using ruby).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要的 URL 是: http://soap.search.live.com/webservices.asmx< /a>
有关可用于从 WSDL 发现端点的各种工具的其他信息:
如果您有 VS,则可以通过将 Web 服务引用添加到 C# 控制台项目,然后打开 app.config 文件并查找来发现端点
元素。要添加 Live Search Web 服务的 Web 服务引用,请将向导指向 WSDL,网址为 http://soap.search.live.com/webservices.asmx?wsdl。
或者,您可以使用 .Net 3.0 中的 svcutil.exe 工具从 WSDL 生成 C# 客户端包装器和 .config 文件。 同样,您对生成配置中的
感兴趣。The URL you need is: http://soap.search.live.com/webservices.asmx
Additional info on various tools you could use to discover endpoints from WSDL:
If you have VS, you can discover the endpoint by adding a Web Service Reference to a C# console project and then opening the app.config file and looking for the
<endpoint>
element.To add the Web Service Reference for the Live Search web service, point the wizard to the WSDL at http://soap.search.live.com/webservices.asmx?wsdl.
Alternatively, you can use the svcutil.exe tool from .Net 3.0 to generate C# client wrapper and a .config file from the WSDL. Again, you are interested in the
<endpoint>
from the generate config.