So we are running IBM ACE 11.0.0.9 on CP4I on OpenShift, and we are having a challenge with one of our integrations.
Here's the scenario:
We're using a SOAPRequest node which requires two levels of authorization. So the first level is the Authorization header which I can set with the SOAPRequest node's securityProfileName property combined with the mqsisetdbparms command.The second level of authorization is also in the SOAP header, but is in a different format, with another username and password, each in separate elements.So the complete SOAP header element will look something like this:
<soapenv:Header>
<Authorization>Basic dXNlcmFiYzpwYXNzMTIz</Authorization>
<ServiceUsername>user123</ServiceUsername>
<ServicePassword>pass123</ServicePassword>
</soapenv:Header>
Both of the authorization levels must be secret (stored so that only authorized personell may see it). The first level is handled by securityProfileName and mqsisetdbparms, but I don't know how to handle the second level.
Does anyone here know how I can handle this?------------------------------
Andreas Bradahl
------------------------------