Python and JMS

2009-08-24 Thread osky
Hi all,

I would like to make a JMS client connection from Python to Progress
Sonic ESB (JMS message provider similar to WebSphere MQ or Active
MQ).

What would be the best way to implement that within Python 2.6 ?
Any ideas ?

Thanks
Oscar
-- 
http://mail.python.org/mailman/listinfo/python-list


python and JMS

2006-07-29 Thread tksri2000
I am looking to use python to talk to JMS. Can some please point me to
such resources if this is possible.

Sri

-- 
http://mail.python.org/mailman/listinfo/python-list


Python and JMS?

2007-04-12 Thread Leonard J. Reder
Hello,

I would like to write some Python to monitor a JMS middleware software bus.
JMS being Java Messaging Service.  Can anyone recommend a Python
wrapper to JMS for this?   My goal is to listen for XML being transfered 
over
a JMS implementation.   All the applications so far are in Java.

Thanks for any replies?

Len
-- 
===
Leonard J. Reder
Home office email : [EMAIL PROTECTED]
Lab email : [EMAIL PROTECTED]
Lab web page  : http://reder.jpl.nasa.gov
===
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Python and JMS

2009-08-24 Thread Diez B. Roggisch
osky wrote:

> Hi all,
> 
> I would like to make a JMS client connection from Python to Progress
> Sonic ESB (JMS message provider similar to WebSphere MQ or Active
> MQ).
> 
> What would be the best way to implement that within Python 2.6 ?
> Any ideas ?

I just recently learned about JCC - a Java-wrapper-compiler for python that
is used by pylucene to embed (!) the JVM into python.

This might be one viable option. I don't know much more, though.

Diez
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Python and JMS

2009-08-24 Thread Stefan Behnel
osky wrote:
> I would like to make a JMS client connection from Python to Progress
> Sonic ESB (JMS message provider similar to WebSphere MQ or Active
> MQ).

Never needed this, but Google gives me this as first hit

http://hjb.python-hosting.com/

and this c.l.py thread reference a little further down:

http://mail.python.org/pipermail/python-list/2006-July/567400.html

Stefan
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: python and JMS

2006-07-30 Thread Ravi Teja
> I am looking to use python to talk to JMS. Can some please point me to
> such resources if this is possible.

JPype
http://jpype.sourceforge.net/

Jython
http://www.jython.org/

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: python and JMS

2006-07-30 Thread Alan Kennedy
[tksri2000]
> I am looking to use python to talk to JMS. Can some please point me to
> such resources if this is possible.

PyHJB is the python-to-JMS gateway. ... via HJB, the HTTP JMS bridge.
http://hjb.python-hosting.com/

HJB (HTTP JMS Bridge)
http://hjb.berlios.de/

HTH,

--
alan kennedy
--
email alan:  http://xhaus.com/contact/alan

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: python and JMS

2006-07-30 Thread Ravi Teja

Alan Kennedy wrote:
> [tksri2000]
> > I am looking to use python to talk to JMS. Can some please point me to
> > such resources if this is possible.
>
> PyHJB is the python-to-JMS gateway. ... via HJB, the HTTP JMS bridge.
> http://hjb.python-hosting.com/
>
> HJB (HTTP JMS Bridge)
> http://hjb.berlios.de/

Neat. Apparently ActiveMQ supports multi-language clients through STOMP
too.
http://www.activemq.org/site/cross-language-clients.html

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Python and JMS?

2007-04-13 Thread Jarek Zgoda
Leonard J. Reder napisał(a):

> I would like to write some Python to monitor a JMS middleware software bus.
> JMS being Java Messaging Service.  Can anyone recommend a Python
> wrapper to JMS for this?   My goal is to listen for XML being transfered
> over
> a JMS implementation.   All the applications so far are in Java.

Quick googling for "python jms" yields http://hjb.python-hosting.com/ as
1st result and for a long time this seems the only solution that works.
Unfortuantely, it's functionality is severely limited.

If you happen to use ActiveMQ, you can try to use stomp protocol, but
this isn't a standard (I don't know any other implementation of queuing
software that uses this).

-- 
Jarek Zgoda

"We read Knuth so you don't have to."
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Python and JMS?

2007-04-15 Thread Leonard J. Reder
Thanks Jarek,

Yes indeed, we are using ActiveMQ and I did see the StomPy python
package.  But I also saw that it said stomp was done as a student
project that ended.  Maybe I will try hjb for now - all I need to do
is listen for messages on a certain topic.

Maybe some of our internal people will pick stom and make it better for 
the future though.

Len

Jarek Zgoda wrote:
> Leonard J. Reder napisa³(a):
> 
>> I would like to write some Python to monitor a JMS middleware software bus.
>> JMS being Java Messaging Service.  Can anyone recommend a Python
>> wrapper to JMS for this?   My goal is to listen for XML being transfered
>> over
>> a JMS implementation.   All the applications so far are in Java.
> 
> Quick googling for "python jms" yields http://hjb.python-hosting.com/ as
> 1st result and for a long time this seems the only solution that works.
> Unfortuantely, it's functionality is severely limited.
> 
> If you happen to use ActiveMQ, you can try to use stomp protocol, but
> this isn't a standard (I don't know any other implementation of queuing
> software that uses this).
> 


-- 
===
Leonard J. Reder
Home office email : [EMAIL PROTECTED]
Lab email : [EMAIL PROTECTED]
Lab web page  : http://reder.jpl.nasa.gov
===
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Python and JMS?

2007-04-16 Thread Jarek Zgoda
Leonard J. Reder napisał(a):

> Yes indeed, we are using ActiveMQ and I did see the StomPy python
> package.  But I also saw that it said stomp was done as a student
> project that ended.  Maybe I will try hjb for now - all I need to do
> is listen for messages on a certain topic.
> 
> Maybe some of our internal people will pick stom and make it better for
> the future though.

I saw there are 2 libraries implementating stomp, the one mentioned by
you and one which looked a bit better. The protocol itself also doesn't
look very complicated, so this should be relatively easy to implement
client library for somebody who works with ActiveMQ on a daily basis.

-- 
Jarek Zgoda

"We read Knuth so you don't have to."
-- 
http://mail.python.org/mailman/listinfo/python-list