Beispiel #1
0
 public ProxyRequestHandler(HttpStack httpStack, String localResource, Boolean proxyingEnabled)
 {
     _httpStack       = httpStack;
     _localResource   = localResource;
     _proxyingEnabled = proxyingEnabled;
     _uri             = "/" + localResource + "/";
 }
Beispiel #2
0
 public ProxyHttpServer(Int32 httpPort)
 {
     _httpStack = new HttpStack(httpPort);
     _httpStack.RequestHandler = HandleRequest;
     _proxyEndPoint            = new ProxyEndPoint(this);
 }
Beispiel #3
0
 public ProxyHttpServer(Int32 httpPort)
 {
     _httpStack = new HttpStack(httpPort);
     _httpStack.RequestHandler = HandleRequest;
 }
Beispiel #4
0
 public ProxyHttpServer(Int32 httpPort)
 {
     _httpStack = new HttpStack(httpPort);
     _httpStack.RequestHandler = HandleRequest;
     _proxyEndPoint = new ProxyEndPoint(this);
 }
Beispiel #5
0
 public ProxyHttpServer(Int32 httpPort)
 {
     _httpStack = new HttpStack(httpPort);
     _httpStack.RequestHandler = HandleRequest;
 }
Beispiel #6
0
 public ProxyRequestHandler(HttpStack httpStack, String localResource, Boolean proxyingEnabled)
 {
     _httpStack = httpStack;
     _localResource = localResource;
     _proxyingEnabled = proxyingEnabled;
     _uri = "/" + localResource + "/";
 }