使用自动生成的 Web 服务代理的注意事项(优点和缺点)
我们在 .net 中使用大量手动代码(通过 HttpWebRequest)来访问一些 Web 服务。我读到我们不需要这样做,因为我们可以轻松生成代理。有没有人从手动转换为自动生成的服务。我们确实需要使用一些自定义设置,例如基于配置设置和客户端证书的 UseProxyServer。
我需要注意哪些事项?任何有用的链接都非常感谢。
更新(如 John Saunders 指出):我们的 Web 服务正在使用 WS-Security,因此需要传递 UsernameToken。
We are using a lot of manual code in .net (through HttpWebRequest) to access some web services. I was reading we do not need to do this as we can easily generate proxies. Has anyone converted from manual to auto-generated services. We do need to use some customized settings like UseProxyServer based on config settings and client certificates.
What are the considerations I need to take care of? Any helpful link is really appreciated.
Update (as pointed by John Saunders): Our web services are using WS-Security and hence the need to pass UsernameToken.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您“手动”设置的任何内容都可以在代理类上设置。您应该使用代理,除非您有特定原因不这样做。这将为您节省大量时间,您可以用这些时间来解决其他问题。
Anything you would have set "manually" can be set on the proxy class. You should use the proxy unless you have a specific reason not to. It will save you a great deal of time that you could spend solving other problems.