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

2002-09-24 Thread Ryan Hoegg
Hi Sanjeev, This looks like a good approach to me. Ryan Hoegg ISIS Networks [EMAIL PROTECTED] wrote: >Can I override endElement/startElement methods like this to handle my >case. >If yes then what the xmlrpc.execute method will return. I mean how i will >access result and identifier. > > >St

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

2002-09-23 Thread sanjeev . tripathi
Can I override endElement/startElement methods like this to handle my case. If yes then what the xmlrpc.execute method will return. I mean how i will access result and identifier. String result; String identifier; /** * Method called by SAX driver. */ public void endElemen

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

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