Hello, I have a doubt regarding the SOAP Message construction.
Can we have a soap message constructed as follows which contains 2 documents under body?
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v1="http://abc.com/products/data/v1.0" xmlns:ns="http://abc.com" xmlns:wo="http://abc.com/products">
<soapenv:Header/>
<soapenv:Body>
<v1:deleteRequest>
....
</v1:deleteRequest>
<v1:createRequest>
....
</v1:createRequest>
</soapenv:Body>
</soapenv:Envelope>
Well, its quite possible to construct this, I auto generated the above SOAP Message after loading a WSDL into SOAPUI. But does this fit under the Basic Profile I?
I understand that we can at the most have on document node under Body element? Is my understanding correct?