>
>
>>> 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.
>>
>>
>>
>>
>> htParms.put("secure", new Boolean(false) );
>>
>> isn't it ?
>>
>> cyrille
>>
> That did the trick. not a xml-rpc spec, it's a Java behavior ! java.util.hashtable works with object (Boolean, Integer, MyClass), not with primitive (boolean, int) cyrille
