I've got a simple WCF service that lets clients/consumer applications log in by providing a username and password. If both the username and password are correct, the WCF service provides the client with a GUID. The GUID and the username are then stored as a key/value pair within the WCF service. From here onwards, the client sends their GUID with every request as a means of identification.

Since I'm storing the key/value pair in a Dictionary/Hashmap, this approach would only work if the WCF service is stateful. Question is, are they stateful by default or is there something I have to do to make them behave in that manner?

link|improve this question

3  
WCF services should be stateless - saves you from a lot of thorny issues and headaches. The accepted "Best Practice" is to use "per-call" methods - each call is a totally new, separate operation, fully independent of any other calls before that. – marc_s May 18 '11 at 20:24
@marc_s : The services I've got are indeed stateless, but I'm just not sure on how to store the key/value pair for identifying clients using the service. Should I be storing these temporary values in a database instead of a Dictionary/Hashmap? – rafale May 18 '11 at 20:28
1  
I would just pass the username/password into each and every call. If that's too hard to validate each time: pass back some identifier from the first call and store that identifier in a table "current valid users" or something like that. On subsequent calls, just pass in that "identifier" and check it against the "current valid users" table – marc_s May 18 '11 at 20:31
feedback

2 Answers

up vote 5 down vote accepted

Per-call services are the Windows Communication Foundation default instantiation mode. So, by default, WCF services do not maintain state. As Marc stated, there are potential problems with saving state in WCF services. I strongly suggest heeding his advice.

This article describes various ways to handle instance management in WCF, including how to maintain state like you're asking for.

Chapter 4 of Juval Lowy's excellent Programming WCF Services (link) goes into much greater detail.

link|improve this answer
I believe the default is PerSession for channels that support sessions? – Jeremy May 18 '11 at 20:46
I grabbed that information from Juval Lowy's article here: msdn.microsoft.com/en-us/magazine/cc163590.aspx#S2 – Terry Donaghe May 18 '11 at 20:48
Interesting, I looked this up again and got a different answer: msdn.microsoft.com/en-us/library/… Not sure which is right :) – Jeremy May 18 '11 at 21:16
I think the answer from Brian S. here clears up the confusion: stackoverflow.com/questions/6050929/… – Terry Donaghe May 18 '11 at 22:17
feedback

They are stateless by default and I would highly recommended keeping it that way if possible. However if for some reason you are unable to, you can enable state.

You have to use wsHttpBinding or wsDualHttpBinding and then set the SessionMode of the ServiceContract (MSDN link) to allowed or required. goes into much greater detail.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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