Reputation: 849
I want to deploy my Webservice(*.asmx) on client server. I need to develop deployment package which will install the virtual folders and deploy the service just like clickonce. Could someone give me Visual Studio step by step guide to do it.
Thanks, Kanaya
Upvotes: 3
Views: 5207
Reputation: 12530
Most people use Web Setup Projects if the Web Service is simple - any dependencies (e.g. .NET Framework Installation, IIS, SQL Server, a Database, etc) will need to be installed separately by someone in advance of that Setup being run.
For more sophisticated deployments where you want to ensure certain components are on the target machine (e.g. IIS) and if not there get them installed as part of the setup process, then you can use Web Deploy.
Here are some different ways you can do it.
Web Setup Project
Web Deploy
MSDeploy
Here are some guides on the above tools:
How to use Web Setup Project:
Upvotes: 4