Publishing WCF applications
I'm a little new to WCF. I've created a WCF service on my local machine, it's published to the inetpub directory on my C:\ drive.
I'm supposed to have it running on another machine for Q/A. It's running Win Server 2003, but I don't see an inetpub directory. Can I publish my WCF to this machine, or do I need to install some sort of web services?
There is a 'wmpub' directory, should I just publish my WCF there?
Thanks for any/all开发者_如何学Python help!
-Jason
Your windows seems to be missing IIS.
Have a look here.
You can choose where you put it, it's a matter of configuration.
Your best bet would be to package the WCF service with WebDeploy, then run that package on the target server.
It's very easy and you can build your deployment package straight from within Visual Studio 2010. Check out http://www.iis.net/download/WebDeploy for more.
You can either create a self hosted service or host it in IIS
精彩评论