与我以前的帖子相关
Getting the response result as an array and not a object in web service
我已经编写了一个Web服务,该服务的响应消息如下所示
s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header />
<s:Body>
<signOnResponse xmlns="http://tempuri.org/">
<signOnResult xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<a:string>NA</a:string>
<a:string>NA</a:string>
<a:string>NA</a:string>
<a:string>10</a:string>
</signOnResult>
</signOnResponse>
</s:Body>
</s:Envelope>
我需要更改响应,如下所示
s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header />
<s:Body>
<signOnResponse xmlns="http://tempuri.org/">
<signOnResult>NA</signOnResult>
<signOnResult>NA</signOnResult>
<signOnResult>NA</signOnResult>
<signOnResult>10</signOnResult>
</signOnResponse>
</s:Body>
</s:Envelope>
我编写的Web方法返回字符串数组。
为了获得对我首选结构的响应,我正在研究是否可以更改XML序列化的格式以给出响应。但我无法找到合适的解决方案。我也尝试实现 IClientMessageInspector 。
注意:用php编写的客户端可以读取不在字符串对象下的XML结构。它只能读取下面的XML。并且不能对客户端代码进行任何更改。
s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header />
<s:Body>
<signOnResponse xmlns="http://tempuri.org/">
<signOnResult>NA</signOnResult>
<signOnResult>NA</signOnResult>
<signOnResult>NA</signOnResult>
<signOnResult>10</signOnResult>
</signOnResponse>
</s:Body>
</s:Envelope>
提前致谢
答案 0 :(得分:0)
您的回复课程是什么样的?
试试这个:
[XmlRoot(ElementName="signOnResponse", Namespace="http://tempuri.org/")]
public class SignOnResponse {
[XmlElement(ElementName="signOnResult", Namespace="http://tempuri.org/")]
public List<string> SignOnResult { get; set; }
[XmlAttribute(AttributeName="xmlns")]
public string Xmlns { get; set; }
}