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
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
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
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