Configuring Secure inbound Web service in Siebel
Hi All,
I have implemented a Secure inbound Web service in Siebel, which works fine.
But the created wsdl does not have section for user id and password, and I have to manually add the below section in soap message when I invoke it f.
<soapenv:Header>
<wsse:Security xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/04/secext">
<wsse:UsernameToken>
<wsse:Username>sadmin</wsse:Username>
<wsse:Password Type="wsse:PasswordText">sadmin</wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
</soapenv:Header>
I was wondering if there is any way to include that in wsdl generated from siebel. Or adding this above part manually is the only option?