HTTP error code 505

前端 未结 2 631
夕颜
夕颜 2020-12-30 08:07

I have already googled that 505 is \"HTTP Version not supported\", but still can not figure out my problem. I have a web application with Tomcat,server side with self-signed

2条回答
  •  一生所求
    2020-12-30 08:55

    Clearly not the answer for the OP, but I ran into this error message tonight while trying to debug a SOLR server.

    My problem wasn't an extra space after the HTTP version.

    my client application was logging the bad URL, which i blithely copied & pasted into a telnet connection to the SOLR tomcat's http port. My log message showed the URL without properly %20-encoding a space in the URL. I got the bad HTTP version error, presumably because it was interpreting everything after the space in the URL as my HTTP version.

    thanks to http://java.dzone.com/news/solr-tomcat-and-http11-505 for the hint.

提交回复
热议问题