views:

44

answers:

1

What is Glassfish and Tomcat for? I have sourced it and it says GlassFish is an open source application server project led by Sun Microsystems for the Java EE platform but I don't really understand. help anyone?

+2  A: 

Both are server environments for running J2EE (Java Enterprise) applications. Glassfish is a full blown server implementation while Tomcat is a container implementation:

http://en.wikipedia.org/wiki/Java_Platform,_Enterprise_Edition

http://wiki.glassfish.java.net/Wiki.jsp?page=FaqGlassFishTomcat

REW