In my case client and server communication will use XML-RPC over HTTPS.
Apache XML-RPC provides secure client class SecureXmlRpcClient.Can I use
this class like follwoing to impliment secure XmlRpc Client.
SecureXmlRpcClient xmlrpc = new SecureXmlRpcClient ("https://"+hostname+":";
+port+"/RPC2
Hi Sanjeev,
The SecureXmlRpcClient class is a fairly light subclass of XmlRpcClient.
For your purposes I would subclass it and override the methods
startElement and endElement (called by SAX when parsing the response).
--
Ryan Hoegg
ISIS Networks
[EMAIL PROTECTED] wrote:
>In my case client