0 Replies Latest reply on Dec 19, 2007 10:33 AM by hazurek

    Problem with JmsMessageServiceImpl deployed at Glassfish.

    hazurek

      I've tried to deploy jbpm-enterprise module at Glassfish. And I've met such a problem. Sun's JMS implementation throws UnsupportedOperationException at this line in JmsMessageServiceImpl:

      ...
       getMessageProducer().send(destination, message);
      ...
      


      If I change it to
      ...
       getMessageProducer().send(message);
      ...
      

      it is working fine.

      So workaround is to create custom MessageServiceImplementation that will create custom JmsMessageServiceImpl with changed code.

      But is it possible to change this line in jBPM code? Or may be there is some other solution?
      Thank you.