Hi there,
with previous versions of xmlrpc my understanding was that I could do
the following (in Java) to process a request:
ByteArrayInputStream inStream; // assume exists
String user; // assume exists
String password; // assume exists
XmlRpcServer xmlrpc;
byte[] results;
xmlrpc = new XmlRpcServer();
xmlrpc.addHandler(someName, someObject);
results = xmlrpc.execute(inStream, user, password);
That's pretty nice and simple. Forgive me if this is a simple
question but how is the same achieved with v3?
Thanks muchly.
Lachlan
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]