You are on page 1of 2

IIS vs ASP.

NET Development Server


Difference between IIS and ASP.NET Development Server S.No 1 IIS Security Context : In Internet Information Server(IIS), it is typically IUSR_MachineName. ASP.NET Development Server Security Context : In ASPNET Development Server, it is determined by who has logged into our computer.

i.e., IIS by default runs under i.e., Development server only ASP.NET account. accepts authenticated requests on the local computer as it runs under the security context of currently authenticated user account. It means it doesnt run under less privileged ASPNET account. 2 Accessing Static Pages : In IIS, we can access static pages in a secure folder if we are not logged in. Accessing Static Pages : In ASP.NET Development Server, we can not access static pages in a secure folder if we are not logged in.

Serving Requests: Serving Requests: It will serve pages to another ASP.NET Development server can computer besides local only serve local requests. requests. Support for e-mail sending functionality or file download functionality: IIS provides support for e-mail sending functionality or file download functionality by using protocols SMTP and FTP. Support for e-mail sending functionality or file download functionality: ASP.NET Development Server does not have protocols like SMTP or FTP and hence it does not support e-mail sending functionality or file download functionality.

Reference: http://onlydifferencefaqs.blogspot.in/2012/09/difference-between-iis-and-aspnet.html

IIS 5.0 vs IIS 6.0


Difference between IIS 5.0 and IIS 6.0 S.No 1 IIS 5.0 IIS 6.0

IIS 5.0 uses operating system IIS 6.0 uses both 32bit and 64 bit with 32 bit architecture. architecture.

2 3 4

IIS 5.0 has binary metebase configuration. IIS clustering provides cluster support in IIS 5.0. The platform used by IIS 5.0 is windows 2000.

IIS 6.0 has XML configuration. IIS 0.6 windows support the clusters. IIS 6.0 uses Windows Server 2003 family.

IIS vs Apache
Difference between IIS Web Server and Apache Tomcat Server

S.No 1

IIS Web Server

Apache Tomcat Server

IIS webserver is operating Apache webserver is operating system dependent. It runs in system independent. only windows environment. i.e., Apache can run on almost any OS including UNIX, Apples OS X, and on most Linux Distributions. IIS is developed by Microsoft. IIS server runs in user space and Kernal space. IIS is not Open Source. Apache is developed by Apache Foundation . Apache server runs in user space only. Apache webserver is open source. i.e., Apache is known to be open source because the source code is available for configuration as per our requirements, its a linux based product.

2 3 4

5 6

IIS is both webserver and application server. IIS has a dedicated staff to answer most problems.

Apache tomcat server is only webserver. Support for Apache comes from the community itself.

Reference: http://onlydifferencefaqs.blogspot.in/2012/09/iis-web-server-vs-apache-tomcatserver.html

You might also like