`

HTTP错误请求代码一览[http,response,error code]

阅读更多
static   int   SC_ACCEPTED   
                      Status   code   (202)   indicating   that   a   request   was   accepted   for   processing,   but   was   not   completed.   
  
  static   int   SC_BAD_GATEWAY   
                      Status   code   (502)   indicating   that   the   HTTP   server   received   an   invalid   response   from   a   server   it   consulted   when   acting   as   a   proxy   or   gateway.   
  
  static   int   SC_BAD_REQUEST   
                      Status   code   (400)   indicating   the   request   sent   by   the   client   was   syntactically   incorrect.   
  
  static   int   SC_CONFLICT   
                      Status   code   (409)   indicating   that   the   request   could   not   be   completed   due   to   a   conflict   with   the   current   state   of   the   resource.   
  
  static   int   SC_CONTINUE   
                      Status   code   (100)   indicating   the   client   can   continue.   
  
  static   int   SC_CREATED   
                      Status   code   (201)   indicating   the   request   succeeded   and   created   a   new   resource   on   the   server.   
  
  static   int   SC_FORBIDDEN   
                      Status   code   (403)   indicating   the   server   understood   the   request   but   refused   to   fulfill   it.   
  
  static   int   SC_GATEWAY_TIMEOUT   
                      Status   code   (504)   indicating   that   the   server   did   not   receive   a   timely   response   from   the   upstream   server   while   acting   as   a   gateway   or   proxy.   
  
  static   int   SC_GONE   
                      Status   code   (410)   indicating   that   the   resource   is   no   longer   available   at   the   server   and   no   forwarding   address   is   known.   
  
  static   int   SC_HTTP_VERSION_NOT_SUPPORTED   
                      Status   code   (505)   indicating   that   the   server   does   not   support   or   refuses   to   support   the   HTTP   protocol   version   that   was   used   in   the   request   message.   
  
  static   int   SC_INTERNAL_SERVER_ERROR   
                      Status   code   (500)   indicating   an   error   inside   the   HTTP   server   which   prevented   it   from   fulfilling   the   request.   
  
  static   int   SC_LENGTH_REQUIRED   
                      Status   code   (411)   indicating   that   the   request   cannot   be   handled   without   a   defined   Content-Length.   
  
  static   int   SC_METHOD_NOT_ALLOWED   
                      Status   code   (405)   indicating   that   the   method   specified   in   the   Request-Line   is   not   allowed   for   the   resource   identified   by   the   Request-URI.   
  
  static   int   SC_MOVED_PERMANENTLY   
                      Status   code   (301)   indicating   that   the   resource   has   permanently   moved   to   a   new   location,   and   that   future   references   should   use   a   new   URI   with   their   requests.   
  
  static   int   SC_MOVED_TEMPORARILY   
                      Status   code   (302)   indicating   that   the   resource   has   temporarily   moved   to   another   location,   but   that   future   references   should   still   use   the   original   URI   to   access   the   resource.   
  
  static   int   SC_MULTIPLE_CHOICES   
                      Status   code   (300)   indicating   that   the   requested   resource   corresponds   to   any   one   of   a   set   of   representations,   each   with   its   own   specific   location.   
  
  static   int   SC_NO_CONTENT   
                      Status   code   (204)   indicating   that   the   request   succeeded   but   that   there   was   no   new   information   to   return.   
  
  static   int   SC_NON_AUTHORITATIVE_INFORMATION   
                      Status   code   (203)   indicating   that   the   meta   information   presented   by   the   client   did   not   originate   from   the   server.   
  
  static   int   SC_NOT_ACCEPTABLE   
                      Status   code   (406)   indicating   that   the   resource   identified   by   the   request   is   only   capable   of   generating   response   entities   which   have   content   characteristics   not   acceptable   according   to   the   accept   headerssent   in   the   request.   
  
  static   int   SC_NOT_FOUND   
                      Status   code   (404)   indicating   that   the   requested   resource   is   not   available.   
  
  static   int   SC_NOT_IMPLEMENTED   
                      Status   code   (501)   indicating   the   HTTP   server   does   not   support   the   functionality   needed   to   fulfill   the   request.   
  
  static   int   SC_NOT_MODIFIED   
                      Status   code   (304)   indicating   that   a   conditional   GET   operation   found   that   the   resource   was   available   and   not   modified.   
  
  static   int   SC_OK   
                      Status   code   (200)   indicating   the   request   succeeded   normally.   
  
  static   int   SC_PARTIAL_CONTENT   
                      Status   code   (206)   indicating   that   the   server   has   fulfilled   the   partial   GET   request   for   the   resource.   
  
  static   int   SC_PAYMENT_REQUIRED   
                      Status   code   (402)   reserved   for   future   use.   
  
  static   int   SC_PRECONDITION_FAILED   
                      Status   code   (412)   indicating   that   the   precondition   given   in   one   or   more   of   the   request-header   fields   evaluated   to   false   when   it   was   tested   on   the   server.   
  
  static   int   SC_PROXY_AUTHENTICATION_REQUIRED   
                      Status   code   (407)   indicating   that   the   client   MUST   first   authenticate   itself   with   the   proxy.   
  
  static   int   SC_REQUEST_ENTITY_TOO_LARGE   
                      Status   code   (413)   indicating   that   the   server   is   refusing   to   process   the   request   because   the   request   entity   is   larger   than   the   server   is   willing   or   able   to   process.   
  
  static   int   SC_REQUEST_TIMEOUT   
                      Status   code   (408)   indicating   that   the   client   did   not   produce   a   requestwithin   the   time   that   the   server   was   prepared   to   wait.   
  
  static   int   SC_REQUEST_URI_TOO_LONG   
                      Status   code   (414)   indicating   that   the   server   is   refusing   to   service   the   request   because   the   Request-URI   is   longer   than   the   server   is   willing   to   interpret.   
  
  static   int   SC_RESET_CONTENT   
                      Status   code   (205)   indicating   that   the   agent   SHOULD   reset   the   document   view   which   caused   the   request   to   be   sent.   
  
  static   int   SC_SEE_OTHER   
                      Status   code   (303)   indicating   that   the   response   to   the   request   can   be   found   under   a   different   URI.   
  
  static   int   SC_SERVICE_UNAVAILABLE   
                      Status   code   (503)   indicating   that   the   HTTP   server   is   temporarily   overloaded,   and   unable   to   handle   the   request.   
  
  static   int   SC_SWITCHING_PROTOCOLS   
                      Status   code   (101)   indicating   the   server   is   switching   protocols   according   to   Upgrade   header.   
  
  static   int   SC_UNAUTHORIZED   
                      Status   code   (401)   indicating   that   the   request   requires   HTTP   authentication.   
  
  static   int   SC_UNSUPPORTED_MEDIA_TYPE   
                      Status   code   (415)   indicating   that   the   server   is   refusing   to   service   the   request   because   the   entity   of   the   request   is   in   a   format   not   supported   by   the   requested   resource   for   the   requested   method.   
  
  static   int   SC_USE_PROXY   
                      Status   code   (305)   indicating   that   the   requested   resource   MUST   be   accessed   through   the   proxy   given   by   the   Location   field.

文章转自http://topic.csdn.net/t/20010323/13/87940.html
分享到:
评论

相关推荐

    LDAP error code 一览表

    ### LDAP错误代码一览表 #### 引言 在日常的IT运维工作中,LDAP(轻量目录访问协议)作为一项常用的身份认证与管理技术,在企业级应用中占据着重要的位置。然而,在部署、维护或者调试LDAP服务的过程中,难免会...

    三菱PLC错误代码一览及对策.doc

    "三菱PLC错误代码一览及对策" 三菱PLC是日本三菱电机株式会社生产的一种可编程逻辑控制器(Programmable Logic Controller),广泛应用于工业自动化领域。三菱PLC错误代码一览及对策是该PLC系列的错误代码大全,...

    web错误Code一览

    这些错误信息通常被称为HTTP状态码,它们是由Web服务器返回给客户端(如浏览器)的一系列数字代码,用于指示请求的状态。本文将深入探讨一些常见的HTTP错误代码,包括但不限于400、401、403、404等,以帮助读者更好...

    oracle错误一览表.txt

    oracle 错误一览表 oracle error-code

    G代码一览表

    G代码一览表 G代码是一种广泛应用于计算机数控系统(CNC)中的编程语言,用于控制机床的运动和加工过程。G代码是一种标准化的语言,能够在不同的CNC系统中通用。在本文中,我们将对G代码的基本概念、G代码的分类、M...

    oracle 错误代码一览表

    Oracle 错误代码一览表 Oracle 错误代码是 Oracle 数据库管理系统中的一种错误处理机制。当出现错误时,Oracle 数据库会生成一个独特的错误代码,以便开发人员和管理员可以快速识别和解决问题。 在 Oracle 错误...

    电子白板错误代码一览表

    松下电子白板错误代码一览表 如果你的电子白板出问题了,查查看,是什么地方的问题.

    Active Directory,AD, LDAP+error+code+一览表

    2. **LDAP_OPERATIONS_ERROR (1)**:操作错误,通常指服务器无法执行请求的操作。 3. **LDAP_PROTOCOL_ERROR (2)**:协议错误,可能是由于客户端发送的数据不符合LDAP协议规范。 4. **LDAP_TIMELIMIT_EXCEEDED (3)**...

    WINDOWS 蓝屏错误代码说明一览表

    58. 错误代码0x003A:指定的服务器无法执行请求的操作 - 服务器问题。 59. 错误代码0x003B:网络发生意外错误 - 网络通信错误。 60. 错误代码0x003C:远程适配器不兼容 - 网络设备不匹配。 61. 错误代码0x003D:...

    工商银行ICBC B2C网银支付错误代码大全

    "工商银行ICBC B2C网银支付错误代码大全" 本资源摘要信息提供了工商银行ICBC B2C网银支付错误代码大全,涵盖了93002885至93002976共93个错误代码,详细说明每个错误代码的含义和可能的解决方法。这些错误代码涵盖了...

    国家代码一览表

    国家代码一览表

    Windows蓝屏错误代码说明一览

    Windows 蓝屏错误代码说明一览 Windows 蓝屏错误代码是 Windows 操作系统中的一种特殊错误代码,用于指示系统崩溃或意外停止的原因。这些错误代码通常是十六进制数字,前缀为 "0x",后跟四位数字。了解这些错误代码...

    Wincall错误代码一览表.docx

    《Wincall错误代码一览表》 在使用网络电话呼叫系统Wincall时,可能会遇到各种错误情况,这些错误通常会以特定的错误代码形式反馈给用户。了解这些错误代码的含义有助于快速定位并解决问题。以下是一些常见的...

    Windows蓝屏画面错误代码说明一览表

    Windows蓝屏画面错误代码说明一览表

    windows 蓝屏错误代码说明一览表.rar

    这个压缩包文件"windows 蓝屏错误代码说明一览表.rar"包含了关于Windows蓝屏错误代码的详细解释,这对于诊断和解决系统问题非常有帮助。 Windows蓝屏错误代码通常由四个部分组成:一个前缀(如"0x")、三个八进制...

    Oracle错误代码一览表

    ### Oracle错误代码详解 在处理Oracle数据库时,遇到错误是在所难免的,而理解这些错误代码的意义对于快速定位问题和修复至关重要。以下是对部分Oracle错误代码的详细解析,旨在帮助数据库管理员和开发人员更好地...

    关于HTTP及XMLHTTP状态代码一览.txt

    ### 关于HTTP及XMLHTTP状态代码一览 #### HTTP 1.1 状态码解析 HTTP协议作为互联网上应用最广泛的应用层协议之一,在其版本HTTP 1.1中定义了一系列的状态码来帮助客户端理解服务器端返回的信息。这些状态码分为五...

    三菱故障代码一览表.pdf

    "三菱故障代码一览表.pdf" 本资源摘要信息对应的知识点为三菱空调器的故障代码一览表,涵盖了多种型号的故障代码,如KX4、FX、LX、单元机系列等。该资源提供了详细的故障代码列表,包括代码、原因、解决方法等信息...

Global site tag (gtag.js) - Google Analytics