RE: html:text works, bean:write fails [Resolved]

2004-02-27 Thread rcdunn
Well the following fixed it: The problem was the case in the "reportForm". The form bean was named ReportForm and I did not realize the case was changed when set in the session. I used the following snippet of code to help in the debugging (I sure wish I had tried this earlier) and placed it in

RE: html:text works, bean:write fails

2004-02-26 Thread Gopalakrishnan, Jayesh
works, indicating the value is present in the formbean. Is your form name "total". If so whats the scope of this bean? You could also try <% Object total = pageContext.getAttribute("total"); // debug statementsto print the value/object type etc. %> just to make sure both

Re: html:text works, bean:write fails

2004-02-26 Thread rcdunn
Tried both cases - no joy. Also tried wrapping the tag in tag:     while setting the ignore to 'false'. The page renders, but apparently the bean is not visible in the scope. But, if that is the case, why does it work with the taglib? On Thursday 26 February 2004 14:56, you wrote: > The

RE: html:text works, bean:write fails

2004-02-26 Thread Gopalakrishnan, Jayesh
MAIL PROTECTED] Sent: Thursday, February 26, 2004 2:37 PM To: [EMAIL PROTECTED] Subject: Re: html:text works, bean:write fails Tried both cases - no joy. Also tried wrapping the tag in tag:     while setting the ignore to 'false'. The page renders, but apparently the bean is not

Re: html:text works, bean:write fails

2004-02-26 Thread rcdunn
I added the following tag: Not present And I DO get the 'Not present' text. I am still confused; why then does the tag work? Sorry for the posting to myself, but I am hoping for someone to pick up the thread and tell me what a Doofus I am and point me the right way. That may have

Re: html:text works, bean:write fails

2004-02-26 Thread Martin Cooper
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I have a situation where I have not found a solution in the archives (I'm > sure it is there, just don't know the right search), the documents (I have > half dozen Struts books, plus the tomcat docs), and Google has not been my > friend