Yes both xml's are valid, problem is with downstream legacy system which is not using xsd parsing, they are treating it as a string and using tag name to retrieve data.
I have a soap webservice , which has job of extracting payload and pushing it to file system.
Here is the soap sample
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelop ...
I am working with soap service. I need to extract payload and push it to file system.
Payload has 2 namespaces, which are defined at envelope level.
When I copy MB element for(payload) of incoming r ...