How to deploy RESTful Web Service onto IIS

Posted by Chris Lee on Stack Overflow See other posts from Stack Overflow or by Chris Lee
Published on 2010-06-08T13:18:33Z Indexed on 2010/06/08 13:22 UTC
Read the original article Hit count: 289

Filed under:
|
|

Hi all, I'm new to .Net and IIS. I've created a simple RESTful Web Service in VS2008 and .net 3.5 framework using WCF. I've tested it well with F5 debugging in VS(seems it is auto deployed on Windows Service). Now I want to deploy it on my IIS server so that I can use it remotely. But I cannot find any guide for this. I manually deployed my service folder just as an ASP.net site. But seems it does not work(keep showing 401 error). Can anyone tell me how to deploy it to IIS? It contains a simple GET method and I hope it can be accessed by anomynous clients (because the host IP is 192.168..). I have a web.config file, a .dll and .pdb under /bin folder, a Global.asax and .svc file for my service. The IIS server is on the same machine.

Thanks a million.

© Stack Overflow or respective owner

Related posts about .NET

Related posts about iis