Hi there
i'm new to this mailing list, so please if faq.
I'm trying to invoke a remote method via xmlrpc to the DCOP server
in kde, using this code:
XmlRpcClient server = new
XmlRpcClient("http://localhost:"+port+"/kdesktop");
// Build our parameter list.
Vector params = new Vector();
params.addElement(authToken);
// Call the server: the kxmlrpc, kdesktop and dcopserver must be
running
server.execute("KDesktopIface.popupExecuteCommand()",
params);
given that all parameters all well read ( i check it out), i'm
receiving this:
JavaClient: java.io.IOException: Connection reset
or sometimes:
JavaClient: XML-RPC Fault #999: org.apache.xmlrpc.XmlRpcException:
Could not complete request
any suggestion?