private void Init(Uri uri, HttpAuthentication auth)
 {
     this.communicator = new HttpCommunicator(uri, auth);
     datastore         = new HttpRemoteDataStore(this.communicator);
 }
 /// <summary>
 /// Constructor with existing communicator
 /// </summary>
 /// <param name="communicator">Communicator</param>
 public HttpRemoteEngineControl(HttpCommunicator communicator)
 {
     this.communicator = communicator;
     datastore         = new HttpRemoteDataStore(this.communicator);
 }