• 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:

what next???

 
Ranch Hand
Posts: 96
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
After writingg all the bean classes and having compiled them,also written the deployment descripter how do you deploy them on Weblogic 6.0 and how do you execute it....Please help me on that
 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can use the ejb deployer tool to generate the jar file which would be deployed.The jar file contains all the class files and descriptors.Its easier to use the deployer tool since it would generate the container and create the jar file for you.Also it would create the deployment descriptor.So only thing you need is class files of your bean.
If you dont use the deployer tool then you have to use DOS commands to generate the container and create the jar file.You also have to write the deployment descriptor(.xml files).The commands and the process to do it can be found in the docs that come with weblogic.
Once jar file is generated,it should be deployed in weblogic server either by editing the weblogic.properties file or by using weblogic console(hot deployment).
After it is successfully deployed you can use the methods of the bean.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic