Uploaded image for project: 'jBPM'
  1. jBPM
  2. JBPM-1008

ejb deployment : avoid ClassNotFoundException on client side after unmarshalling

    XMLWordPrintable

Details

    • Bug
    • Resolution: Obsolete
    • Major
    • None
    • jBPM 3.2.1
    • Console
    • None
    • Workaround Exists
    • Hide

      make ejb client depend on hibernate.jar and cglib.jar (the exact versions used by the appserver, lest serialization uid problems occur).

      Show
      make ejb client depend on hibernate.jar and cglib.jar (the exact versions used by the appserver, lest serialization uid problems occur).

    Description

      Two aspects in this jira : 1: hide hibernate-specific exceptions; 2: hide hibernate-specific datatypes.

      1. The EJB client only depends on the jBPM jar (for the various Command implementations) and on the JBoss client jar. If a Hibernate exception occurs, it is wrapped by a JBPMException and rethrown. When deserialiezed on the client side (which does not have a Hibernate dependency), a ClassNotFoundException occurs.

      I think the CommandServiceBean should not wrap internal implementation-specific exceptions; it should instead simply copy the stack trace and throw a new implementation-independent exception which contains the exception trace without containing the causes themselves. That typically avoids ClassNotFoundExceptions without losing exception history.

      2. The second problem is that hibernate-specific collections get serialized over the wire, here is the description of the problem :

      I use the GetProcessInstancesCommand in order to experiment with querying the remote ejb. This command returns a list with ProcessInstances. A ProcessInstance is read by Hibernate from the database. As Hibernate uses specific lazy-loading-aware implementations for collections – the ProcessInstance.instances attribute, which is declared of type java.util.Map, is actually implemented by org.hibernate.collections.PersistentMap.

      Which generates class loading exception while deserializing to hibernate-unaware ejb clients.

      The solution would then be for the Command implementations to return clean JDK collections, by replacing Hibernate collection with JDK standard ones. Note that IIUC only the collections must be replaced, not the collection contents too, so the "cleaning" operation should not be that expensive. Cleaning should be only done in the SLSB remote call use case – because in-JVM callers may want to benefit lazy-loading.

      Attachments

        Activity

          People

            Unassigned Unassigned
            gogoasa_jira Adrian Dimulescu (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: