On Mon, Aug 11, 2008 at 9:49 AM, Mick Knutson <[EMAIL PROTECTED]> wrote: > I appreciate the quick response. So here is a bit more detail on my issue > with creating this poc: > > 1. I have to create a jms topic in servicemix, and have just started with > this Friday, so I am VERY new to the product. I notice there are many > examples, but I am unsure the best one to use to accommodate STOMP. > > 2. My Python team is the team that will helping me with the STOMP portion of > this poc, so I am going to forward them the link. > > Now I assume I need to get #1 complete so they can complete their portion of > this. So you help is greatly appreciated and given in advance.. :-)
ServiceMix uses an embedded instance of ActiveMQ for messaging. Are you sure that you want to create a topic and not a queue? A topic will deliver all messages to all subscribers whereas a queue will essentially load balance messages across subscribers. There are examples of queue and topic creation in the following examples: http://code.google.com/p/pyactivemq/source/browse/trunk/src/examples/DurableSubscriberExample.py http://code.google.com/p/pyactivemq/source/browse/trunk/src/examples/numpypickle.py Bruce -- perl -e 'print unpack("u30","D0G)[EMAIL PROTECTED]&5R\"F)R=6-E+G-N>61E<D\!G;6%I;\"YC;VT*" );' Apache ActiveMQ - http://activemq.org/ Apache Camel - http://activemq.org/camel/ Apache ServiceMix - http://servicemix.org/ Blog: http://bruceblog.org/
