Hello,
I am currently writing an XML-RPC client which needs to supply named
parameters of a type other than string.
I have a Hashtable containing the names and parameter values set up as
follows:
htParms.put("username", (String)props.get("user-name"));
htParms.put("password", (String)props.get("password"));
I then add that Hashtable to the Vector which I pass to the execute
method of XmlRpcClient.
What happens when I want to specify a boolean for example ? I can't use:
htParms.put("secure", false);
as the put method of Hashtable doesn't allow it.
Any help is appreciated.
Cheers
Dave Kelly