tags:

views:

219

answers:

4

Looked everywhere on sun.com but can't locate the jar file without installing the app server, etc, etc...

A: 

I looked too and didn't find one. Possibly there simply ain't.

Go on, bite the bullet, download the app server. You're going to need one sooner or later anyway, right?

Otherwise, if you already have an app server... then you should already have the jar too.

Carl Smotricz
I'll get it off a co-worker...
rutherford
(but I did download the thing standalone before!)
rutherford
+1  A: 

What exactly are you looking for? You do need an app server that implements the Java EE 6 API, such as Glassfish v3. Just having a JAR file with the Java EE API without any implementation isn't useful.

Jesper
+2  A: 

JEE is a collection of specifications:

  • Servlet
  • JMS
  • EJB
  • etc.

You can get the individual implementation jars for the apache geronimo server from the central maven repository under

http://repo1.maven.org/maven2/org/apache/geronimo/specs/

crowne
+1  A: 

You could download it from a Maven repository:

Pascal Thivent