public ServiceHttpProxy(HttpDispatcher httpDispatcher)
 {
     _httpDispatcher = httpDispatcher;
     _responseHandler = new BrokerMessageResponseHandler();
 }
 public ServiceHttpProxy(HttpDispatcher httpDispatcher, Authenticator authenticator)
 {
     _httpDispatcher = httpDispatcher;
     _authenticator = authenticator;
     _responseHandler = new BrokerMessageResponseHandler();
 }