we are currently on windows server 2008 R2, IIS 7.5 and we are going to open some of our data via WCF services.

To do that, we are planing to host our services on IIS but I heard that it is not a good idea for WCF services.

The problem with the WAS is that it is general purpose hosting engine. it's actually unaware that it's actually hosting a WCF service or a website (as far as I know)

I heard that we can install an extension to the WAS called the Windows Server AppFabric.

  1. does anybody have any experience on AppFabric?
  2. should my app have to use so called 'Service Bus' to use AppFabric?
  3. should I go ahead and definitely install it?
  4. at most basic level, how and where can I install it? does it require any licence?

Thanks in advance.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

I don't think IIS us a bad idea - many developers use IIS to host their WCF services. IMHO you'd only use what you need, so if all you need is a hosting framework, then IIS is a very good option for WCF services. It is (almost) unaware that it's hosting a WCF service, but that in the majority of the cases isn't an issue.

Windows Server AppFabric as it's currently released provides three capabilities: a distributed caching system (so if you need to scale out your service you can use this cache to share state among the nodes); a packaging / deployment interface (in which you can package a project and deploy it a little easier in IIS); and a management / monitoring interface (where you can monitor the instances of WCF and Workflow services which are running in your machine).

Answers to your questions:

  1. Yes, some people have experience with it :)
  2. No, the application doesn't have to use it. You'd only use the ServiceBus if you need its functionality (relay)
  3. Only if you need it. If you don't need caching or the monitoring capabilities, for example, then I'd say you don't need it. I've found in the past that the least number of components I have in my system, the less likely it is to break.
  4. Go to http://msdn.microsoft.com/en-us/windowsserver/ee695849.aspx. And AFAIK you don't need any license, but you can check on the download page to see if it has more information.
link|improve this answer
thanks! while I am waiting for the answers I checked out some of the videos that Ron Jacobs did. msdn.microsoft.com/en-us/windowsserver/gg675185 he suggested that if you are going to use cashing, you need to at least have two servers for a better performance. he explained that AppFabric designed to use all the memory for caching if it is available. So WAS (windows activation service) will be enough for me. – tugberk May 13 '11 at 16:46
let's also assume that my app will scale and I wanna use the AppFabric, do I need to change anything on my code? do u know that? – tugberk May 13 '11 at 16:46
There are a few ways to use the distributed caching; you can use it explicitly (in which case you'll need to change the code), or if you're using the ASP.NET cache there is some config setting which you can set to tell it to use the distributed cache (I haven't used this scenario, but I've seen some demo somewhere, probably in one of Ron Jacobs' videos) – carlosfigueira May 13 '11 at 16:58
I am thinking to asp.net caching with profiles. Also thinking to use new Web API thing. do u have any experience on that? – tugberk May 13 '11 at 17:56
feedback

Your Answer

 
or
required, but never shown

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