Ewald
unread,Aug 2, 2011, 8:26:34 AM8/2/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to JSON/XML-RPC Client and Server Implementations
I'm trying to access a Roundup bug tracker (on my local machine) via
its xml-rpc interface.
This is the code I have thus far
var service = new rpc.ServiceProxy("demo:demo@localhost:8917/demo/", {
asynchronous: true, //default value, but if otherwise error raised
protocol: "XML-RPC",//default value, but if otherwise error raised
sanitize: false, //explicit false required, otherwise error raised
methods: ['list'] //explicit list required, otherwise error raised
// callbackParamName: 'callback'
});
var users = service.list(Array('issues'));
This gives me the error 'Malformed XML Document'
I'm very new to Javascript and web dev stuff so be kind please :D