Yesterday I made a JMS test with Weblogic 8.1 and found this strange thng: Though I was using the following code, copied from the docs:
jI could see in the stack trace that the code that was invoked was on JmsTemplate, not on JmsTemplate102, with a call on getConnectionFactory().createConnection() being consequently made. Weblogic is only 1.0.2 compliant when out-of-the-box, so this causes an error.Code:t = new JmsTemplate102(connFactory, false); jt.send(queue, new MessageCreator() { public Message createMessage(Session session) throws JMSException { return session.createTextMessage(message); } });
I'm using Spring 1.2RC1, and just wanted to know that do you think...
Thanks,
Alejandro Escalante Medina


Reply With Quote