vote up 3 vote down star
3

I'm looking to write a config file that allows for RESTful services in WCF, but I still want the ability to 'tap into' the membership provider for username/password authentication.

The below is part of my current config using basicHttp binding or wsHttp w/out WS Security, how will this change w/ REST based services?

	<bindings>
		<wsHttpBinding>
			<binding name="wsHttp">
				<security mode="TransportWithMessageCredential">
					<transport/>
					<message clientCredentialType="UserName" negotiateServiceCredential="false" establishSecurityContext="false"/>
				</security>
			</binding>
		</wsHttpBinding>
		<basicHttpBinding>
			<binding name="basicHttp">
				<security mode="TransportWithMessageCredential">
					<transport/>
					<message clientCredentialType="UserName"/>
				</security>
			</binding>
		</basicHttpBinding>
	</bindings>
	<behaviors>
		<serviceBehaviors>
			<behavior name="NorthwindBehavior">
				<serviceMetadata httpGetEnabled="true"/>
				<serviceAuthorization principalPermissionMode="UseAspNetRoles"/>
				<serviceCredentials>
					<userNameAuthentication userNamePasswordValidationMode="MembershipProvider"/>
				</serviceCredentials>
			</behavior>
		</serviceBehaviors>
	</behaviors>
flag

77% accept rate
I think this is a relevant question, and I would love to see more answers to you on this topic, as I am currently looking for the same thing. REST is a style and design choice, and should not be unable to cope with authentication. – GONeale Jan 5 '09 at 1:19

6 Answers

vote up 0 vote down

Try custombasicauth @ codeplex

link|flag
vote up 1 vote down

Yes agreed with Moto, a link off the WCF Starter Kit is the closest thing I saw to authentication of credentials using a custom HTTP header (http://msdn.microsoft.com/en-us/library/dd203052.aspx).

However I could not get the example going.

link|flag
Is the video broken? – pc1oad1etter Nov 20 at 21:33
vote up 1 vote down

Regardless if the community has opinions against REST on WCF (I'm personally on the fence) Microsoft has taken a swipe at it, http://msdn.microsoft.com/en-us/netframework/cc950529.aspx

link|flag
vote up 2 vote down

Here's a podcast on securing WCF REST services with the ASP.net membership provider:

http://channel9.msdn.com/posts/rojacobs/endpointtv-Securing-RESTful-services-with-ASPNET-Membership/

link|flag
vote up 2 vote down

I agree with Darrel that complex REST scenarios over WCF are a bad idea. It just isn't pretty.

However, Dominick Baier has some good posts about this on his least privilege blog.

If you'd like to see WSSE authentication support with fallback to FormsAuthenticationTicket support on WCF, check out the source code of BlogService.

link|flag
vote up 2 vote down

Before you continue down this path of fighting to implement REST over WCF, I suggest you read this post by Tim Ewald. I was especially impacted by the following statement:

I'm not sure I want to build on a layer designed to factor HTTP in on top of a layer that was designed to factor it out.

I've spent the last 12 months developing REST based stuff with WCF and that statement has proven itself to be so true over and over again. IMHO what WCF brings to the table is outweighed by the complexity it introduces for doing REST work.

link|flag
I'm very glad to know I'm not the only one to notice this! There are many good things about WCF, but the REST support has given me quite a bit of trouble. – tomasr Sep 28 '08 at 13:46
Was WCF designed to factor HTTP out? HTTP is just one of the transport options. – pc1oad1etter Nov 20 at 20:56
Exactly. HTTP is a protocol for distributed applications. WCF is designed to allow you to build distribution applications in a way that is agnostic of the protocol. – Darrel Miller Nov 21 at 23:27
@pc1oad1etter HTTP is not a Transport protocol. HTTP stands for HyperText Transfer protocol. – Darrel Miller Nov 21 at 23:28

Your Answer

Get an OpenID
or

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