Help coderanch get a
new server
by contributing to the fundraiser
  • 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

Hot deployment of EJBs with WL Portal4.0

 
Ranch Hand
Posts: 560
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello All,
I am able to hot deploy the Jsp files. I like to do the same for EJBs, Pipeline and webflow components. Has anyone tried hotdeployment with our jarring the .class files for EJB deployment? I tried to do it but didn't have any success.
Ideally, i like to run ant task to compile and run ejbc on EJB classes and be able to use it in wlserver6.1 with wlportal4.0.
Thanks a lot.
 
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 can hot deploy ejbs in WebLogic on one condition, the Home and/or Remote Interfaces have not changed. In other words, you can only redeploy the implementation class.
I have also found this to be a bit flaky at times. If you are having problems after a hot redeployment then it is allows wise to restart the server.
Also, hot redeployment of ejbs is not intended for production use.
 
reply
    Bookmark Topic Watch Topic
  • New Topic