Hello,
I'm getting the following exception thrown using your Session bean example:
exception during 1st Tx: java.rmi.ServerError: Error occurred in server
thread;
nested exception is:
java.lang.IncompatibleClassChangeError: Implementing class
// We want to start transactions from client: get UserTransaction
UserTransaction utx = null;
try {
utx = (UserTransaction)
initialContext.lookup("javax.transaction.UserTransaction");
} catch (Exception e) {
System.err.println("Cannot lookup UserTransaction: "+e);
System.exit(2);
}
utx.begin(); <-- It throws an exception on this line
When I remove all the utx calls from the Client program, I still get the
same exception.
Thanks,
Rod
[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
----
To unsubscribe, send email to [EMAIL PROTECTED] and
include in the body of the message "unsubscribe jonas-users".
For general help, send email to [EMAIL PROTECTED] and
include in the body of the message "help".