We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Marakov Andrey opened SWS-742 and commented
In org.springframework.ws.transport.jms.JmsSenderConnection.onReceiveBeforeRead() the following code set the value of messageSelector:
if (responseDestination instanceof TemporaryQueue || responseDestination instanceof TemporaryTopic) { messageConsumer = session.createConsumer(responseDestination); } else { String messageId = requestMessage.getJMSMessageID().replaceAll("'", "''"); String messageSelector = "JMSCorrelationID = '" + messageId + "'"; messageConsumer = session.createConsumer(responseDestination, messageSelector); }
If I'm using Oracle AQ, expression (responseDestination instanceof TemporaryQueue) always returns true (See Oracle Streams Advanced Queuing Java API Reference http://docs.oracle.com/cd/B19306_01/server.102/b14291/oracle/jms/AQjmsDestination.html). Regarding this it is impossible to use JMSCorrelationID together with Oracle AQ.
Affects: 2.0.3
Referenced from: commits 09bcd7f
The text was updated successfully, but these errors were encountered:
Arjen Poutsma commented
Fixed.
Sorry, something went wrong.
Closing old issues
poutsma
No branches or pull requests
Marakov Andrey opened SWS-742 and commented
In org.springframework.ws.transport.jms.JmsSenderConnection.onReceiveBeforeRead() the following code set the value of messageSelector:
If I'm using Oracle AQ, expression (responseDestination instanceof TemporaryQueue) always returns true (See Oracle Streams Advanced Queuing Java API Reference http://docs.oracle.com/cd/B19306_01/server.102/b14291/oracle/jms/AQjmsDestination.html). Regarding this it is impossible to use JMSCorrelationID together with Oracle AQ.
Affects: 2.0.3
Referenced from: commits 09bcd7f
The text was updated successfully, but these errors were encountered: