Hello,
when deploying my .ear file I get a "NoClassDefFoundError: BuchungDetailsBean"

The BuchungDetailsBean is a JavaBean in a "office.war" file and is meant to be 
used in the session bean within a ejb-jar file. I already put a "class-path: 
Office.war" line in the ejb-jar's manifest.


import gk.office.util.*;
import java.rmi.RemoteException;
import javax.ejb.*;

public class BuchungControllerBean implements SessionBean {
        
        private BuchungHome buchungHome;
        
        public BuchungDetailsBean getBuchungDetails (String buchungId) 
                throws RemoteException, FinderException 
        {
                Buchung buchung = (Buchung) 
buchungHome.findByPrimaryKey(buchungId);
                BuchungDetailsBean buchg = new BuchungDetailsBean();
                buchg.setId(buchung.getId());
...

Any ideas ?

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

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


-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to