Re: jasper exception

2005-09-01 Thread Wendy Smoak
From: Nirmala Dhara [EMAIL PROTECTED] %@ taglib uri=struts/bean-el prefix=bean % %@ taglib uri=struts/html-el prefix=html % org.apache.jasper.JasperException: File /struts/bean-el not found I suggest removing the taglib tags from web.xml, and using the URIs found in the tld files

Re: jasper exception

2004-09-21 Thread Sebastian Ho
I got it working although I don't know why it behaves that way.. In my JSP, I have a /html:frame somewhere in between the lines. Once I remove it, the exception went away. That tag should not be there anyway. No idea how it got there in the first place.. Thanks Kumar. Sebastian Ho On Tue,

Re: jasper exception

2004-09-20 Thread Jitender K Chukkavenkata
Which part of your code generated this? Can I have a look over it? Thanks, Jitender Kumar C.V.

Re: jasper exception

2004-09-20 Thread Sebastian Ho
Hi The output doesn't even print out the nextController in the method which I inserted.. Thanks -- JSP -- html:submit value=Reset property=action/ html:submit property=action value=Next bean:message

Re: jasper exception

2004-09-20 Thread Jitender K Chukkavenkata
Hi, I need the url that you are giving for html:form and also the mapping of the same in struts-config.xml...The error might be like you are using some conflicting properties because, forward, href, page or action are exclusive properties. Any combination of these properties for a tag

RE: jasper exception

2004-09-20 Thread David G. Friedman
Sebastian, Jitender is right about a tag only allowing one of forward, href, page or action as an attribute in the tag. However, the Jasper Exception is telling you which tag: in an html:rewrite. I just verified this by making a bad tag and seeing the exact same error in Tomcat 5.0.28 under

Re: jasper exception

2004-09-20 Thread Jitender K Chukkavenkata
I was just wondering that I couldnt find any mapping in JSP for the method nextController(). Iam sorry I was actually expecting the value of action attribute of html:form but not URL. Jitender Kumar C.V.