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
2009-12-10 10:48:47
I'll get it off a co-worker...
rutherford
2009-12-10 10:54:10
(but I did download the thing standalone before!)
rutherford
2009-12-10 10:59:39
+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
2009-12-10 10:49:20
+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
crowne
2009-12-10 11:17:51
+1
A:
You could download it from a Maven repository:
- for Java EE 5: http://download.java.net/maven/1/javaee/jars/
- for Java EE 6: http://repo2.maven.org/maven2/javax/javaee-api/6.0/
Pascal Thivent
2010-04-07 17:46:29