Stomp doesn't currently support temporary topics. This isn't a limitation
of the activemq-cpp client, it's simply not part of the stomp protocol. Of
course openwire does support temporary topics, but the openwire support in
activemq-cpp is still under development.
Regards,
Nate
On 10/24/06, # Lalit Nagpal # <[EMAIL PROTECTED]> wrote:
I got this wierd exception of UnsupportedOperationException ... when I
tried
to create a TemporaryTopic using the stomp protocol activemq-cpp
implementation ...
When I debug, I get into the class stompconnector.cpp method
cms::TemporaryTopic* StompConnector::createTemporaryTopic(SessionInfo*
session ) {
try
{
throw UnsupportedOperationException(
__FILE__, __LINE__,
"StompConnector::createTemporaryTopic - No Stomp Support");
}
AMQ_CATCH_RETHROW( ConnectorException )
AMQ_CATCHALL_THROW( ConnectorException );
}
This method throws an exception straight-off ... it seems this method was
not implemented and just throws an UnsupportedMethodException straight.
Can somebody guide me please ... Is this implementation in place or
missing.
I needed the support for TemporaryQueue and TemporaryTopic ... For both of
these cases their is no implementation and both methods simply throw an
UnsupportedMethodException straight without doing anything.
--
View this message in context:
http://www.nabble.com/Stomp-TemporaryTopic---TemporaryQueue-tf2500736.html#a6971135
Sent from the ActiveMQ - User mailing list archive at Nabble.com.