1

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?

John Saunders
  • 160,644
  • 26
  • 247
  • 397
nRk
  • 1,251
  • 7
  • 24
  • 50

2 Answers2

2

Just use basicHttpBinding

Here is an example of the configuration:

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

Shiraz Bhaiji
  • 64,065
  • 34
  • 143
  • 252
  • but how can I use authentication in basicHttpBinding? Any sample configuration and code? – nRk Nov 02 '09 at 13:53
  • Check out the WCF Developer Center on MSDN - tons of samples and stuff! http://msdn.microsoft.com/wcf – marc_s Nov 02 '09 at 14:03
2

Check this out : ASMX to WCF migration

axel_c
  • 6,557
  • 2
  • 28
  • 41