Re: [JBoss-user] How to send message to MDB

2001-07-14 Thread Jason Dillon
> topicConnection = factory.createTopicConnection(); > topicConnection.start(); > > What would be the equivalent in JBoss ? > > > - Original Message - > From: "Jason Dillon" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Saturday, July 14, 2001 11:40 AM &g

Re: [JBoss-user] How to send message to MDB

2001-07-14 Thread Wei-ju Wu
topicConnection = factory.createTopicConnection(); topicConnection.start(); What would be the equivalent in JBoss ? - Original Message - From: "Jason Dillon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, July 14, 2001 11:40 AM Subject: Re: [JBoss-user] How to send message to MDB &

Re: [JBoss-user] How to send message to MDB

2001-07-14 Thread Jason Dillon
It is just like sending to any other JMS queue (or topic for that matter). Lookup the connection factory, lookup the destination (a queue), create a connection, create a session, create a producer (sender in this case) and send. If you are in a tx session, then commit, else close everything and g

[JBoss-user] How to send message to MDB

2001-07-13 Thread Rajesh Vilasrao Bhujbal
Hi, I developed a MDB called TestMDB. This MDB uses queue. I want to send message to this MDB through java client running on different machine. how to do it? I have already seen example in jboss manual, but it doesn't give code/method for accessing MDB through client.   my question is how