In this Document
Oracle E-Business Suite Integrated SOA Gateway - Version 12.1.3 to 12.1.3 [Release 12.1] Information in this document applies to any platform. Checked for relevance on 08-JUN-2013
On: 12.1.3 version, Installation Issues
When attempting to test the FND_PROFILE web service from SOAP UI, the following error occurs in SOAP UI:
<faultcode>wsse:InvalidSecurity</faultcode> <faultstring>Missing <wsse:Security> in SOAP Header</faultstring>
The issue can be reproduced at will with the following steps: 1. Generate the WDSL (successful) in Integrated SOA Gateway 2. Deploy the web service in ISG 3. Create grant to user sysadmin and adadmin in ISG 4. In SOAP UP, copy the WSDL link in and it recognizes the functions that are exposed. 5. Run the project after putting in some parameters for the FND_PROFILE, i.e application language etc.
Missing wsse security tokens.
The SOAP header didn't have the user name and password to do the authentication so that the web service cannot be called.
To implement the solution, please execute the following steps:
1. Open project in SOAP UI.
2. Add the following wsse:security section in the SOAP header:
<soapenv:Header> <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" mustUnderstand="1"> <wsse:UsernameToken> <wsse:Username>asadmin</wsse:Username> <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">asadmin</wsse:Password> </wsse:UsernameToken> </wsse:Security>
3. Save the file and retest the issue.
4. Migrate the solution as appropriate to other environments.
NOTE:764149.1 - Missing in SOAP Header when Calling Secured WebService from BPEL Leading to SOAPException NOTE:954125.1 - AIA 2.4: Product MDM BPEL process QueryItemListPIMProvABCSImpl fails during the call to ItemService
|