Can anybody suggest a tool to create .ear and .war files (Other than Ant).
Thanks
Abeers
-
Ear and War files (4 messages)
- Posted by: Anil Beeravolu
- Posted on: October 30 2000 21:09 EST
Threaded Messages (4)
- Ear and War files by Patrick Lightbody on October 31 2000 18:30 EST
- Ear and War files by David Pool on October 31 2000 20:30 EST
- Ear and War files by Christopher Bartling on November 06 2000 00:40 EST
- Ear and War files by Ahmed Hasan on November 07 2000 05:25 EST
-
Ear and War files[ Go to top ]
- Posted by: Patrick Lightbody
- Posted on: October 31 2000 18:30 EST
- in response to Anil Beeravolu
Yes... the jar utility that comes with the JDK. Just make a jar, and rename it to have a .war or .ear extension. I am pretty sure that ear and war is just a jar with another extension. (Please correct me if I'm wrong).
-Pat -
Ear and War files[ Go to top ]
- Posted by: David Pool
- Posted on: October 31 2000 20:30 EST
- in response to Patrick Lightbody
True, a .ear file is a JAR. But the J2EE spec defines what goes in the JAR. For example, it must have an XML deployment descriptor, and might even contain one or more .war files. So any JAR is not a .ear.
Dave -
Ear and War files[ Go to top ]
- Posted by: Christopher Bartling
- Posted on: November 06 2000 00:40 EST
- in response to Patrick Lightbody
I've gone to using the packager tool found in the J2EE SDK. We're using Sybase's Jaguar CTS EJB server, and it's very finicky about the EJB JAR file. We've also gone to verifying the JAR file with the verifier tool, also included in the J2EE SDK. Sybase only works with EJB JARs strictly adhering to the J2EE standard. We've tried to generate EJB JARs using the Ant 1.2 ejbjar task and that did not create JAR files which would verify within the verifier.
-- chris bartling -- -
Ear and War files[ Go to top ]
- Posted by: Ahmed Hasan
- Posted on: November 07 2000 05:25 EST
- in response to Anil Beeravolu
U can make use of the jar utility supplied with jdk. You've to specify the o/p file with whatever extension u want (.ear, .war or .jar)
-Ahamed Hasan