myConnection.Connect(); // cross our fingers and connect
Logging.info("STARTUP", "Connection attempted...");
if (Configuration.Config.get("rpcport").equals("any"))
myConf.RPCServer = new WebServer(8081);
else
myConf.RPCServer = new WebServer(Integer.parseInt(Configuration.Config.get("rpcport")), inetT);
myConf.RPCServer.addHandler("ecks", new RPCHandler());
myConf.RPCServer.start();
Logging.info("STARTUP", "XMLRPC Started...");