Bringing this up again, because I've just hit an issue with it with the J2EE
RI.

If I try:

+++++++++++++++++++++

import javax.ejb.EJBObject;
import java.rmi.RemoteException;


public interface Converter extends ConverterBI, EJBObject {
}

+++++++++++++++++++++

package conv;

import java.rmi.RemoteException;

public interface ConverterBI{

   public double dollarToYen(double dollars) throws RemoteException;
   public double yenToEuro(double yen) throws RemoteException;
}

+++++++++++++++++++++

then I get:

java.lang.NoClassDefFoundError: conv/ConverterBI
        at java.lang.ClassLoader.defineClass0(Native Method)
        at java.lang.ClassLoader.defineClass(ClassLoader.java:442)
        at java.lang.ClassLoader.defineClass(ClassLoader.java:392)
        at
com.sun.enterprise.util.FileClassLoader.getClassName(FileClassLoader.java:46
)
        ...

when I try to add the new bean to an ear file using the deploy tool.

I've tried a lotof different things with packages, classpaths manifest
paths, all to no avail.

Any ideas?

Thanks

Phil Lewis
Chief Designer
Knowledge Management Software plc


Any opinions expressed in this email are those of the individual and not necessarily 
Knowledge Management Software plc.  This email and any files transmitted with it are 
confidential and solely for the use of the intended recipient.
If you are not the intended recipient or the person responsible for delivering to the 
intended recipient, be advised that you have received this email in error and that any 
use is strictly prohibited.  If you have received this email in error please notify 
the Systems Manager by telephone on 44 (0) 161 227 9009

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to