Parth Doshi
Parth Doshi

Reputation: 4208

Host a SOAP web service on a server

I have a SOAP web service code (.asmx) created using VS.NET 2008 which I plan to host on a web server. I am unaware and completely new to the term 'hosting' . My question is whether there are any free and limited period web hosting services that offer me to host a .asmx web service having Microsoft SQL Server 2008 as backend. If yes, what should the approach be from my side ? Should I the upload the .asmx code or the entire VS.NET project ? I am working on localhost at present.

Thanks

Upvotes: 0

Views: 3499

Answers (1)

Calvin Grunewald
Calvin Grunewald

Reputation: 118

This describes how to deploy ASMX web services:

http://msdn.microsoft.com/en-us/library/6x71sze4(v=VS.90).aspx

You'll need to find a web host that supports IIS and ASP.NET. I'm not aware of any free hosts that support server side scripts and SQL databases. One of the cheapest options that I've used in the past is GoDaddy, which should satisfy all your needs.

You can test locally if you install IIS 7, available through the web platform installer:

http://www.microsoft.com/web/downloads/platform.aspx

Upvotes: 1

Related Questions