The result looks like this
I want to remove 2 out if 3 tags from the result from
<testResponse xmlns="http://tempuri.org/">
<testResult>
<resultaat xmlns="">
How should i do that?
My code looks likethis
Code:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<testResponse xmlns="http://tempuri.org/">
<testResult>
<resultaat xmlns="">
<Nummer>105095306</Nummer>
</resultaat>
</testResult>
</testResponse>
</s:Body>
</s:Envelope>
<testResponse xmlns="http://tempuri.org/">
<testResult>
<resultaat xmlns="">
How should i do that?
My code looks likethis
Code:
[ServiceContract]
public interface IService1
{
// TODO: Add your service operations here
[OperationContract(Name = "test")]
XmlElement GetData2(string value);
}
Comment