llHTTPResponse

From Second Life Wiki
Revision as of 06:13, 6 November 2007 by SiRiS Asturias (talk | contribs) (New page: {{LSL_Function|func_id |mode=request |func=llHTTPResponse |func_sleep=0.2 |func_energy=10.0 |func_desc=Sends a reply to an HTTP request. |sort=HTTPResponse |p1_type=string|p1_name=url|p1_d...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Emblem-important-yellow.png LSL Feature Request
The described function does not exist. This article is a feature request.

Summary

Function: llHTTPResponse( string url, list <span title="HTTP response parameters in the format
[param1, value1, param2, value2, . . . paramN, valueN]" style="border-bottom:1px dotted; cursor:help;">parameters
, string body );
REQUEST Function ID
0.2 Forced Delay
10.0 Energy

Sends a reply to an HTTP request.

• string url A valid HTTP/HTTPS request URL.
• list parameters HTTP response parameters in the format
[param1, value1, param2, value2, . . . paramN, valueN]
• string body Contents of the response.

Caveats

  • This function causes the script to sleep for 0.2 seconds.
All Issues ~ Search JIRA for related Bugs

Examples

default
{
    http_request(string verb, string path_info, list parameters, string body)
    {
        // Loop Back Request Data
        llHTTPResponse(path_info, parameters, body);
    }
}

Notes

This function is used to reply to HTTP requests received via the http_request event.

See Also

Events

•  http_request

Functions

•  llHTTPServerRemove For removing the current HTTP server from a prim.
•  llGetHTTPServerURL For retrieving the current HTTP server URL.
•  llEscapeURL
•  llUnescapeURL

Deep Notes

Search JIRA for related Issues

Signature

//function void llHTTPResponse( string url, list parameters, string body );