hi,

Okay, I'm pretty new to this, how do I deploy the jar on it's own? I'm using 
JBoss IDE in Eclipse.

I have check the contents of the jars and they look like this:


FiboEJB-client.jar:

META-INF/
META-INF/MANIFEST.MF
tutorial/
tutorial/interfaces/
tutorial/interfaces/Fibo.class
tutorial/interfaces/FiboHome.class


FiboEJB.jar

META-INF/
META-INF/MANIFEST.MF
META-INF/ejb-jar.xml
META-INF/jboss.xml
tutorial/
tutorial/ejb/
tutorial/ejb/FiboBean.class

FiboWeb.war

META-INF/
META-INF/MANIFEST.MF
WEB-INF/
WEB-INF/web.xml
WEB-INF/jboss-web.xml
WEB-INF/lib/
WEB-INF/lib/FiboEJB-client.jar
WEB-INF/classes/
WEB-INF/classes/tutorial/
WEB-INF/classes/tutorial/web/
WEB-INF/classes/tutorial/web/ComputeServlet.class
index.html


FiboApp.ear

META-INF/
META-INF/MANIFEST.MF
META-INF/application.xml
FiboEJB.jar
FiboWeb.war


Here is my ejb-jar.xml file:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 
2.0//EN" "http://java.sun.com/dtd/ejb-jar_2_0.dtd";>

<ejb-jar >

   [CDATA[No Description.]]
   <display-name>Generated by XDoclet</display-name>

   <enterprise-beans>

      <!-- Session Beans -->
      
         [CDATA[Bean that computes fibo]]
         <display-name>Fibo EJB</display-name>

         <ejb-name>Fibo</ejb-name>

         tutorial.interfaces.FiboHome
         tutorial.interfaces.Fibo
         <ejb-class>tutorial.ejb.FiboBean</ejb-class>
         <session-type>Stateless</session-type>
         <transaction-type>Container</transaction-type>

      

     <!--
       To add session beans that you have deployment descriptor info for, add
       a file to your XDoclet merge directory called session-beans.xml that 
contains
       the  markup for those beans.
     -->

      <!-- Entity Beans -->
     <!--
       To add entity beans that you have deployment descriptor info for, add
       a file to your XDoclet merge directory called entity-beans.xml that 
contains
       the  markup for those beans.
     -->

      <!-- Message Driven Beans -->
     <!--
       To add message driven beans that you have deployment descriptor info 
for, add
       a file to your XDoclet merge directory called message-driven-beans.xml 
that contains
       the <message-driven></message-driven> markup for those beans.
     -->

   </enterprise-beans>

   <!-- Relationships -->

   <!-- Assembly Descriptor -->
   <assembly-descriptor >
     <!--
       To add additional assembly descriptor info here, add a file to your
       XDoclet merge directory called assembly-descriptor.xml that contains
       the <assembly-descriptor></assembly-descriptor> markup.
     -->

   <!-- finder permissions -->

   <!-- transactions -->

   <!-- finder transactions -->
   </assembly-descriptor>

</ejb-jar>
 

Thanks for the help.

Steve

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3856673#3856673

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3856673


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to