I am trying to write an external application that will communicate with an LSL script via XML-RPC, and I seem to be having some trouble.
I keep getting 500 Server Error replies when I tried to send my data. Any ideas?
Here is the communication I am trying to use:
(connecting to 66.150.244.144:80 )
POST /cgi-bin/xmlrpc.cgi HTTP/1.1
User-Agent: Test application
Host: -= IP removed for forum post

Content-type: text/xml
Content-length: 409
Connection: close
<?xml version="1.1"?>
<methodCall><methodName>llRemoteData</methodName>
<params><param><value><struct>
<member><name>Channel</name><value><String>240f8758-6424-5b1f-c188-67ace39cc537</String></value></member>
<member><name>IntValue</name><value><int>1</int></value></member>
<member><name>StringValue</name><value><String>Hello world!</String></value></member>
</struct></value></param></params></methodCall>