* So, as of now the best way to send a response is from here.
*/
SSLOutputBuffer outputBuffer = (SSLOutputBuffer) response.getOutputBuffer();
sslErrorBuffer.clear();
MimeHeaders headers = response.getMimeHeaders();
Enumeration names = headers.names();
write(LoadBalancerProxyConstants.HTTP_11, sslErrorBuffer);
write(response.getStatus() + " ", sslErrorBuffer);
write(response.getMessage(), sslErrorBuffer);
write(LoadBalancerProxyConstants.CRLF, sslErrorBuffer);
while (names.hasMoreElements()) {