Hope somebody can help me out.
I am trying to call this Web Service
https://link.hertz.com/AuthenticationWebservice/authenticateAdmin?wsdl
I have been said that I need to pass the following info for authentication with the web service:
username => "webServiceUserName" password => "webServicePassword" WSS-Password Type => "PasswordDigest" I am using an asp.net 4.0 application and unable to figure out how to pass WSS-Password type to my web service call.
I have added this service url as a Service reference in my asp.net application and I am using the following code in my asp.net page:
service1.AuthenticateAdminClient myClient = new service1.AuthenticateAdminClient(); myClient.ClientCredentials.UserName.UserName = "webServiceUserName"; wsClient.ClientCredentials.UserName.Password = "webServicePassword"; myClient.authenticateAdminCredentials(myUserName, myPassword, myDomain); thanks in advance,
Hari