Hi,
We are invoking a web service via SOAP directly from RUI (client).
The service is working fine. However, we have an issue with configuring security.
The security information needs to be in the header and be configurable.
Where would I look for an example to be able to do this? The below snippet is from SoapUI. user id and password are fake!!!
<soapenv:Header>
<wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext1.0.xsd">
<wsse:UsernameToken>
<wsse:Username>SERVICEID</wsse:Username>
<wsse:Password>WHATEVER</wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
</soapenv:Header>
Cool_Anand