LlGetHTTPServerURL

From Second Life Wiki

Second Life Wiki > LlGetHTTPServerURL
Jump to: navigation, search

Template:Needs Translation/LSL/de Template:Needs Translation/LSL/es Template:Needs Translation/LSL/el Template:Needs Translation/LSL/fr Template:Needs Translation/LSL/he Template:Needs Translation/LSL/it Template:Needs Translation/LSL/ja Template:Needs Translation/LSL/ko Template:Needs Translation/LSL/nl Template:Needs Translation/LSL/hu Template:Needs Translation/LSL/no Template:Needs Translation/LSL/da Template:Needs Translation/LSL/sv Template:Needs Translation/LSL/tr Template:Needs Translation/LSL/pl Template:Needs Translation/LSL/pt Template:Needs Translation/LSL/ru Template:Needs Translation/LSL/uk Template:Needs Translation/LSL/zh-Hans Template:Needs Translation/LSL/zh-Hant

Image:Emblem-important-yellow.png LSL Feature Request
The described function does not exist. This article is a feature request.

This was implemented as llRequestURL and llRequestSecureURL.

Contents

Summary

Function: string llGetHTTPServerURL( );
REQUEST Function ID
0.0 Delay
10.0 Energy

Returns the current HTTP server URL for the script calling the function.
Returns a string that is a URL identifying the HTTP server if active, empty string otherwise.

Returned URI: http://sim###.agni.lindenlab.com:portofsimulator/uuid
Ex: http://sim4212.agni.lindenlab.com:1337/00000000-0000-0000-0000-000000000000

Examples

default
{
    touch_start(integer t) // Touch Indicator
    {
        string ServerURL = llGetHTTPServerURL();
        if (ServerURL != "")
        {
            llOwnerSay("HTTP Server URL:" + ServerURL);
        }
        else
        {
            llOwnerSay("HTTP Server Is Not Active!");
        }
    }
}

Notes

Zero Linden's Office Hours Discussion On Incoming HTTP

PJIRA feature requests:

Please go vote if this feature is important to you.

See Also

Events

•  http_request

Functions

•  llHTTPServer For opening an llHTTPServer.
•  llHTTPServerRemove For removing the current HTTP server from the script.
•  llHTTPResponse For replying to HTTP requests.
•  llEscapeURL
•  llUnescapeURL

Deep Notes

In other languages