使用 svcutil 生成 wcf 代理时无法分配用户名和密码?
如果我创建一个新项目并向其添加 wcf 服务引用,我可以使用它生成的客户端将用户名和密码分配给 ClientCredentials,但是如果我使用 svcutil.exe 和 wsdl 创建代理,它会生成代理代码不允许我设置用户名和密码。
If I create a new project and add a wcf service reference to it,I can use the client it generates to assign the username and password to ClientCredentials, but if I create the proxy using svcutil.exe and the wsdl, the proxy code it generates doesn't allow me to set the username and password.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它应该可以工作;生成的代理继承自
ClientBase
,它具有 ClientCredentials 属性。如果您再次遇到这种情况,请发布生成的类签名,我们可以查看它。It should just work; generated proxies inherit from
ClientBase<T>
, which has a ClientCredentials property. If this happens to you again, please post the generated class signature, and we can look at it.