Outputting from a taglib in struts

2002-08-27 Thread wbchmura
I am playing with making a taglib and having the biggest issues with it. I am trying to output and have been trying to use: pageContext.getOut().write(Hello +name+!); To write to the output. This only returns [Exception in:/WEB-INF/jsp/twizard/mainmenu.jsp] null I am following a

RE: Outputting from a taglib in struts

2002-08-27 Thread Kevin A. Smith
, 2002 10:23 AM To: [EMAIL PROTECTED] Subject: Outputting from a taglib in struts I am playing with making a taglib and having the biggest issues with it. I am trying to output and have been trying to use: pageContext.getOut().write(Hello +name+!); To write to the output. This only returns

RE: Outputting from a taglib in struts

2002-08-27 Thread wbchmura
To: struts-user Subject: RE: Outputting from a taglib in struts If you can lay your hands on it, I *highly* recommend the O'Reilly JavaServer Pages book. It has two chapters that are extremely useful to first-time and experiences taglib authors. --Kevin -Original Message- From: [EMAIL

Re: RE: Outputting from a taglib in struts

2002-08-27 Thread Tom Klaasen
To: [EMAIL PROTECTED] Subject: Outputting from a taglib in struts I am playing with making a taglib and having the biggest issues with it. I am trying to output and have been trying to use: pageContext.getOut().write(Hello +name+!); To write to the output. This only returns

Re: Outputting from a taglib in struts

2002-08-27 Thread Chandra Gottipati
- Original Message - From: Schneider, Eric [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Tuesday, August 27, 2002 9:22 AM Subject: RE: Outputting from a taglib in struts I haven't done it in a while, but isn't it something like: [in your doStartTag() method