asp.net application which is consuming a third party java web service

  • Thread starter Thread starter Ezhil
  • Start date Start date
E

Ezhil

Hi All,

we have an asp.net application which is consuming a third party java
web service.In order to access the web service a login and password are
required and they're passed as SOAP headers.

We need to include this header in the soap message request. There is no
separate method available for authentication in the web service. We
have no control over the web service methods. We are just generating
the proxy class and using it.

regards,
Prabhu.A
 
if you look closely, you will find the source code for the web proxy (VS
geberated it when you added the web reference). you can edit (or inherit)
the code to add the properties (UserName,Password) and code to the the
headers.

-- bruce (sqlwork.com)
 
Back
Top