Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

xmlRPC Invalid Channel?

Jonahs Benton
for president!
Join date: 14 Sep 2005
Posts: 20
11-28-2005 07:29
Hello everyone

Im new to xmlRPC. Have a quick question. Hopefully will get an easy answer :)

Im getting this xml Error when attempting a simple request using my Avies UUID. I've used Channel 4, 1, and 9. What is a valid channel to use?


Thanks as always,

-j
Jonahs Benton
for president!
Join date: 14 Sep 2005
Posts: 20
A little head way
11-28-2005 12:41
ok, Ive discovered that the channel seems to be my UUID. I substituted that for my Avies. The number I was changing was the IntValue. Not sure what that is for

I still get the same error:

<?xml version="1.0"?><methodResponse><fault><value><struct><member><name>faultString</name><value><string>Invalid channel</string></value></member><member><name>faultCode</name><value><int>2</int></value></member></struct></value></fault></methodResponse>


Here is my request:

req.Channel = "be9838cc-5053-4ece-b822-5c9f31dd4995";
//s.Channel = "88733d7d-c46f-bef5-3a6f-f7eb59ecfb13";
req.IntValue = 17;
req.StringValue = txtRequest.Text;

req.SendXMLRPC();

txtResponse.Text = req.StringValue;

Any takers?? :)
Alondria LeFay
Registered User
Join date: 2 May 2003
Posts: 725
11-28-2005 18:05
You need to use an RPC UUID, not your AV's UUID. See XML-RPC on the LSL Wiki
Jonahs Benton
for president!
Join date: 14 Sep 2005
Posts: 20
11-28-2005 20:17
thank you so much for that reply... Ive been waiting all day :)

I will check !