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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.