Details
Description
Recommend changing line 107 from this:
(Localizer.getMessage("jsp.error.parse.xml", uri), sx);
To this:
(Localizer.getMessage("jsp.error.parse.xml", uri) + " - SAXException: " + sx.getMessage(), sx);
Because when a ParseException occurs within the ParserUtils.parseXMLDocument() method, the sx.getMessage() can be very helpful in understanding what caused the exception to be thrown. As the code stands now, the message is ignored.
Neil
(Localizer.getMessage("jsp.error.parse.xml", uri), sx);
To this:
(Localizer.getMessage("jsp.error.parse.xml", uri) + " - SAXException: " + sx.getMessage(), sx);
Because when a ParseException occurs within the ParserUtils.parseXMLDocument() method, the sx.getMessage() can be very helpful in understanding what caused the exception to be thrown. As the code stands now, the message is ignored.
Neil
Activity
Field | Original Value | New Value |
---|---|---|
Fix Version/s | 1.7DR#1 [ 10100 ] | |
Assignee | Ted Goddard [ ted.goddard ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #14828 | Wed Sep 19 11:59:57 MDT 2007 | ted.goddard | logging SAXException ( |
Files Changed | ||||
![]() |
Status | Open [ 1 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Fix Version/s | 1.6.2 [ 10111 ] |
Resolution | Fixed [ 1 ] | |
Status | Resolved [ 5 ] | Reopened [ 4 ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #14981 | Thu Oct 18 16:36:12 MDT 2007 | ted.goddard | logging SAXException ( |
Files Changed | ||||
![]() |
Status | Reopened [ 4 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Priority | Major [ 3 ] | Minor [ 4 ] |
Fix Version/s | 1.7 [ 10080 ] |
Status | Resolved [ 5 ] | Closed [ 6 ] |
Assignee | Ted Goddard [ ted.goddard ] |
This issue is related to this one:
http://jira.icefaces.org/browse/ICE-1681
In that if the scenario described in
ICE-1681occurs, then this issue becomes relevant.