Hi, I have to call BAM webservices from ADF. Those webservices are secured and accept username/password.
I want to call them using ADF. ADF application is secured and user needs to login. I want to pass same credentials to webservices but I don't want to store password myself. I want some way from ADF to call those secured webservices and pass username/password from login session. If I try to retrieve (or store) username/password, it will be a security threat always.
I see few example over net related to
SecurityPoliciesFeature securityFeatures = new SecurityPoliciesFeature(new String[] { "oracle/wss_username_token_client_policy" });
but all are passing hard coded username password. I want to pass username password from login session. Or something for which I need not to create a variable storing user's password.
Any suggestion?
Thanks
Sanjeev.