It seems as though ActiveMQ implements these method calls differently from the JMS API. Reading the API description I get the impression that, when using createTopic() or createQueue(), the topics and queues should not actually be physically created for other JMS users to see but rather to create a topic object from a topic that has already been administratively created in the broker. The way ActiveMQ implements the calls however, is that a topic actually gets created for other JMS users to see and pub/sub to. It seems as though ActiveMQ implements these methods the way the API describes the createTemporaryTopic() should be implemented. Am I not undertanding something here?
Hiram Chirino wrote: > > So what's the question? > > On 10/10/07, eldictson <[EMAIL PROTECTED]> wrote: >> >> Was wondering the Session createTopic() & createQueue() methods >> dynamically >> creates physical topics and queues in the ActiveMQ broker when the JMS >> API >> docs specify the following: >> >> createTopic >> public Topic createTopic(java.lang.String topicName) >> throws JMSException >> >> Creates a topic identity given a Topic name. >> This facility is provided for the rare cases where clients need to >> dynamically manipulate topic identity. This allows the creation of a >> topic >> identity with a provider-specific name. Clients that depend on this >> ability >> are not portable. >> >> Note that this method is not for creating the physical topic. The >> physical >> creation of topics is an administrative task and is not to be initiated >> by >> the JMS API. The one exception is the creation of temporary topics, which >> is >> accomplished with the createTemporaryTopic method. >> >> Thanks >> -- >> View this message in context: >> http://www.nabble.com/createTopic---createQueue-behavior-different-than-JMS-API-tf4603635s2354.html#a13144881 >> Sent from the ActiveMQ - Dev mailing list archive at Nabble.com. >> >> > > > -- > Regards, > Hiram > > Blog: http://hiramchirino.com > > -- View this message in context: http://www.nabble.com/createTopic---createQueue-behavior-different-than-JMS-API-tf4603635s2354.html#a13147299 Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.
