Package org.apache.commons.discovery

Examples of org.apache.commons.discovery.ServiceDiscovery.findServices()


            name = "jelly." + uri.substring(6);
        }
       
        log.info( "Looking up service name: " + name );
       
        ServiceInfo[] infoArray = discovery.findServices(name);
       
        if ( infoArray != null && infoArray.length > 0 ) {
            for (int i = 0; i < infoArray.length; i++ ) {
                ServiceInfo info = infoArray[i];
                try {               
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.