在 .net 中的 SOAP 响应中指定类型名称

发布于 2024-11-07 19:59:31 字数 886 浏览 0 评论 0原文

我是 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文