[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-13 Thread slimamar
Can I manipulate JMS objects with the connector 'InVM' like : javax.jms.Topic, javax.jms.TopicPublisher, javax.jms.TopicSession View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4217837#4217837 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-13 Thread ataylor
what do you mean by manipulate? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4217874#4217874 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4217874 ___ jboss-user mailing list

[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-13 Thread slimamar
I want, for example, create a 'javax.jms.TopicPublisher' instead 'org.jboss.messaging.core.client.ClientProducer' and use it to send (publish) messages in the VM. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4217892#4217892 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-13 Thread ataylor
Ive added a jms invm example in trunk called InVMExample. This should help you out. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4217930#4217930 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4217930

[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-12 Thread slimamar
I've got the file SimpleExample.java and the jboss-messaging-2.0.0.alpha1 jars but apparently these jars are not enough. How can i get the jars corresponding to the trunk ? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4217449#4217449 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-12 Thread jmesnil
1. check out the trunk: svn co http://anonsvn.jboss.org/repos/messaging/trunk 2. build the jars: ant jar 3. all the jars will be in build/jars/ directory View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4217461#4217461 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-12 Thread slimamar
Thank you ! View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4217465#4217465 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4217465 ___ jboss-user mailing list

[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-12 Thread slimamar
Ok, it works fine ! Just a little error in the previous post : It's not | org.jboss.messaging.core.remoting.impl.invm.InVMAcceptor | but | org.jboss.messaging.core.remoting.impl.invm.InVMAcceptorFactory | Thank you ! View the original post :

[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-09 Thread slimamar
You will be able to run JBM2 embedded in your clientVM also. You just need to instantiate a couple of POJOs. There are examples for both scenarios already on trunk, and that will be part of the documentation Can you give me more informations to do this (i haven't found the examples on trunk)

[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-09 Thread ataylor
take a look at SimpleExample but change the transport configuration to use org.jboss.messaging.core.remoting.impl.invm.InVMAcceptor and org.jboss.messaging.core.remoting.impl.invm.InVMConnectorFactory View the original post :

[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-06 Thread gaohoward
Hi, can you give more details about what kind of communications that the two clients make? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4215705#4215705 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4215705

[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-06 Thread slimamar
All types that is publish, send, read .. a message. In fact, my question is : inside a JVM, is it possible to make JMS communications without starting the JBoss server. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4215739#4215739 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-06 Thread gaohoward
So can i have it this way: you want start a JBM server without starting jboss AS, right? Then you can try JBM 2.0. 1.4 doesn't support it. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4215746#4215746 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-06 Thread slimamar
So can i have it this way: you want start a JBM server without starting jboss AS, right? Yes Then you can try JBM 2.0. 1.4 doesn't support it. How can i use JBM 2.0 whithout jboss AS ? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4215752#4215752 Reply to

[jboss-user] [JBoss Messaging] - Re: jms communications in the same jvm in the client side

2009-03-06 Thread clebert.suco...@jboss.com
JBM 2 will be provided as a standalone, and as part of JBAS. You will be able to run JBM2 embedded in your clientVM also. You just need to instantiate a couple of POJOs. There are examples for both scenarios already on trunk, and that will be part of the documentation. View the original