cyrille wrote:
>> 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
>
You're too kind :-)That did the trick.
