.Net Web Service Outside of IIS

I'm still relatively new to developing web services, and I need to make a web service in C # .Net. I created web services earlier in Java and run them using Tomcat. Should I use IIS to run the .NET web service. Or can I use a third-party web server (Tomcat or something else)?

thanks

+3
source share
5 answers

You do not need to run IIS to host the service.

.net (via WCF) provides all the functions needed to turn any application into a webservice host using the ServiceHost class .

0
source

WCF is the successor to web services.

WCF, Windows IIS.

WCF

+6

IIS ISAPI, .NET. , - .

. :

Apache hosting: mod_mono, , Apache ASP.NET. FastCGI: FastCGI , -, FastCGI . -, CGI cgi-fcgi. XSP: , -, #.

+1

- ASP.NET - ASP.NET. , Cassini, Mono Tomcat , Http Pipeline http.sys.

0

WCF IIS, ( IIS). WCF , .

IIS is becoming the "application server" in the Windows world and is a very attractive host for WCF, depending on your needs. Hosting in IIS is most likely very similar to hosting in Tomcat or another J2EE server in the Java world - this analogy becomes more true after Dublin ’s trial.

See Hosting in Internet Information Services for additional benefits and possible limitations for hosting in IIS.

0
source

Source: https://habr.com/ru/post/1718366/


All Articles