以编程方式从元数据创建 WSDL
如何覆盖 ASP.NET 从我的 WebMethod
元数据为我的 Web Serive 创建 WSDL 文件的方式?
How can I override the way ASP.NET creates a WSDL file for my Web Serive from my WebMethod
s' metadata?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你无法很好地控制这一点。您可以使用
[XmlElementAttribute]
等属性来控制 XML 请求和响应的形状。您可以使用[WebMethod]
属性控制请求和响应的名称和命名空间。你想实现什么目标?
You cannot control this very much. You can control the shape of the XML request and response by using attributes like
[XmlElementAttribute]
. You can control the name and namespace of the request and response with the[WebMethod]
attribute.What are you trying to accomplish?
使用属性
[XmlSchemaProvider]
标记您的类,如此处。Mark your class with the attribute
[XmlSchemaProvider]
as shown here.