major
minor
minor
#27027
Declarative forms: SelectField disappears after upload if option list depends on mandatory property
#27042
MaintenanceJspBase should write to the log first, then to the client, instead of the other way around.
defect
minor
#27042
MaintenanceJspBase should write to the log first, then to the client, instead of the other way around.
In tl:MaintenanceJspBase, calls to printXXX(...) should first log the message and then write it to the client, rather than the other way around as was previously the case. There is a concern that writing to the client may fail due to an exception. In particular, accessing or using the JspWriter may fail if the session no longer exists. Maintenance pages may run for so long that the session is terminated by a timeout. The problem with this is that, as a result, nothing would ultimately be sent anywhere. Even logging this exception would fail, because that is also done via one of the affected methods.
Test
No test: It is practically impossible to test where the data is written first without modifying the code.