从 WSDL 生成服务契约
我有一个 WSDL,需要生成 ServiceContract(OperationContract、DataContract)...
我找到了一种方法来实现 ASMX WebServices 但似乎找不到如何在 WCF 中执行此操作。
我已尝试运行
svcutil AuthPartnerWSDL.wsdl /i /messagecontract /tcv:version35
,但生成的接口不会反序列化传入的调用,因此服务实现的所有请求参数均为 null
I have a WSDL that I need to generate a ServiceContract (OperationContract, DataContract)...
I have found a way to do it for ASMX WebServices but can't seem to find how to do it in WCF.
I have tried running
svcutil AuthPartnerWSDL.wsdl /i /messagecontract /tcv:version35
but the resulting interface doesn't deserialize the call coming in so all the request parameters to the service implementation are null
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保您拥有与当前服务定义匹配的最新 WSDL。
Make sure you have the most updated WSDL that matches the current service definition.
WCF 的合同第一个工具
http://wscfblue.codeplex.com/
Contract first tool for WCF
http://wscfblue.codeplex.com/