if (Debug.isOn() == true)
httpReq.print();
if (hasPresentationListener() && isPresentationRequest(httpReq)) {
PresentationListener listener = getPresentationListener();
listener.httpRequestRecieved(httpReq);
return;
}
if (httpReq.isGetRequest() == true || httpReq.isHeadRequest() == true) {
httpGetRequestRecieved(httpReq);