RE: cannot resolve '/tags/struts-template.tld during weblogic.jsp c

2002-03-06 Thread rgiri
yes that's true, try to check whether the web.xml file is well formed or not as well as check if the web.xml is valid(i mean check against the DTD mentioned on top of the web.xml file). I ran into the same problem once, first time it was uri issue next time I had the DTD part on top of web.xml wro

RE: cannot resolve '/tags/struts-template.tld during weblogic.jspc

2002-03-06 Thread rgiri
I am not familiar with WLS5.1, but in WLS6.1 if the web.xml file has the following taglib declaration /WEB-INF/struts-template.tld /WEB-INF/struts-template.tld it expects the struts-template.tld under the WEB-INF directory, check if you have the struts-template.tld in the right direc

RE: How to control ' if then else' in a particular JSP using struts

2002-03-05 Thread rgiri
look into logic:present tag. look at the login-present.jsp under the downloaded src /web/exercise-taglib/logic-present.jsp Hope that helps. RG -Original Message- From: Dasgupta, Diptiman (Cognizant) [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 03, 2002 11:36 PM To: [EMAIL PROTECTED] Sub

RE: newbie question: is it ok to use struts selectively?

2002-03-01 Thread rgiri
yeah i understand the part that you have to type less and its simpler, but I want to know how is the performance hit? suppose I have a huge form with lots of input type, just to put something simple as and its brothers and sisters, is it worth using the tags? will it slow down the page loading?

newbie question: is it ok to use struts selectively?

2002-03-01 Thread rgiri
Suppose I have a login page, with username and password and submit button. Is it ok to have something like the following? is it ok to use struts html tags only for the input type form but not for the others? if the output of the tags is same as what I have here, why should I be inclined to use,

Re: O'Reilly Example

2002-02-27 Thread rgiri
from one of my earlier postings.. I got a similar error in an example complaining about the following attribute from the struts-form.tld for image org.apache.struts.taglib.html.ImageTag path false true isK

Re: O'Reilly Example

2002-02-27 Thread rgiri
encountered the same problem, if you look at the tld file in the error and the Class mentioned, you will find that the attribute path is mentioned only in the TLD file but if you look at the class definition there is no setter for this attribute. to make the example work, remove the complaining at

Re: Error in running struts example in weblogic 6.1

2002-02-22 Thread rgiri
I got a similar error in an example complaining about the following attribute from the struts-form.tld for image org.apache.struts.taglib.html.ImageTag path false true isKey false tr

Re: Error in running struts example in weblogic 6.1

2002-02-22 Thread rgiri
I ran into the same problem, I would also like to get the answer to the mystery. Try removing the title tag from the struts-html.tld file and run the example again. it worked for me, for any attribute which it complained like that I tried to remove it from the tld and tried running it , it worked