soapenv Prefix At Body: Changes Between 11g And 12c
(Doc ID 2593428.1)
Last updated on MARCH 27, 2020
Applies to:
Oracle Service Bus - Version 12.2.1.3.0 and laterInformation in this document applies to any platform.
Symptoms
On : 12.2.1.3.0 version, OSB Core Functionality
ACTUAL BEHAVIOR
---------------
soapenv prefix at body: changes between 11g and 12c
-11g always includes "soapenv" prefix to internal $body
-12c only include "soapenv" prefix if request has it
By this reason, a non soapenv prefix request generates a different $body variable between 11g and 12c
Request:
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Header>
</Header>
<Body>
</Body>
</Envelope>
Response 11g:
$testBody
<soapenv:Body xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
</soapenv:Body>
Response 12c:
$testBody
<Body xmlns="http://schemas.xmlsoap.org/soap/envelope/">
</Body>
Cause
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Symptoms |
Cause |
Solution |
References |