• 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:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Why the extra deployment step only on some app servers?

 
Ranch Hand
Posts: 55
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I'm moving some jars I created in JBoss to Websphere 5.0.
On some app servers like JBoss you only need to add the app server specific descriptor file ("jboss.xml"). On others, like Websphere or WebLogic you have to do an extra deployment step (ejbjar or ejbdeploy) to add some extra stub classes before you can deploy the ear or jar.
I really find this extra step to be slow and cumbersome (especially with Websphere's Application Assembly Tool (AAT)). Even running the ejbdeploy command from the command line is slow. Any suggestions to speed up this jar creation process are welcome.
Just curious why the extra step and why this has to be so frustratingly slow.
John
 
Ranch Hand
Posts: 104
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
well i am not an ibm fanatic but the deployment process with AAT is really cool, when you have some experience. however, i didnt find any mechanism to deploy beans automatically. i guess ibm provides this with some tool (of course you have to buy it ...) like Websphere Studio Application Development.
weblogic does have tools to generate deployment descriptors, create stubs and deploy the bean, so you can use it with batchfiles and ant. however, i like to deploy the beans with the web console. so i generate dd with DDInit and add descriptors, before making the jar file and deploy it on the web interface.
 
John Fairbairn
Ranch Hand
Posts: 55
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks max...
how much RAM do you have on your PC when you're running the AAT tool... I find it freezes up occasionally... I have 256...
John
 
Ranch Hand
Posts: 2713
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You do not have to run ejbc to deploy an ejb on WebLogic. WebLogic will automatically run ejbc if it needs to. However, it is in your best interest to run it before hand to catch any errors before deployment time. Ant supports ejbc (thru the ejbjar task) so it is easy to work into your build scripts.
[ October 31, 2002: Message edited by: Chris Mathews ]
 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
J,
On our project we also moved from JBoss to Websphere and found the increased compile/deploy time frustrating. One short cut though (you may already know this) is that the ejbdeploy step is only strictly necessary if the remote interfaces to your EJBs have changed. If you just changed the impementation classes you can just update the jar with the new versions. We find this cuts down the compile/deploy cycle considerably.
Hope this helps
Dave
 
Maximilian Trenks
Ranch Hand
Posts: 104
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
my pc has 512 MB ram and i have no problems with oracle running on the same machine at the same time.
does anybody know if i can use command line tools to automatically deploy applications with websphere ? i know visual age and other IDEs have plug-ins for websphere ...
 
You don't know me, but I've been looking all over the world for. Thanks to the help from this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic