I get the following error output from an RMI Remoting client. It am using the AOP remoting framework and the remote calls seem to work fine.
org.jboss.remoting.transport.rmi.RMIServerInvoker_Stub[RemoteStub [ref: [endpoint:[192.168.0.151:8085](remote),objID:[c68c3:103b8014944:
I instantiated the server programmatically using the following:
InvokerLocator locator = new InvokerLocator("rmi://localhost:8085");
Connector connector = new Connector();
connector.setInvokerLocator(locator.getLocatorURI());
connector.start();
connector.addInvocationHandler("AOP", new AOPRemotingInvocationHandler());
Any help would be appreciated. This is my first test at using AOP Remoting.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3876894#3876894
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3876894
|