Call BSSV deployed to WebLogic

gigi

gigi

VIP Member
I installed and configured WebLogic with a BSSV server instance.
I followed the attacched document to test a BSSV call from SOAPUITest software. So now I have a problem.
Following document, I download wsdl file in SOAPUITest, I added the soapenv header to specify user and passowrd (for example user LSALA), previously defined on Weblogic console. User and password are also EnterpriseOne userid/pwd. This EnterpriseOne user can submitt BSSV (grant to with P00950). So I expected BSSV called by this EnterpriseOne user, instead BSSV is always submitted with EnterpriseOne user "JDE".
So when I invoke BSSV from SOAPUITest use LSALA to connect to WebLogic instance and use user "JDE" to execute BSSV.
Is it correct or did I make something wrong? repeat, I expected thatt bssv was executed with LSALA user defined on Weblogic console and in EnterpriseOne.
This is XML used to invoke BSSV from SOAPUITest

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:eek:rac="http://oracle.e1.bssv.JPR01000/" xmlns:java="java:eek:racle.e1.bssv.JPR01000.valueobject" xmlns:java1="java:eek:racle.e1.bssv.JR010020.valueobject">
<soapenv:Header>
<wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
soapenv:mustUnderstand="1">
<wsse:UsernameToken xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<wsse:Username>LSALA</wsse:Username>
<wsse:password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">XXXXX</wsse:password>
</wsse:UsernameToken>
</wsse:Security>
</soapenv:Header>
<soapenv:Body>
<orac:getAddressBookElement>
<java:Entity>
<java1:EntityId>1012</java1:EntityId>
</java:Entity>
</orac:getAddressBookElement>
</soapenv:Body>
</soapenv:Envelope>


thanks
gg
 

Attachments

  • 160989-webservice_request_via_soapUI.zip
    578.6 KB · Views: 181
Did you build and deploy a package with BSSV to weblogic? I have it setup in PY enviroment and it is working as expected.
 
Back
Top