在 .net 中的 SOAP 响应中指定类型名称
我是 .net 的新手,正在尝试构建 SOAP Web 服务的服务器端。客户已经被别人实现了,我不允许做任何改变,所以我必须符合客户的期望。
到目前为止,我已经弄清楚如何更改 SOAPAction 并重命名用于输入到 Web 方法中的类型,并使用两者的属性。但同样的技术对于响应值似乎失败了。
对于一种特定的 Web 方法,客户端期望:
...
<方法响应>
...
所以我尝试这样做:
[WebMethod]
[SoapDocumentMethod(ResponseElementName = "method_response")]
public MessageResponse[] method(String input) {
...
[System.Xml.Serialization.XmlType(TypeName = "message_response")]
public class MessageResponse {
....
但是 Web 服务返回
<方法结果>
知道如何强制 Web 服务器不返回
标记吗?
I'm new to .net and trying to build the server side of a SOAP web service. The client is already implemented by someone else and I'm not allowed to make changes, so I have to conform to the client's expectations.
So far I've figured out how to change the SOAPAction and rename the types used for inputs into the web methods, using attributes for both. But the same techniques seem to fail for the response value.
For one particular web method, the client expects:
...
<method_response>
<message_response/>
<message_response/>
</method_response>
...
So I try this:
[WebMethod]
[SoapDocumentMethod(ResponseElementName = "method_response")]
public MessageResponse[] method(String input) {
...
[System.Xml.Serialization.XmlType(TypeName = "message_response")]
public class MessageResponse {
....
But the web service returns
<method_response>
<methodResult>
<message_response/>
<message_response/>
</methodResult>
</method_response>
Any idea how I can force the web server to not return the <methodResult>
tags?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论