cyrille Thu, 03 Oct 2002 04:49:25 -0700
> 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