Hi,
how can i decrypt user`s password in the SOA? Now i am mapping the password field from CreateOp_InputVariable WS (/ns2:create/userAccount/__PASSWORD__) to the password field from the my application WS in the Assign component and this password is encrypted in the application WS too. But i need it clear form of password here. How can i do that?
Is it possible to do any transformation/decryption of the password in the SOA (in the WSConnector.bpel)?
here is the payload of the WSConnector:
<input>
<InvokeCreate_vytvorPouzivatela_InputVariable>
<part name="parameters">
<vytvorPouzivatela>
<idVolajuceho>XYZ11111</idVolajuceho>
<user>
<aktivny>true</aktivny>
<heslo>zRUIc60NAqg/Gh5D4QerihmAZHu7XspxVkj3KPvwlJY=</heslo>
<idmKod>TE510001</idmKod>
<idmKodOrganizacie>11010084000</idmKodOrganizacie>
<login>TE510001</login>
<meno>Test</meno>
<priezvisko>User</priezvisko>
<pristupy>
<rolePriznak>RIS</rolePriznak>
</pristupy>
</user>
</vytvorPouzivatela>
</part>
</InvokeCreate_vytvorPouzivatela_InputVariable>
</input>
As you can see, the password is encrypted and i need a clear form of the password here (password is between the tags <heslo> </heslo>). btw, I`m not able to modify application Web Services so i need to solve it on my site.
Thank you.
Milan