views:

157

answers:

2

What WCF configuration settings makes WCF service, so that I can access as old ASMX web services? How can I authenticate using Authentication header what I used in Old ASMX web services?

+2  A: 

Just use basicHttpBinding

Here is an example of the configuration:

http://msdn.microsoft.com/en-us/library/ms731347.aspx

Shiraz Bhaiji
but how can I use authentication in basicHttpBinding? Any sample configuration and code?
nRk
Check out the WCF Developer Center on MSDN - tons of samples and stuff! http://msdn.microsoft.com/wcf
marc_s
Thanks, I will check it.
nRk
+2  A: 

Check this out : ASMX to WCF migration

axel_c