Difference between revisions of "LlRequestURL"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 8: Line 8:
|caveats=*When a region is (re)started all [[http_request|HTTP server]] URLs are automatically released and invalidated.
|caveats=*When a region is (re)started all [[http_request|HTTP server]] URLs are automatically released and invalidated.
**Use [[CHANGED_REGION_START]] to detect this so new URL can be requested.
**Use [[CHANGED_REGION_START]] to detect this so new URL can be requested.
*An old URL MUST be released first by using [[llReleaseURL]] or it will be still active and you are losing free URLs.
|constants
|constants
|examples=
|examples=

Revision as of 08:50, 29 August 2009

Summary

Function: key llRequestURL( );

Requests one HTTP:// url for use by this object. The http_request event is triggered with the results.
Returns a key that is the handle used for identifying the request in the http_request event.

Caveats

  • When a region is (re)started all HTTP server URLs are automatically released and invalidated.
  • An old URL MUST be released first by using llReleaseURL or it will be still active and you are losing free URLs.
All Issues ~ Search JIRA for related Bugs

Examples

See Also

Functions

•  llRequestSecureURL
•  llGetFreeURLs
•  llReleaseURL
•  llHTTPResponse
•  llGetHTTPHeader

Articles

•  LSL http server

Deep Notes

History

Search JIRA for related Issues

Signature

function key llRequestURL();