Anyone have any ideas where I can find a Publish/subscribe framework
for Java? I would like something open source but it's not necessary.
Christian
Patrick May - 08 Nov 2005 20:47 GMT
> Anyone have any ideas where I can find a Publish/subscribe framework
> for Java? I would like something open source but it's not necessary.
There are several open source JMS implementations extant.
Googling on 'jms "open source"' gives several options in the first
page alone.
Regards,
Patrick
------------------------------------------------------------------------
S P Engineering, Inc. | The experts in large scale distributed OO
| systems design and implementation.
pjm@spe.com | (C++, Java, Common Lisp, Jini, CORBA, UML)
Andrew McDonagh - 08 Nov 2005 21:21 GMT
> Anyone have any ideas where I can find a Publish/subscribe framework
> for Java? I would like something open source but it's not necessary.
>
> Christian
eh?
What kind of message/event/signal do you need to be transferred?
How does the message need to be transferred? Object-to-object,
Thread-to-thread, or process-to-process?
If its a simple Object-to-object 'framework', then role your own its
very simple. Or use the Publish/Subscriber classes contained within the JDK.
if its the others, then we'll talk about them too...but give us some
kind of indication as to which 'Can of worms' you want to open.
Andy