DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=26684>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=26684 <bean:write/> causes incorrect table rendering when writing an empty string property ------- Additional Comments From [EMAIL PROTECTED] 2004-03-22 18:09 ------- I reckon you are getting a nullpointerexception when you dereference 'personnel', or 'reservePersonnel'. What you describe: getting "no output from any of the html/jsp shown" can happen when the response has been committed (so the server can't send you an exception) but an exception has occured in the execution of the jsp. We know its not a compile-time error because you say you get output in some circumstances. You can make these errors visible if they're not already being logged... <td align="right"> <% try { %> <bean:write name="NonJrfcSummaryForm" property='<% = "personnel.reservePersonnel("+ posType.getPersonnelTypeId() +")" %>'/> <% } catch (Throwable t) { t.printStackTrace(new PrintWriter(out)); } %> </td> If you mean 'no output from any of the html/jsp shown but /everything after it on the page is output/' then something else is wrong. NB, some browsers show 'fixed' source when you ask for the source, eg adding </tr></table></html>, in your case. Open-tags or text, like "<p>test</p>" output after the error would be proof that something odd is going on. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]