I followed some internal documentation about how to write SOAP request and my SOAP envelope looks like this
<soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/ xmlns:proc=http://example.org/rt/myprocess>
<soapenv:Body>
<proc:myprocessRequest>
<INPUT_DATA>
Data which I'm receiving in my app
</INPUT_DATA>
</proc:myprocessRequest>
</soapenv:Body>
</soapenv:Envelope>
It's working well when I hit SOAP URL from Postman, but I want to know what the exact function of proc attribute inside envelope is. I'm seeing on the net that other developers use it too, but I just don't see any definition anywhere about what this attribute actually does and what would be the disadvantage of its absence from the envelope.
Any help would be much appreciated.