vote up 0 vote down star

Basically my requirement is:

  • WCF Service Application Hosted on IIS 7.0 with Partial Trust
  • Endpoint exposed with BasicHttpBinding
  • Would like to enable basic Authentication (UserName / Password)
  • Would like to use ASP.NET membership for User Authentication
  • I don't want to setup SSL

I have seen some tutorials but they are talking about first enabling the SSL. I am able to create my sample WCF Service and Host is on IIS 7.0 with Partial Trust without any problem. Its just the Authentication part that I am struggling with.

Can anyone provide any assistance or point me to the place where relevant information can be found?

Thanks in advance.

flag

75% accept rate
I also came across 'code.google.com/p/wcf-clear-username-binding/…' which is an extension to WCF binding that allowes to send cleartext username/password over HTTP. However it doesn't look like it supports authentication using ASP.NET Membership Provider. – Ajay Singh Oct 30 at 12:35

1 Answer

vote up 0 vote down check

If you are using username / password over basichttpbinding without ssl, then the password is going over the network unencrypted.

I would recomend that you use SSL in this situation.

Yes you can use basic authenication with an asp.net membership provider, see:

http://custombasicauth.codeplex.com/

link|flag
I understand that, but I would like to know whether it is possible. – Ajay Singh Oct 31 at 9:42
@Ajay, I edited the answer – Shiraz Bhaiji Oct 31 at 10:44
Thanks for the link Shiraz. – Ajay Singh Nov 12 at 5:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.