Hi,
I am also having some trouble sending an XML-RPC message to an object. I am using XML-RPC.net, an implementation for .NET. I have written a c# client which sends a message to the channel id provided by the example script on the wiki.
The client works fine against the XML-RPC server I wrote.
Here is the code, any ideas on how to troubleshoot this welcome!
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using CookComputing.XmlRpc;
namespace SumAndDiffClient
{
/// <summary>
/// Summary description for Form1.
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button button2;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
struct SumAndDiffValue
{
public int sum;
public int difference;
}
struct SLRPCStruct
{
public string Channel;
public string StringValue;
public int IntValue;
}
[XmlRpcUrl("http://xmlrpc.secondlife.com/cgi-bin/xmlrpc.cgi"

]
interface IRemoteData
{
[XmlRpcMethod]
SLRPCStruct llRemoteData(string Channel, string StringValue, int IntValue);
}
public Form1()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.button2 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(16, 16);
this.button1.Name = "button1";
this.button1.TabIndex = 0;
this.button1.Text = "button1";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label1
//
this.label1.Location = new System.Drawing.Point(16, 4

;
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(848, 44

;
this.label1.TabIndex = 1;
this.label1.Text = "label1";
//
// button2
//
this.button2.Location = new System.Drawing.Point(200, 16);
this.button2.Name = "button2";
this.button2.TabIndex = 2;
this.button2.Text = "button2";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(880, 509);
this.Controls.Add(this.button2);
this.Controls.Add(this.label1);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void button2_Click(object sender, System.EventArgs e)
{
try
{
IRemoteData proxy = (IRemoteData)XmlRpcProxyGen.Create(typeof(IRemoteData));
SLRPCStruct ret = proxy.llRemoteData("c60fa268-2b55-f247-0da0-53204614ebb8", "Hello World.", 0);
label1.Text = "Return:" + ret.StringValue;
}
catch (XmlRpcFaultException fex)
{
label1.Text = fex.FaultCode + ":" + fex.FaultString;
}
}
}
}
Cheers,
Roger