Package org.xmlBlaster.util.protocol.socket

Examples of org.xmlBlaster.util.protocol.socket.SocketUrl


            // Start an 'xmlrpc webserver' if desired
            int numTries = 20; // start looking for a free port, begin with default port -dispatch/callback/plugin/xmlrpc/port <port>
            for (int ii=0; ii<numTries; ii++) {
               try {
                  // webServer = new WebServer(xmlRpcUrlCallback.getPort(), xmlRpcUrlCallback.getInetAddress());
                  SocketUrl socketUrl = new SocketUrl(glob, xmlRpcUrlCallback.getHostname(), xmlRpcUrlCallback.getPort());
                  webServer = new XblWebServer(xmlRpcUrlCallback, socketUrl, callbackAddress);
                  break;
               }
               /*
               catch(java.net.BindException e) {
View Full Code Here

TOP

Related Classes of org.xmlBlaster.util.protocol.socket.SocketUrl

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.