|        | |||||
|  | |||||
| function | HttpConnectionSendResponse | ||||
| Related Syntax | Other Library Functions | 
| Library: HTTP Include: omtcp.xin, omhttp.xin | 
  define function HttpConnectionSendResponse
                 value   TCPConnection Connection
                 send   modifiable stream Response
      timeout     value       counter        Timeout optional initial {10000}
This function constructs an HTTP message from an HTTP response object and returns it to the client from the server over the specified connection.
Input arguments:
Example:
; HttpConnectionSendResponse local HttpResponse my-Response set my-Response^"entity-body" to file "default.htm" HttpConnectionSendResponse client-Connection send my-response timeout 45000
| ---- |