<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ahroun+Maelstrom</id>
	<title>Second Life Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ahroun+Maelstrom"/>
	<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/wiki/Special:Contributions/Ahroun_Maelstrom"/>
	<updated>2026-07-29T23:45:09Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Talk:LlHTTPRequest&amp;diff=65299</id>
		<title>Talk:LlHTTPRequest</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Talk:LlHTTPRequest&amp;diff=65299"/>
		<updated>2008-04-27T08:18:27Z</updated>

		<summary type="html">&lt;p&gt;Ahroun Maelstrom: updated request for root certificate information&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I have a Question ..&lt;br /&gt;
Does POST work ? &lt;br /&gt;
I couldnt get it working&lt;br /&gt;
Anylyn Hax 13:34, 28 July 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following headers will be present, usable by scripts running on the HTTP server if the scripting language allows you to access the headers.&lt;br /&gt;
&lt;br /&gt;
An PHP example on how to check to see if the call came from the main grid:&lt;br /&gt;
 &amp;lt;?php&lt;br /&gt;
     if ($_SERVER[&amp;quot;HTTP_X_SECONDLIFE_SHARD&amp;quot;] == &amp;quot;Production&amp;quot;) {&lt;br /&gt;
         echo &#039;You are using the main grid&#039;;&lt;br /&gt;
     } else {&lt;br /&gt;
         echo &#039;You are not using the main grid&#039;;&lt;br /&gt;
     }&lt;br /&gt;
 ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Odd format for header names ==&lt;br /&gt;
&lt;br /&gt;
Why are the headers listed as HTTP_SOME_HEADER_NAME, when the sent headers are in the format Some-Header-Name? Is there some benefit to putting false values that match conventions used by CGI, but aren&#039;t actually correct? &lt;br /&gt;
&lt;br /&gt;
I am aware that the example given above works, but (assuming that you&#039;re using mod_php) this would too, and reflects the real header names:&lt;br /&gt;
 &amp;lt;?php&lt;br /&gt;
 $headers = apache_request_headers();&lt;br /&gt;
 if($headers[&#039;X-SecondLife-Shard&#039;] == &#039;Production&#039;)&lt;br /&gt;
 {&lt;br /&gt;
     print &amp;quot;You are on the main grid.&amp;quot;;&lt;br /&gt;
 }&lt;br /&gt;
 else&lt;br /&gt;
 {&lt;br /&gt;
     print &amp;quot;You are on a preview grid.&amp;quot;;&lt;br /&gt;
 }&lt;br /&gt;
 ?&amp;gt;&lt;br /&gt;
Additionally, the current information does not show the capitalisation, thus further confusing the matter.&lt;br /&gt;
[[User:Katharine Berry|Katharine Berry]] 09:55, 21 June 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
== Root Certificates ==&lt;br /&gt;
Can someone add a list of root certificates to this article?&lt;br /&gt;
&lt;br /&gt;
I know that Verisign, Thawt, and RapidSSL are accepted, I know that CACert.org is not.&lt;/div&gt;</summary>
		<author><name>Ahroun Maelstrom</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Talk:LlHTTPRequest&amp;diff=50363</id>
		<title>Talk:LlHTTPRequest</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Talk:LlHTTPRequest&amp;diff=50363"/>
		<updated>2008-01-21T05:17:55Z</updated>

		<summary type="html">&lt;p&gt;Ahroun Maelstrom: Added question re: Root CAs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I have a Question ..&lt;br /&gt;
Does POST work ? &lt;br /&gt;
I couldnt get it working&lt;br /&gt;
Anylyn Hax 13:34, 28 July 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following headers will be present, usable by scripts running on the HTTP server if the scripting language allows you to access the headers.&lt;br /&gt;
&lt;br /&gt;
An PHP example on how to check to see if the call came from the main grid:&lt;br /&gt;
 &amp;lt;?php&lt;br /&gt;
     if ($_SERVER[&amp;quot;HTTP_X_SECONDLIFE_SHARD&amp;quot;] == &amp;quot;Production&amp;quot;) {&lt;br /&gt;
         echo &#039;You are using the main grid&#039;;&lt;br /&gt;
     } else {&lt;br /&gt;
         echo &#039;You are not using the main grid&#039;;&lt;br /&gt;
     }&lt;br /&gt;
 ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Odd format for header names ==&lt;br /&gt;
&lt;br /&gt;
Why are the headers listed as HTTP_SOME_HEADER_NAME, when the sent headers are in the format Some-Header-Name? Is there some benefit to putting false values that match conventions used by CGI, but aren&#039;t actually correct? &lt;br /&gt;
&lt;br /&gt;
I am aware that the example given above works, but (assuming that you&#039;re using mod_php) this would too, and reflects the real header names:&lt;br /&gt;
 &amp;lt;?php&lt;br /&gt;
 $headers = apache_request_headers();&lt;br /&gt;
 if($headers[&#039;X-SecondLife-Shard&#039;] == &#039;Production&#039;)&lt;br /&gt;
 {&lt;br /&gt;
     print &amp;quot;You are on the main grid.&amp;quot;;&lt;br /&gt;
 }&lt;br /&gt;
 else&lt;br /&gt;
 {&lt;br /&gt;
     print &amp;quot;You are on a preview grid.&amp;quot;;&lt;br /&gt;
 }&lt;br /&gt;
 ?&amp;gt;&lt;br /&gt;
Additionally, the current information does not show the capitalisation, thus further confusing the matter.&lt;br /&gt;
[[User:Katharine Berry|Katharine Berry]] 09:55, 21 June 2007 (PDT)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
QUESTION from Ahroun Maelstrom (2008-01-20 21:14) -- Anyone know what root certificates are accepted?  Specifically -- Does LL recognize CACert?&lt;/div&gt;</summary>
		<author><name>Ahroun Maelstrom</name></author>
	</entry>
</feed>