• 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

EJB 2 and jboss-4.2.1.GA

 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

I have jboss-4.2.1.GA installed.

Where can I find/download the EJB 2.x jar files?

How can I deploy a whole application including servlets and EJBs into jboss?

Can we deploy them as separately, as the servlets and JSP packeged into test.war and the EJB stuff packaged into test.jar?

Thank You

- Ganni
 
Sheriff
Posts: 10445
227
IntelliJ IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ganesan,

Welcome to JavaRanch

Originally posted by Ganesan Kal:


Where can I find/download the EJB 2.x jar files?



You mean the jar files containing javax.ejb.* package? When you download JBoss, it already comes with these jar files (which you can find in %JBOSS_HOME%/server/default/lib folder).

Originally posted by Ganesan Kal:
How can I deploy a whole application including servlets and EJBs into jboss?



You can create an EAR file containing the ejb jars and the servlet/jsp war file and place the ear file in the deploy folder of JBoss.

Originally posted by Ganesan Kal:
Can we deploy them as separately, as the servlets and JSP packeged into test.war and the EJB stuff packaged into test.jar?


Yes, you can deploy it this way too
 
Ganni Kal
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear Jaikiran

Thank you for your neat and useful answer.

Ragards
Ganni
 
reply
    Bookmark Topic Watch Topic
  • New Topic