log.info("Starting remoting server with locator uri of: " + locatorURI);
HashMap serverConfig = new HashMap();
serverConfig.put(InvokerLocator.FORCE_REMOTE, "true");
serverConfig.put(Bisocket.IS_CALLBACK_SERVER, "false");
Connector connector = new Connector(serverLocator, serverConfig);
connector.create();
SampleInvocationHandler invocationHandler = new SampleInvocationHandler();
connector.addInvocationHandler("sample", invocationHandler);
connector.start();
log.info("Started remoting server with locator uri of: " + locatorURI);