is there a .NET equivalent to Java Servlet and Apache Tomcat server?
A similar platform that will provide a means of deploying .NET "Servlets"-like?
开发者_如何学运维Cheers.
IIS IS the equivelent to Apache Tomcat, and ASP.NET WebServices or WCF are the equivelent of Servlets. IIS is both a web server and an application server.
Technically, Servlets are more low level than web services, but that's because Servlets are a spcific API, and Web Services are typically implemented on top of Servlets. .net doesn't support the Servlet API, but you can use third party products if you need to use that API specifically.
well, .NET has ASP.NET which runs server side and allows you to do a lot of things. Normally ASP.NET runs on IIS on a Windows Server and you have plenty of tools to create your architecture (WCF, WF, MSMQ, Windows Services, Scheduled Tasks...).
Is there anything special like a certain feature of the Java servlet(s) you are thinking about right now? You should ask more specific questions because being so general, answers are general too :)
精彩评论