vote up 4 vote down star
5

When working with WCF services, is it better to create a new instance of the service every time you use it? Or is it better to create one and re-use it? Why is either approach better? Is it the same for asynchronous proxies?

flag

76% accept rate

3 Answers

vote up 1 vote down check

in addition to the things Guy Starbuck mentioned a key factor would be the security model you're using (in conjunction with the session requirements) - if you don't re-use your proxy, you can't re-use a security sessions.

This means that the client would have to authenticate itself with each call which is wasteful.

If, however, you decide this is what you wish to do, make sure to configure the client to not establish a security context (as you will never use it), this will save you a couple of roundtrips to the server :-)

link|flag
vote up 1 vote down

There is a corollary here to Server Activated Objects in .NET Remoting (one of the technologies that is replaced by WCF), which have two modes, "Single Call" (stateless) and "Singleton" (stateful).

The approach you take in WCF should be based on your performance and scaling requirements in conjunction with the needs of your consumers, as well as server-side design constraints.

If you have to maintain state between calls to the service, then you will obviously want to have a stateful instance, but if you don't you should probably implement it so that it is static, which should scale better (you can more easily load balance, etc).

link|flag
vote up 0 vote down

It also depends on how you will be hosting your WCF service(s) (i.e. IIS, WAS, self-hosting).

link|flag
Really? Why does it depend how it is being hosted? Why does the client care? Ideally, the client doesn't even know. – Brian Genisio Dec 1 '08 at 20:06
My apologies...I misread the question. That being said, here is a link that should hopefully help: blogs.msdn.com/wenlong/archive/… – MattK Dec 3 '08 at 4:17

Your Answer

Get an OpenID
or

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