[JBoss-dev] [JBoss Remoting] - Re: Sample JSR160 code for Jboss?

2004-08-03 Thread telrod
There currently is not support for the JSR160 specification. There is, however, support for remote JMX, but is not compliant with JSR 160. What tests are you running? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3844047#3844047 Reply to the post : http://

[JBoss-dev] [JBoss Remoting] - Re: Sample JSR160 code for Jboss?

2004-08-04 Thread abalan
Using the JMX remote api: I am trying toconnect to a Jboss Server via RMI using the following code: JMXServiceURL url = new JMXServiceURL("service:jmx:rmi:///jndi/rmi://testhost1:1098/";); JMXConnector jmxc = JMXConnectorFactory.connect(url, null); and get the following error: jav

[JBoss-dev] [JBoss Remoting] - Re: Sample JSR160 code for Jboss?

2004-08-04 Thread telrod
You are using the JSR 160 APIs, which we don't yet support. Can find an example of how to do the same thing in PingPongTest (will have to get the source). Is in jmx-remoting\src\test\jboss\test\mx\remoting\pingpong\PingPongTest.java. In this example, it explicitly sets the handler. Can go t