It seems when I use a model it will add a wrapper that is the same as the property name ‘request’, so when I ‘wizdler’ chrome tool it will have the wrong formatting, seemingly I’m also have trouble reading data, so I thought that was the issue.
The interface looks like this:
[OperationContract()]
string GetData(DataRequestModel request);
The received structure I see with wizdler is this:
<Envelope xmlns="http://www.w3.org/2003/05/soap-envelope">
<Body>
<DataRequest xmlns="http://schemas.xxx.xx/xxx/xxx/xx">
<request>
<ModifyDate xmlns="http://schemas.datacontract.org/2004/07/xxx">[string?]</ModifyDate>
</request>
</DataRequest>
</Body>
</Envelope>
I do not want those tags
Tried a few things with wrappers option, but I did not see it change does anyone have a suggestion how to resolve this issue?
I tried diverse things like with wrapper options, formatting etc.