zoukankan      html  css  js  c++  java
  • How to fix “HTTP Status Code 505 – HTTP Version Not Supported” error?--转

    http://dotnetstock.com/technical/http-status-code-505-http-version-not-supported/

    The reason for the error 505 is, the Web server does not support, or refuses to support, the HTTP protocol version specified by the client  in the HTTP request data stream sent to the server.Here let us see How to fix “HTTP Status Code 505 – HTTP Version Not Supported” error?
    Why this error:

    There will be mainly 3 reason for this error.

    1. The request you are sending to the server from the client browser, it is not in the form which can be understand by the server.
    2. A third-party product is interfering with Internet Explorer.
    3. The HTTP 1.1 setting is enabled.

    How to fix the error 505- HTTP Version Not Supported?

    As a first step you just check the same url from an updated browser.

    verify the HTTP request, whether this request contain any kind of junk character is there in your request, or any white spaces are creating the issue. To overcome this white space issue you can use the urlencode() function before calling the server.

    If the issue is happening only in you browser, try this.

    1. In Internet Explorer, click Internet Options on the Tools menu.
    2. In the Internet Options dialog box, click the Advanced tab.
    3. Click to clear the HTTP 1.1 check box, and then click OK.

    4. Test to determine if the issue is resolved. If the issue is resolved, do not complete the remaining steps. If the issue is not resolved, go to the next step.
    5. In Internet Explorer, click Internet Options on the Tools menu.
    6. In the Internet Options dialog box, click the Advanced tab.
    7. Click to clear the Show friendly HTTP error messages check box.
    8. Try to view a Web page to reproduce the error message and to receive a new, more descriptive error message. This new error message may be similar to the following:
    HTTP version not supported by program name.
    Note the name of the program in this new error message.
    9. The program name that you noted in step 8 may be the cause of this issue. Either remove this program, or contact the manufacturer of the program to inquire about the availability of a fix for this issue.

  • 相关阅读:
    PL/SQL Developer连接Oracle
    Oracle 11g 监听命令
    Oracle 11g的登陆问题
    PL/SQL Developer 配置和使用
    KMP应用求两个字符串的最长公共子串
    msc pool概念
    nformix调优之执行计划取得
    lsof 与fuser
    informix onstat命令收集
    各类系统上查看占cpu最多的进程
  • 原文地址:https://www.cnblogs.com/davidwang456/p/8297439.html
Copyright © 2011-2022 走看看