cyrille <[EMAIL PROTECTED]> writes: > > 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) );
Or more efficiently: htParms.put("secure", Boolean.FALSE); -- Daniel Rall <[EMAIL PROTECTED]>