I have developed a sample WCF service. I would like to know the steps to host this in IIS 5.1(XP)
|
Have a look at this article on MSDN. It has information about hosting WCF services in all versions of IIS. |
|||
|
|
|
1) You need a IIS virtual directory --> create it using IIS Manager 2) You need a *.svc file which references your service - it's a text file which must reside inside your virtual directory just created, and it would be something like:
That works if your WCF service class is in an assembly deployed to the "bin" directory below your virtual directory. If you happen to have your actual service code in a "code-behind" file inside your "App_Code" directory (which I would not recommend), then you'd need this contents in your *.svc file:
3) You need your config in web.config - you need at least the
Here, you need to decide what binding (protocol) to use. If you do all this, and everything was successful, you should be able to browse to your virtual directory URL with IE ( Marc |
|||
|
|