views:

244

answers:

2

I have a website, unpublished, it contains a web service that is written in .net. The rest of the website uses asp.net. I want to host the website in IIS. Anyone knows a good web hosting company that supports the above techniques? Most of them don't say clearly whether they support SOAP, WSDL, & Web Services or not. Thanks for any recommendation.

+1  A: 

DiscountASP.Net allows the use of web services and IIS

Rohan West
+1  A: 

Pretty much all ASP.NET web hosters will support ASP.NET SOAP web services. Unless you're trying to listen on a non-standard port (i.e. a port other than 80 or 443) you won't have any problems.

Without trying to oversimplify, but at the end of the day ASP.NET SOAP Web Services (ASMX) are just another type of ASP.NET page that do HTTP request/responses. Instead of HTML being returned it's XML.

Kev