WCF Services hosted in IIS

Lately, I had some trouble hosting WCF Services on IIS on a remote VM running Windows Server 2003. Nothing really serious, but I figured out that it wouldn’t be bad to write down these errors for future reference.

Enabling hosting of WCF Services on IIS

This is probably trivial, but I’m still writing it here so I can refer to it later.

First, if the .NET 2.0 Framework was installed prior to IIS, IIS is not registered with ASP.NET. It can be done manually running the following command:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727>aspnet_regiis -i

Then, you have to register .svc files in IIS, which is done by running the following command:

C:\WINDOWS\Microsoft.NET\Framework\v3.0\Windows Communication Foundation>ServiceModelReg.exe -i

Once this is done, simply run iisreset in any command line window to restart IIS.

That’s it, IIS can now host WCF services.

Please note that if you deploy your website directly from Visual Studio, you’ll have to make sure that Frontpage Server Extensions are installed on the server.

Hosting a WCF Service in IIS

Anyway, hosting the service is very easy. The service endpoint will be a .svc file in which you’ll have to write only one line, referencing the service that is to be hosted.

<%@ ServiceHost Service="MyService" %>

On top of that, the Web.config file has to be modified in order to contain the service’s information like you would do in any WCF host application (ABC, except that you leave the address empty as the endpoint is the uri of the .svc file).

Permission Issues

If the service you are hosting interacts in some way with the file system or any other operation that might require permissions, don’t forget that once they are in IIS, they will have the limited rights of ASPNET (XP) or NETWORK SERVICE (WS2003) account, depending on the operating system.

I’m highlighting this because prior to host my services in IIS, I hosted them in a command line window. This is handy for debugging, and very simple to set up. However, this means that the WCF services are running with lots of privileges (power user or administrator, as you are developing). Once in IIS, you can still debug easily by attaching to the IIS process (Ctrl + Alt + P in Visual Studio).

Debugging a WCF Service running in IIS, process not showing in process list

Few days ago, I wanted to debug a WCF service hosted in IIS (on localhost). Sounds simple, just use Visual Studio "Debug > Attach to Process…" command (Ctrl + Alt + P).

However, aspnet_wp.exe (running Windows XP) was not displayed in the list of running processes (while the "Show processes from all users" was checked).

So I started crawling the web to find why this process didn’t show up in the list. And the answer was very simple: this process is not started if no request has been made yet. Simply heading to the .svc URI of the service started the process, which was then available in the list of processes.