I am still relatively new to web service development and I need to make a web service in C# .Net. I have created web services before in Java and run them using Tomcat. Do I have to use IIS to run a .Net webservice or can I use a third party web server (Tomcat or something else)?
Thanks
You don’t need to run IIS to host a service.
.net (via WCF) provides all functionality required to turn any application into webservice host via the ServiceHost class.