Difference between revisions of "User:Roland Riddler"

From Second Life Wiki
Jump to navigation Jump to search
Line 4: Line 4:


I like to script in LSL and PHP, meet and explore in SL.
I like to script in LSL and PHP, meet and explore in SL.
Not a professional coder I am, it's more like a hobby. So her are 10 things to know about HTTP-in objects:
Not a professional coder I am, it's more like a hobby.  


1. There will be URL limits per region and split by land ownership
Here is one for you


2. URLs will be temporary
<lsl>
default
{
    state_entry()
    {
       
    }


3. A maximum of 38 URLs per resident can be used (this also means 38 attachment points total)
    touch_start(integer total_number)
 
    {
4. HTTP requests are limited to 2 kb in the body (wow really? Is anything that small 2 kb?)
        llOwnerSay(llGetOwner() + " is your UUID");
 
    }
5. Headers will be limited to 255 bytes (even smaller)
}
 
</lsl>
6. Response sizes will likely be limited
 
7. Per script limit of 64 flight requests
 
8. Speeds may be throttled
 
9. Returned data is only in text/plain; utf-8 format
 
10. URL limits are the same as the prim limits

Revision as of 14:26, 19 October 2009

Hello ツ How are you doing?

My name is Roland Riddler, I am from Berlin, Germany.

I like to script in LSL and PHP, meet and explore in SL. Not a professional coder I am, it's more like a hobby.

Here is one for you

<lsl> default {

   state_entry()
   {
       
   }
   touch_start(integer total_number)
   {
       llOwnerSay(llGetOwner() + " is your UUID");
   }

} </lsl>