Implementation of {@link XmlRpcResponseWriter} that uses DOM for creating the XML-RPC response.
{@link XmlRpcResponseWriter}
125126127128129130131132133134135
if (requestParser == null) { requestParser = new DomXmlRpcRequestParser(); } if (responseWriter == null) { responseWriter = new DomXmlRpcResponseWriter(); } if (xmlRpcElementFactory == null) { xmlRpcElementFactory = new XmlRpcElementFactoryImpl(); }