Package org.jboss.as.quickstarts.appclient.acc.client.interceptor

Examples of org.jboss.as.quickstarts.appclient.acc.client.interceptor.ClientInterceptor


        if(!Boolean.TRUE.equals(isInAppclient)) {
            throw new RuntimeException("Not running in an Application Client Container");
        }

        // add an client side interceptor to provide the client machine name to the server application
        EJBClientContext.getCurrent().registerInterceptor(0, new ClientInterceptor());
        LOG.info(slsb.getGreeting());
        slsb.invokeWithClientContext();
    }
View Full Code Here


        // Show that the client is started with arguments at command line
        LOG.info("Main started " + ( args.length != 0 ? "with" : "without") + " arguments");
        if(args.length > 0) LOG.info("            " + Arrays.asList(args));

        // add an client side interceptor to provide the client machine name to the server application
        EJBClientContext.getCurrent().registerInterceptor(0, new ClientInterceptor());
        LOG.info(slsb.getGreeting());
        slsb.invokeWithClientContext();
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.quickstarts.appclient.acc.client.interceptor.ClientInterceptor

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.