Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The WebException is thrown whenever the web request cannot be executed successfully. For e.g 400 and 500 series of responses.</p> <p>WebExcpetion has a property named Status which will return the actual status of the response i.e 500 (Internal Server Error).</p> <p>Here is the list of all response codes: <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html" rel="nofollow noreferrer">http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html</a></p> <p>===============================================================================</p> <p>In general:</p> <p>1xx series of code = provisional response. These are not error codes. For e.g the 100 Continue response which tells that client should continue with its request. Usually WebRequest will not return such response, and handle it itself by sending the rest of request.</p> <p>2xx series of code = Request was successful received, understood and accepted. These are not error codes. For e.g 200 OK</p> <p>3xx series of code = Further action needs to be taken. Generally this is not error code (usually its for re-direction) for e.g '301 Moved Permanently', which means that the resource being request is moved to a new location, so any further requests by the client should be on the new URL provided in the response.</p> <p>OR '305 Use Proxy', which according to you results in an Exception.</p> <p>4xx series of code = Client errors. These can result in exception. for e.g '400 Bad Request' or '401 Unauthorized'</p> <p>5xx series of code = Server errors. These can result in exception. for e.g '500 Internal Server Error' or '504 Gateway Timeout'</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload