• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Any WAR utility in WSAD ?

 
Ranch Hand
Posts: 130
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

We have a situation where a we need to have our development project(WAR) needs to be put into a product (which we brought and only have class files) (EAR).

The development team has to test their development of war by putting into ear, Is there a automated process to do this, like we have update zip for jar ?

Thanks
Venkatesh
 
Ranch Hand
Posts: 374
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You could always import the EAR, add your own WAR to it, and re-export it.

Otherwise, you have to modify the application.xml file. But you can easily just use WinZip or jar to update the .ear file to include your modified application.xml and new WAR.

Heck, you could just use ANT to do it!
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

In WSAD, rightclik on the web project that you want have it as ear module--> click on export-->choose EAR file--->click next-->enter ear file name and location to save the ear file--->click finish .
 
venkatesh rajmendram
Ranch Hand
Posts: 130
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Made decision to go with ANT...that way could do checkstyle and junit and other stuff too...

I wish there was a plugin in WSAD which had a front end to do this...

I guess I am too ambitious
[ November 08, 2004: Message edited by: venkatesh rajmendram ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic