PooledSession doen't support blob message
-----------------------------------------
Key: AMQ-2258
URL: https://issues.apache.org/activemq/browse/AMQ-2258
Project: ActiveMQ
Issue Type: Improvement
Components: JMS client
Affects Versions: 5.2.0
Environment: window xp
Reporter: sudhir sharma
org.apache.activemq.pool.PooledSession or org.jencks.amqpool.PooledSession
does not support Blob messages, as createBlobMessage method is missing from
both the PooledSession.
we are using spring JMS integration, where we get the activeMq PooledSession if
we use ActiveMQ connection pooling
Below is the code we are trying to use.
this.jmsTemplate.send(this.destination, new MessageCreator() {
public Message createMessage(Session session) throws JMSException {
org.apache.activemq.pool.PooledSession pooledSession =
(org.apache.activemq.pool.PooledSession)session
// We need support for below method
BlobMessage blobMessage = session.createBlobMessage(response); // this
method is missing
return blobMessage;
}
});
we are using activeMQ 5.2
forum ref :
http://www.nabble.com/PooledSession-doen%27t-support-blob-message-td23614284.html
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.