Re: xml-rpc response is not in xml-rpc format.(secure communication)

2002-09-22 Thread sanjeev . tripathi
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

Re: xml-rpc response is not in xml-rpc format.(secure communication)

2002-09-22 Thread Ryan Hoegg
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