| Summary: | Property values used in AbstractSMTPService createSession need to be String instead of the generic Hashtable type Object | ||||||
|---|---|---|---|---|---|---|---|
| Product: | z_Archived | Reporter: | Oli Schmid <oliver.schmid> | ||||
| Component: | Scout | Assignee: | Project Inbox <scout.core-inbox> | ||||
| Status: | CLOSED FIXED | QA Contact: | |||||
| Severity: | normal | ||||||
| Priority: | P3 | CC: | zimmermann | ||||
| Version: | unspecified | Flags: | zimmermann:
indigo+
zimmermann: juno+ |
||||
| Target Milestone: | --- | ||||||
| Hardware: | PC | ||||||
| OS: | Windows XP | ||||||
| Whiteboard: | |||||||
| Attachments: |
|
||||||
Created attachment 201245 [details]
Patch is using the methods defined in java.util.Properties
Thanks Oli for the Patch. I comitted it to following branches and trunk: 2011-Jan, 2011-Jun, 2012-Jan. Works fine. Thanks! reopend to set to 'verified' . should remain in status 'verified' until all bugs with target milestones 3.7.3 are closed Bugfixes shipped on Scout 3.7 branch |
Build Identifier: 3.7.1 In some application servers properties stored in the properties instance attached to the session are read by getProperty instead of get. This returns null if value is not of type String. Reproducible: Always Steps to Reproduce: 1. Define a property of type other than String (e.g: props.setProperty("mail." + getProtocol() + ".quitwait", false); 2. Check if property value is read as false or as null when accessing it. On a Weblogic server it will be read as null.