Package org.jboss.mx.remote.connector.socket

Examples of org.jboss.mx.remote.connector.socket.SocketConnector$Connection


            org.apache.log4j.BasicConfigurator.configure();
            org.apache.log4j.Category.getRoot().setLevel(org.apache.log4j.Level.DEBUG);
            UnicastDetector detector=new UnicastDetector();
            detector.setPublishPort(-1);
            detector.createService();
            SocketConnector connector=new SocketConnector();
            //detector.addLocation(InetAddress.getLocalHost(),2105);
            //detector.addLocation(InetAddress.getLocalHost(),2102);
            MBeanServer server=MBeanServerFactory.createMBeanServer();
            server.registerMBean(connector,new ObjectName("jmx.remoting:type=Connector,transport=socket"));
            server.registerMBean(detector,new ObjectName("jmx.remoting:type=Detector,transport=unicast"));
            connector.start();
            detector.start();
        }
        catch (Exception ex)
        {
            ex.printStackTrace();
View Full Code Here


    {
        System.out.println("Testing JMX Remoting Concurrency ...");
        MBeanServer server = MBeanServerFactory.createMBeanServer();

        // create a local connector
        SocketConnector connector=new SocketConnector();
        server.registerMBean(connector,new ObjectName("jmx.remoting:type=Connector,transport=socket"));
        connector.start();

        // create a remote connector looped-back to ourself
        MBeanServerConnection conn=new MBeanServerConnection("socket",JMXUtil.getServerId(server),InstanceID.getID(server),InetAddress.getLocalHost(),connector.getTransportProperties());
        MBeanServer remoteserver=ConnectorFactory.createConnector(conn);

        Thread threads[]=new Thread[THREADS];

        long start = System.currentTimeMillis();
        for (int c=0;c<THREADS;c++)
        {
            threads[c]=new TestThread(remoteserver,ITERATIONS);
            threads[c].start();
        }
        for (int c=0;c<THREADS;c++)
        {
            threads[c].join();
        }
        System.out.println(THREADS+" threads over "+ITERATIONS+" iterations took: "+(System.currentTimeMillis()-start)+" ms");

        ConnectorFactory.destroyConnector(JMXUtil.getServerId(remoteserver));
        server.unregisterMBean(new ObjectName("jmx.remoting:type=Connector,transport=socket"));

        connector.stop();
        connector.destroy();

        connector = null;
        server = null;
    }
View Full Code Here

    {
        System.out.println("Testing JMX Remoting Performance ...");
        MBeanServer server=MBeanServerFactory.createMBeanServer();

        // create a local connector
        SocketConnector connector=new SocketConnector();
        server.registerMBean(connector,new ObjectName("jmx.remoting:type=Connector,transport=socket"));
        connector.start();

        // create a remote connector looped-back to ourself
        MBeanServerConnection conn=new MBeanServerConnection("socket",JMXUtil.getServerId(server),InstanceID.getID(server),InetAddress.getLocalHost(),connector.getTransportProperties());
        MBeanServer remoteserver=ConnectorFactory.createConnector(conn);

        TestThread local=new TestThread("Local MBeanServer executed "+COUNT+" iterations ...",server,COUNT);
        TestThread remote=new TestThread("Remote MBeanServer executed "+COUNT+" iterations ...",remoteserver,COUNT);
        local.start();
        remote.start();

        local.join(1000L);
        remote.join(120000L);

        ConnectorFactory.destroyConnector(JMXUtil.getServerId(remoteserver));
        server.unregisterMBean(new ObjectName("jmx.remoting:type=Connector,transport=socket"));
        connector.stop();
        connector.destroy();

        server=null;
        local = null;
        remote = null;
        connector = null;
View Full Code Here

        {
            org.apache.log4j.BasicConfigurator.configure();
            org.apache.log4j.Category.getRoot().setLevel(org.apache.log4j.Level.INFO);
            MBeanServer server = MBeanServerFactory.createMBeanServer();

            SocketConnector connector = new SocketConnector();
            server.registerMBean(connector, new ObjectName("jmx.remoting:type=Connector,transport=socket"));
            connector.start();

            MulticastDetector detector = new MulticastDetector();
            server.registerMBean(detector, new ObjectName("jmx.remoting:type=Detector,transport=multicast"));
            detector.start();
View Full Code Here

            LocalTest testMBean = new LocalTest();
            server.registerMBean(testMBean,new ObjectName("test:type=LocalTest"));

            System.err.println("LocalTest registered: "+testMBean);

            SocketConnector connector = new SocketConnector();
            server.registerMBean(connector, new ObjectName("jmx.remoting:type=Connector,transport=socket"));
            connector.start();
            System.err.println("Starting SocketConnector");

            MulticastDetector detector = new MulticastDetector();
            server.registerMBean(detector, new ObjectName("jmx.remoting:type=Detector,transport=multicast"));
            detector.start();
View Full Code Here

    private void connectionClosed() {
        if(! reconnect.get()) {
            return; // Nothing to do
        }
        // Wait until the connection is closed before reconnecting
        final Connection connection = this.connection;
        if(connection != null) {
            if(channel == null) {
                connection.closeAsync();
            }
        } else {
            HostControllerLogger.ROOT_LOGGER.lostRemoteDomainConnection();
            executorService.execute(new Runnable() {
                @Override
View Full Code Here

     *
     * @param connectionURI the new connection URI
     */
    protected void reconfigure(final URI connectionURI) {
        configuration.setUri(connectionURI);
        final Connection connection = this.connection;
        if(connection != null) {
            connection.closeAsync();
        }
    }
View Full Code Here

            builder.set(Options.SASL_MECHANISMS, Sequence.of("JBOSS-LOCAL-USER"));
        }

        final IoFuture<Connection> futureConnection = endpoint.connect(connectionURI, builder.getMap(), new AuthenticationCallbackHandler(username, password));
        // wait for the connection to be established
        final Connection connection = IoFutureHelper.get(futureConnection, 5000, TimeUnit.MILLISECONDS);
        // create a remoting EJB receiver for this connection
        final EJBReceiver receiver = new RemotingConnectionEJBReceiver(connection);
        // associate it with the client context
        EJBClientContext context = EJBClientContext.create();
        context.registerEJBReceiver(receiver);
View Full Code Here

        return this.nodeName;
    }

    @Override
    public EJBReceiver getEJBReceiver() {
        Connection connection;
        final ReconnectHandler reconnectHandler;
        OptionMap channelCreationOptions = OptionMap.EMPTY;
        final EJBClientConfiguration ejbClientConfiguration = this.clusterContext.getEJBClientContext().getEJBClientConfiguration();
        try {
            // if the client configuration is available create the connection using those configs
View Full Code Here

            this.connectionTimeout = connectionTimeoutInMillis;
        }

        @Override
        public void reconnect() throws IOException {
            Connection connection = null;
            try {
                final IoFuture<Connection> futureConnection = NetworkUtil.connect(endpoint, destinationHost, destinationPort, null, connectionCreationOptions, callbackHandler, null);
                connection = IoFutureHelper.get(futureConnection, connectionTimeout, TimeUnit.MILLISECONDS);
                logger.debug("Successfully reconnected to connection " + connection);
View Full Code Here

TOP

Related Classes of org.jboss.mx.remote.connector.socket.SocketConnector$Connection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.