“SOAP-ENV” is not a tag or element name, it is a prefix name. You can’t change this default for the built-in services.
XML dictates that any prefix can be used so long as it is associated with the correct namespace.
For example:
<Foo:Envelope xmlns:Foo="http://schemas.xmlsoap.org/soap/envelope/">
is equivalent to
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
Although you can’t change the envelope created by the built-in services, you can create a soap envelope using different prefixes by starting with the one created by the pub.soap.utils:createSoapData built-in service, changing its prefixes to suit your taste and then feeding that XML string into the pub.soap.utils:stringToSoapData service.
HTH,
Mark
#webMethods#API-Management#soa