I'm working primary on Tomcat but had to use XML-RPC stuff in my day job, and of course I selected the Apache solution
BTW, I saw some annoying problems :
Working in the financial area, I manage number which should be exact, so I used BigDecimal instead of double or Double.
In XmlWriter.writeObject there is :
else if (obj instanceof Double || obj instanceof Float) { startElement("double"); write(obj.toString()); endElement("double"); }
Could it be extended to :
else if (obj instanceof Double || obj instanceof Float || obj instanceof BigDecimal)
{
startElement("double");
write(obj.toString());
endElement("double");
}
Also, I notice the worker are created but never released, it is normal ?
In fine did there is a release date for XML-RPC 1.2 ?
Regards