ThoriumServicesClient(Config.Config config)
        {
            dynamic c = config;

            string host = c.host;
            int    port = c.remotePort;

            invoker = new HttpServiceInvoker(host, port);
        }
 public ThoriumServicesClient(string host = "localhost", int port = 8080)
 {
     this.host = host;
     invoker   = new HttpServiceInvoker(host, port);
 }