Hello,
after hours of work, I get the application running with jms cache coordination enabled.
But when the first database update occurs, I get following log message:
Exception Description: Received JMS message is null. Treating it as a JMSException
at org.eclipse.persistence.exceptions.RemoteCommandManagerException.errorJMSMessageIsNull(RemoteCommandManagerException.java:221)
at org.eclipse.persistence.internal.sessions.coordination.jms.JMSTopicRemoteConnection.run(JMSTopicRemoteConnection.java:298)
at java.lang.Thread.run(Thread.java:619)
|#]
Here are the settings from the persistence.xml
<property name="eclipselink.cache.shared.default" value="true"/>
<property name="eclipselink.cache.coordination.protocol" value="jms"/>
<property name="eclipselink.cache.coordination.jms.host" value="iiop://localhost:3700"/>
<property name="eclipselink.cache.coordination.jms.topic" value="jms/CacheCoordinationTopic"/>
<property name="eclipselink.cache.coordination.jms.factory" value="jms/CacheCoordinationFactory"/>
<property name="eclipselink.cache.coordination.jms.reuse-topic-publisher" value="false"/>
<property name="eclipselink.cache.coordination.jndi.initial-context-factory"
value="com.sun.enterprise.naming.SerialInitContextFactory"/>
<property name="eclipselink.cache.coordination.jndi.user" value="admin"/>
<property name="eclipselink.cache.coordination.jndi.password" value="adminadmin"/>
Does anybody has an idea, what is wrong?
thanks
Dirk