|  | 
 | ||||
|        | |||||
|  | ||||||
| Related Topics | Other Library Functions | |||||
| function | HttpObjectGetStatusReport | 
| Library: HTTP support (OMHTTP) Include: omhttp.xin | 
define function HttpObjectGetStatusReport
         read-only  stream HttpObject
   into  modifiable stream Report
Argument definitions
Use HttpObjectGetStatusReport to write to the "Report" stream argument the descriptions of any errors encountered during the last function using the specified object.
You must include the following line at the beginning of your OmniMark program:
include "omhttp.xin"
 If no errors are encountered, "Report" will contain no items. HttpObjectGetStatusReport is used in either client or server programs.
  ; HttpObjectGetStatusReport
  include "omhttp.xin"
  
  process
  
     local HttpRequest my-Request
     local HttpResponse my-Response
     local stream request-Report variable
     local stream response-Report variable
  
     HttpObjectGetStatusReport my-Request into request-Report
     HttpObjectGetStatusReport my-Response into response-Report
  
     repeat over request-Report
        output "%g(request-Report)%n"
     again
     repeat over response-Report
        output "%g(response-Report)%n"
  again
Copyright © Stilo International plc, 1988-2010.