Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在为一个.net应用程序编写一些 Web 服务,现在我已经准备好使用它们了。我见过很多例子,其中有使用服务的本地代码,而不是使用 Visual Studio 在添加 Web 引用时创建的自动生成的方法。
.net
这有什么好处吗?
不,你正在做的很好。不要让那些人迷惑你。
如果您使用 .net 编写了 Web 服务,那么由 .net 生成的参考代理将非常合适。您描述的情况(您既是生产者又是消费者)是理想的情况。
如果您需要连接到在编译时未知的 Web 服务,那么您将需要一种更动态的方法,您可以在其中推断 Web 服务的“形状”。
但是从使用自动生成的代理类开始,在遇到限制之前不要担心。当你这样做时 - 回到堆栈溢出;-)