I'm trying to send data to an object in SL. I tried the email function, but it doesnt seem to work well as delay can be very long (up to several hours). Sending emails to an object seems to work great within SL using llEmail(); though.
Anyway, I ended up finding out about XML-RPC and as I'm quite familiar with LSL and PHP, I didn't have too many problems in understanding what I was actually doing with my PHP and LSL scripts. - Bad thing... it didn't work

After some time browsing the internet for interesting information on this topic, I found the following website:
http://secondlifehowto.com/blog2/2006/12/30/howto-make-xmlrpc-calls-to-an-in-world-object/
I followed this tutorial step by step and I tried all different solutions, which can be found on the lsl wiki, but somehow this does not work.
Important to mention is the fact, that this tutorial, I mentioned before, features a web interface (source code is provided) that sends information to your object running the XML-RPC script and THIS WORKS!!! I simply type the object key and message into form fields and click submit. One second later the object receives the request.
BUT
If i exactly follow this tutorial and create php scripts myself (copy & paste them) or any tutorial I found (wiki, etc...) it does NOT WORK!
It seems my server, running the php script, does not send the request at all.
I have to say that it is not my own server, but rented webspace that features php, xml, etc...
Could there be something I'm doing wrong or is it my server causing problems?
Thanks in advance.
here is another tutorial I tried:
http://www.othala.co.uk/2008/02/05/httpxml-rpc-interface-example-for-second-life/