Subject | Re: [Firebird-Java] Glassfish - Connection pool error |
---|---|
Author | Roman Rokytskyy |
Post date | 2008-10-19T22:09:54Z |
> This error was resolved! But now emerged this error:It looks like somebody (server, I suspect) is still using JDK 6.0. The
>
> Exception occurred during event dispatching:
> javax.ejb.EJBException: nested exception is: java.rmi.ServerException:
> RemoteException occurred in server thread; nested exception is:
> java.rmi.RemoteException: null; nested exception is:
> java.lang.AbstractMethodError:
> org.firebirdsql.jdbc.FBConnection.getClientInfo()Ljava/util/Properties;
> java.rmi.ServerException: RemoteException occurred in server thread; nested
> exception is:
> java.rmi.RemoteException: null; nested exception is:
> java.lang.AbstractMethodError:
> org.firebirdsql.jdbc.FBConnection.getClientInfo()Ljava/util/Properties;
method getClientInfo() was introduced in JDBC 4.0, which appeared in JDK
6.0. The exception AbstractMethodError means that the method is
abstract, which in our case means that you have a driver for the
previous version of JDBC/JDK.
Please, check your JDKs carefully.
Roman