I would like to make a JavaSE client send messages to an out-of-the-box instance of JBoss 5.0.0 Beta3. All of my attempts have been thwarted by classpath problems.
Ideally, I'd like to get a maven pom.xml file to include everything I need, but I'd be happy with links to the required jar files. (Note: I've already seen [url=http://labs.jboss.com/file-access/default/members/jbossmessaging/freezone/docs/userguide-1.4.0.SP2/html/installation.html] the messaging client setup page [/url] , but it lacks the version information I need) For reference, here's my pom.xml right now: | <dependency> | <artifactId>jboss-remoting</artifactId> | <groupId>jboss.remoting</groupId> | <version>2.2.2.SP4</version> | <scope>system</scope> | <systemPath>C:/Development/jboss-remoting.jar</systemPath> | </dependency> | | <!-- Taken from the jboss-messaging-1.4.1Beta1 download --> | <dependency> | <artifactId>jboss-messaging-client</artifactId> | <groupId>jboss.messaging</groupId> | <version>1.4.1.Beta1</version> | <scope>system</scope> | <systemPath>C:/Development/jboss-messaging-client.jar</systemPath> | </dependency> | | <!-- Taken from jboss 5.0.0beta3 installation --> | <dependency> | <artifactId>jbossall-client</artifactId> | <groupId>jboss</groupId> | <version>3.2.3</version> | <scope>system</scope> | <systemPath>C:/Development/jbossall-client.jar</systemPath> | </dependency> | | <dependency> | <artifactId>jboss-aop</artifactId> | <groupId>org.jboss.aop</groupId> | <version>2.0.0.CR3</version> | <scope>runtime</scope> | </dependency> | Also note that transitive dependencies bring in trove-2.1.1.jar, javassist-3.6.0.GA.jar, and others. The error I'm getting is: Unable to setup messaging environment org.jboss.jms.exception.MessagingJMSException: Failed to invoke at org.jboss.jms.client.delegate.DelegateSupport.handleThrowable(DelegateSupport.java:271) at ... Caused by: java.lang.IllegalArgumentException: Invalid remoting configuration - do not specify clientMaxPoolSize use JBM_clientMaxPoolSize instead ... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4125716#4125716 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4125716 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
