Fixed bugs from last commit.
This commit is contained in:
@@ -7,6 +7,7 @@ import javax.net.ssl.SSLContext;
|
||||
import com.foundation.web.WebApplication.ISslMapping;
|
||||
import com.foundation.web.WebOptions.SslMapping;
|
||||
import com.foundation.web.interfaces.ICachedResource;
|
||||
import com.foundation.web.interfaces.IConnectionContext;
|
||||
import com.foundation.web.interfaces.IContent;
|
||||
import com.foundation.web.interfaces.IMimeTypeProvider;
|
||||
import com.foundation.web.interfaces.IPassThroughDomain;
|
||||
@@ -262,9 +263,9 @@ public ISession getSession(String sessionId) {
|
||||
return null;
|
||||
}//getSession()//
|
||||
/* (non-Javadoc)
|
||||
* @see com.foundation.web.interfaces.IWebApplication#processRequest(com.foundation.web.interfaces.IRequest, com.foundation.web.interfaces.IResponse, com.foundation.web.interfaces.ISession, boolean, boolean)
|
||||
* @see com.foundation.web.interfaces.IWebApplication#processRequest(com.foundation.web.interfaces.IRequest, com.foundation.web.interfaces.IResponse, com.foundation.web.interfaces.ISession, boolean, boolean, com.foundation.web.interfaces.IConnectionContext)
|
||||
*/
|
||||
public void processRequest(IRequest request, IResponse response, ISession session, boolean isSecure, boolean clientHadBadSession) {
|
||||
public void processRequest(IRequest request, IResponse response, ISession session, boolean isSecure, boolean clientHadBadSession, IConnectionContext connectionContext) {
|
||||
response.setForwardUri("https://" + request.getHost() + request.getUri() + (request.getParameterString() != null ? request.getParameterString() : ""));
|
||||
}//processRequest()//
|
||||
/* (non-Javadoc)
|
||||
|
||||
Reference in New Issue
Block a user