HttpObjectIsInError

function

Library: HTTP support (OMHTTP)
Include: omhttp.xin

Returns: true if an error report is available, false otherwise


Declaration
define switch function HttpObjectIsInError
   read-only stream HttpObject

Argument definitions

HttpObject
is an HTTP request or HTTP response object (input argument).


Purpose

Use HttpObjectIsInError to determine if an error was encountered during the last function called with the specified HTTP object. It can occur in either a client or a server program.

Requirements

You must include the following line at the beginning of your OmniMark program:

  include "omhttp.xin"

Example


  ; HttpObjectIsInError
  include "omhttp.xin"
  
  process
  
     local HttpRequest my-Request
     local HttpResponse my-Response
  
     output "HTTP Error Detected"
        when HttpObjectIsInError my-Request or HttpObjectIsInError my-Response

Related Topics