vote up 3 vote down star
1

Hi, I'm sure there's an elegant solution to the problem but I just can't get my head around it. I am trying to call a web service from within a Windows service. The web service is secured (using Windows authentication). The account that the windows service runs under does have the rights to call the web service but I can't figure out how to get those credentials and send them off to the web service. The web service is WCF and is hosted on the same machine (in IIS) as the windows service.

flag

50% accept rate

2 Answers

vote up 0 vote down

Have you tried enabling integrated authentication (NTLM) for IIS? In my view that should allow you to call web service if the windows service user account has rights to invoke the service. you need not explicitly extract credentials.

link|flag
vote up 5 vote down

You should be able to use something like this:

var myService = new myThing.Service();
myService.Credentials = System.Net.CredentialCache.DefaultCredentials;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.