How can I call an asmx service which needs windows identity authorization from WCF in .NET 3.5? We are limited to .NET 3.5 framework. I have the credentials, but not sure how to implement this in C# code.
How can I call an asmx service which needs windows identity authorization from WCF
Share
There is an example of authentication at http://msdn.microsoft.com/en-us/library/ff406125 In this url this is done as follows:
There are also alternative methods with compiler attributes described in http://haacked.com/archive/2011/10/19/implementing-an-authorization-attribute-for-wcf-web-api.aspx
For later versions of .net WIF would be the way to go.
I hope this helps…