Topic by Trilok Sharma
We are trying to hit the QueryCSV operation, We are able to get the response with SOAP UI and DOT NET only after incorporating below security header :
<wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<wsse:UsernameToken wsu:Id="UsernameToken-3902281" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<wsse:Username>XXXXXXX</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>
But the same thing we are not able to do with TIBCO. As we are not getting any option to add the above security header because above don't come as part of WSDL. We used the identity with username/password passed in security header but getting below error:
Error : Failed to establish the secured connection.
We are assuming it because of missing certificates in SSL setting or do we have do anything else.
After getting certificate, Are we able to establish connection or do we have modify WSDL to add security header
Please suggest any possible solution to above problem.