cl1 = new URLClassLoader(new URL[] { url }, cl);
cl2 = new URLClassLoader(new URL[] { url }, cl);
System.out.println("================================================");
URI bindURI = new URI("async://0.0.0.0:0");
TransportFactory tf = TransportFactory.getTransportFactory(bindURI);
server = tf.createSever();
InterceptorRegistryRouter irr = new InterceptorRegistryRouter();
irr.doStart();
server.bind(bindURI,irr);
connectURI = server.getClientConnectURI();
server.start();