Re: Custom tag classes problem

2000-08-18 Thread Anurag Gaur
r/AmericanRe) Subject: Re: Custom tag classes problem I've not looked at this for a while but on the discussion forum on the books web site they've spoken about how the .tld is incorrect in the book and how you need to make some changes to get mutlib working. Looks like I've got

Re: Custom tag classes problem

2000-08-16 Thread Robert Nicholson
, August 16, 2000 3:47 PM > To: [EMAIL PROTECTED] > Subject: Re: Custom tag classes problem > > > I've not looked at this for a while but on the discussion forum > on the books > web site they've spoken about how the .tld is incorrect in the > book and how &g

Re: Custom tag classes problem

2000-08-16 Thread Robert Nicholson
ference > [mailto:[EMAIL PROTECTED]]On Behalf Of Anurag Gaur > Sent: Wednesday, August 16, 2000 3:55 PM > To: [EMAIL PROTECTED] > Subject: Re: Custom tag classes problem > > > Hans and Pratik, > Some sample code from JSP book also does not run, getting the > same problem.

Re: Custom tag classes problem

2000-08-16 Thread Anurag Gaur
- taglib element in web.xml: /mutlib /WEB-INF/tlds/mut_1_0.tld Pratik <[EMAIL PROTECTED]> on 08/12/2000 05:23:59 AM Please respond to A mailing list about Java Server Pages specification and reference <[E

Re: Custom tag classes problem

2000-08-12 Thread Pratik
t: Saturday, August 12, 2000 12:38 PM Subject: Re: Custom tag classes problem > Anurag Gaur wrote: > > > > Hans, > > > > I have provided the taglib directive in the jsp page. And since the JSP compiler > > is not giving any errors means it finds the TLD file successfull

Re: Custom tag classes problem

2000-08-12 Thread Hans Bergsten
Anurag Gaur wrote: > > Hans, > > I have provided the taglib directive in the jsp page. And since the JSP compiler > is not giving any errors means it finds the TLD file successfully to do the > syntax > checking for the tags on the same page. But there is no output from the Tag > handler class at

Re: Custom tag classes problem

2000-08-11 Thread Anurag Gaur
Subject: Re: Custom tag classes problem Anurag Gaur wrote: > > Hi, > I have created a custom tag library to be used in an application running on > Tomcat. > As per the directions, in 'Web Development with JavaServer Pages' by Fields and > Kolb, > I have moved the JAR

Re: Custom tag classes problem

2000-08-10 Thread Hans Bergsten
Anurag Gaur wrote: > > Hi, > I have created a custom tag library to be used in an application running on > Tomcat. > As per the directions, in 'Web Development with JavaServer Pages' by Fields and > Kolb, > I have moved the JAR file containing the tag handlers in WEB-INF/lib directory. > The deplo

Re: Custom tag classes problem

2000-08-10 Thread Lynch Wu
Hi Anurag Check the list. 1. In doEndTag(), you should return EVAL_PAGE. 2. In setPageContext(), you should set this.pageContext=pageContext. 3. In setParent(), you should set this.parent=parent. Maybe you could download some tutorial codes before write your own codes. Hope this helps. Lynch Wu

Custom tag classes problem

2000-08-10 Thread Anurag Gaur
Hi, I have created a custom tag library to be used in an application running on Tomcat. As per the directions, in 'Web Development with JavaServer Pages' by Fields and Kolb, I have moved the JAR file containing the tag handlers in WEB-INF/lib directory. The deployment descriptor (web.xml) and the