RE: tomcat and JMS

2005-09-22 Thread Jason Bell
Stas, The original link gave a 404 error, but there is this article on the OnJava site that may shed a little more light for you. http://www.onjava.com/pub/a/onjava/2001/12/12/openjms.html I hope this helps. Regards Jason -- Jason Bell Lead Architect, SpikeSource Europe e: [EMAIL PROTECTED]

Re: tomcat and JMS

2005-09-22 Thread Stas Ostapenko
Hi ! Thanks for your resnonce. I saw that article at ONJava.com. They use standalone openJMS server. I'm interested in embedded. Broken link ? Maybe... However, it's not much info there. Overview The Embedded connector enables OpenJMS clients to connect to an embedded OpenJMS server, i.e. a

RE: tomcat and JMS

2005-09-22 Thread Jason Bell
Hi ! Thanks for your resnonce. I saw that article at ONJava.com. They use standalone openJMS server. I'm interested in embedded. I was Googling around, I have to admit, as I found your posting very interesting. I've downloaded OpenJMS and will try and have a play when I have half an hour

Re: tomcat and JMS

2005-09-22 Thread Dov Rosenberg
Try something like: try { EmbeddedJmsServer server = new EmbeddedJmsServer(config); Thread serverThread = new Thread( server ); server.init(); serverThread.start(); } catch (Throwable e) { // do nothing e.printStackTrace(); } On 9/22/05 9:28 AM, Jason Bell

tomcat and JMS

2005-09-21 Thread Stas Ostapenko
Hi ! I'm trying to embedd openJMS into Tomcat 5.0.30. I found few articles how to use openJMS as standalone, but no one about embedding. As i understand openJMS can be embedded - http://openjms.sourceforge.net/usersguide/embedded.html. But how ? Please help. Regards, Stas