Laguna
Laguna

Reputation: 3876

Asp.Net Web Form calling same domain WCF service without need for authentication

I have a aspnetcompatibility=true WCF service (http binding) in the same domain of my Asp.Net website.

I want to make a call from my Asp.Net server side code to the WCF service.

I have tried to make a web request to http://testDomain/mySite/services/mySvc.svc but got the login page instead.

Is there a way to call the wcf service from the same domain asp.net site so that the service knows to not authenticate again?

Note: I use IIS7, and I'm open to change by binding as long as I can make a call to it w/o authentication. I'm hoping to host the svc in IIS.

Upvotes: 0

Views: 285

Answers (1)

vibhu
vibhu

Reputation: 1705

Try to enable windows authentication in IIS for your hosted service and disable anonymous authentication (if it is enabled). Besides, pass security credentials (domain credentials perhaps in your case) from the client to the service.

Upvotes: 1

Related Questions