You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was being followed in handleProxyPostOrPut but for Get request line was ended with \n
handleProxyRequest function line number 385
remotePrintWriter.print(method + " " + uri + " HTTP/1.0\n");
Because of this Get request was not working on some servers in proxy mode
As per HTTP 1.0 standard, request lines should end with CR LF i.e. \r\n
https://www.w3.org/Protocols/HTTP/1.0/spec.html#Request-Line
Request-Line = Method SP Request-URI SP HTTP-Version CRLF
This was being followed in handleProxyPostOrPut but for Get request line was ended with \n
handleProxyRequest function line number 385
remotePrintWriter.print(method + " " + uri + " HTTP/1.0\n");
Because of this Get request was not working on some servers in proxy mode
Created a pull request to fix this issue #301
The text was updated successfully, but these errors were encountered: