views:

14

answers:

1

Dear Balaji,

I have almost the same problem as you have described in http://stackoverflow.com/questions/1503242/calling-webservice-from-wcf-service.

I have a asp.net webservice that calls a WCF service. On my development machine this is working fine. But if i deploy my ASP.net Webservice it is not working. Both the ASP Webservice en WCF service needs my cridentials.

How did you solved your problem. In the logging of the WCF service I see that my credentials is not passing to WCF.

Please help. Regards, Ozkan [email protected]

A: 

Solved.

The problem was the application pool worker precess identity of service 1 that is calling service 2.

steps I used: 1 on server 1 add a new application pool 2 change the identity to a service account that can access service 2 3 add this account to IIS_WPG 4 Restart IIS on server 1

and it is working.

Ozkan