从 WSDL 文件生成 C#.net 类
我想从 WSDL 文件生成 Web 服务类 (c#.net)。我想要服务器端代码而不是客户端。是否有任何工具或任何其他可用方法可以从 WSDL 文件生成 WCF 服务代码?
提前致谢。
I want to generate Web Service Classes (c#.net) from WSDL File. I want server side code not client side. Is there any tool or any other way available that can generate WCF service code from WSDL file?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 Visual Studio,则可以在命令提示符下运行 SvcUtil.exe,这将生成基于 WSDL 中定义的类型的所有 C# 对象,以及将服务公开为 C# 方法的服务代理。它还将为您提供 WCF 绑定的示例配置文件。这与 Visual Studio 用于添加服务器引用向导的工具相同,因此任一解决方案都可以接受。
If you are using Visual Studio you can run SvcUtil.exe at the command prompt this will generate all of the C# objects based on the types defined in the WSDL, plus a service proxy that will expose the service as C# methods. It will also provide you with a sample config file for the WCF bindings. This is the same tool that Visual Studio uses for its Add Server Reference wizard, so either solution is acceptable.
尝试 http://wscfblue.codeplex.com/。这将生成基于 XSD 的 WSDL 并从 wsdl 生成代码。
try http://wscfblue.codeplex.com/. this will generate WSDL based on XSD and generate code from wsdl.