如何在多个 Web 服务项目中使用一个源文件?
我需要创建两个网络服务。他们做同样的事情,但其中有一个网站引用了“测试”服务。另一个提到了“实时”服务。
我想在 Visual Studio 2010 中使用 c# 创建和维护一组源 (.asmx) 文件。
我已成功创建一个包含两个 Web 服务项目的解决方案。我什至设法在每个项目中引用(使用“添加链接”)同一组源文件。
但是,当我去调用 asmx 文件、Web 服务时,找不到该文件,并且我无法找到一种方法来区分我正在调用哪个服务; asmx 文件仅存在于公共文件夹区域中,实际上并不存在于每个项目中。
I have the need to create two web services. They do the same thing, but one has web references to "testing" services. The other has reference to "live" services.
I'd like to create and maintain one set of source (.asmx) files using c# in Visual Studio 2010.
I've managed to create a solution which contains two web service projects. I even managed to reference (using Add Link) the same set of source files in each project.
However, when I go to call the asmx file, the web service, the file's not found and I cannot figure a way to distinguish which service I am calling; the asmx files only exist in the common folder area, not actually within each project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果测试和实时服务使用相同的 WSDL,那么您不需要单独的 Web 引用。使用单个引用,然后设置代理类的 Url 属性以指向正确的服务。
If the testing and the live services use the same WSDL, then you do not need separate web references. Use a single reference, then set the Url property of the proxy class to point to the correct service.