I have a wcf service which having a method to GetUserDetails from data base and i have uploaded it on server. Now i want to accessing it on my local or remote server then i m getting a error
The request for security token could not be satisfied because authentication failed.
can anybody help me how to rectify this error.And my web.config file settings are ...
realm="" />
algorithmSuite="Default" establishSecurityContext="false" />

Khan Abrar AhmedPosted Jun 4, 2014, 2:14 AM
1. you have to set Service principle name for the machine and domain account.
2. If you are deploying the service on IIS then you to select the windows authentication provider.
please refer this links also
http://msdn.microsoft.com/en-us/library/ff650619.aspx
http://msdn.microsoft.com/en-us/library/ff648431.aspx
RobbinsonPosted Jun 4, 2014, 1:15 AM
You need to turn off security for the binding otherwise it will try to negotiate security context token.
Just try with
Hope, this will help you out.
Please don't forget to mark as answer if this post helps.