WAS 4 had a tool called AAT for generating an EAR file ... you basically import your files, do a bit of config, and generate. WAS 5 has a simlar tool (based on Eclipse/WSAD) called Assembly Toolkit for WebSphere. This should make the job fairly easy.
If you have a WAR file, both versions also support deploying just the WAR file.
BTW, once you've deployed your application once, you can still just copy new versions of the JSPs and servlets to the folders, although there are some refresh issues. They won't be picked up automatically; I think you have to restart the app. There are some other Q's here on EE regarding the refresh issue.
Main Topics
Browse All Topics





by: sompol_kiatkamolchaiPosted on 2005-04-21 at 22:36:33ID: 13840421
Hello g118481,
Why don't you want to use WSAD? It helps you create many thing that need for EAR file.
But if you want to create manually you need to create folder structure that comply with J2EE specification and use jar utility which bundle with j2sdk. Here is some example
jar cvf ear-file directory
Hope this help,
sompol