Hello!
I am trying to integrate a Hibernate application into a proprietary framework. My problem is that this framework somehow checks the signature of packages. When I try to call my Hibernate application I get the following error:
Caused by: java.lang.SecurityException: class "org.hibernate.dialect.Oracle10gDialect"'s signer information does not match signer information of other classes in the same package
Additional information: The database on which Hibernate works is Oracle 10g, so this class is mandatory.
Which package is meant by "same package"? Is it "org.hibernate.dialect"?
My real problem is that I don't know where to start. The "org.hibernate.dialect" package is contained in "hibernate3.jar" taken from Hibernate Core 3.3.1GA. Are they signing their classes incorrectly? Or is the provider of the framework to blame, because he is using the same jar (I don't have any information on that).
Is there a way to display the signature information?
Thanks