Package example.interfaces.hello

Examples of example.interfaces.hello.HelloIF.sayHello()


           
            HelloIF stub = (HelloIF) registry.lookup(HelloIF.servicename);
        logger.info("Found '" + HelloIF.servicename + "' in registry");
           
        logger.trace("Calling sayhello()");
            String response = stub.sayHello();
            logger.info("Response: " + response);
        }
    catch (java.security.AccessControlException e) {
      logger.error("Could not connect to registry: " + e.getMessage());     
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.