Search found 6 matches

by Subzidion Nightfire
Tue Jun 06, 2017 10:58 pm
Forum: Scripting
Topic: llHTTPRequest Custom Header Bug
Replies: 11
Views: 12418

Re: llHTTPRequest Custom Header Bug

As stated, OpenSim is a different server architecture from the software Linden Lab developed for their servers and there are quite a few things that differ between these two systems. That said, if using this function does work on another OpenSim grid running OpenSim 0.8.2.1 post fixes then I'd be h...
by Subzidion Nightfire
Tue Jun 06, 2017 10:14 pm
Forum: Scripting
Topic: llHTTPRequest Custom Header Bug
Replies: 11
Views: 12418

Re: llHTTPRequest Custom Header Bug

Use HTTP_MIMETYPE to set the Content-Type header. Attempts to use HTTP_CUSTOM_HEADER to set it will cause a runtime script error. Hints that there are limitations with using HTTP_CUSTOM_HEADER with this function. They may extend to your usage as well. Taking your example, in SL, using HTTP_CUSTOM_H...
by Subzidion Nightfire
Tue Jun 06, 2017 9:36 pm
Forum: Scripting
Topic: llHTTPRequest Custom Header Bug
Replies: 11
Views: 12418

Re: llHTTPRequest Custom Header Bug

While OpenSim's developers aimed to mimic Second Life server behavior, I think this may be a case where they implemented what the Second Life wiki stated it should work like and not how Second Life actually implemented it. But this isn't the case, because OpenSim doesn't actually block me from usin...
by Subzidion Nightfire
Tue Jun 06, 2017 8:45 pm
Forum: Scripting
Topic: llHTTPRequest Custom Header Bug
Replies: 11
Views: 12418

Re: llHTTPRequest Custom Header Bug

Please read http://wiki.secondlife.com/wiki/LlHTTPRequest and note their comments about the use of HTTP_CUSTOM_HEADER. I thought this might be an issue, however the script runs on SL with no script errors. The Header is being passed in the request when I give it, which means that even if LSL though...
by Subzidion Nightfire
Tue Jun 06, 2017 6:45 pm
Forum: Scripting
Topic: llHTTPRequest Custom Header Bug
Replies: 11
Views: 12418

Re: llHTTPRequest Custom Header Bug

Hi Subzidion, This forums thread may prove insightful: https://www.kitely.com/forums/viewtopic.php?f=11&t=3290 After reading through the thread, that seems more an issue of disallowing HTTP requests and filtering requests to prims. Mine is a request to an external server. The HTTP requests I'm maki...
by Subzidion Nightfire
Tue Jun 06, 2017 4:26 pm
Forum: Scripting
Topic: llHTTPRequest Custom Header Bug
Replies: 11
Views: 12418

llHTTPRequest Custom Header Bug

I'm making HTTP requests using Token Authentication. I want to use the Authorization Header, so I am using HTTP_CUSTOM_HEADER, like so: http_request_id = llHTTPRequest(url, [ HTTP_CUSTOM_HEADER, "Authorization", "Token AUTHORIZATION_TOKEN_HERE" ], ""); This code works and gives me a response from th...