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 tags from web.xml, and using the URIs found in the tld fil

jasper exception

2005-09-01 Thread Nirmala Dhara
Hello, I am trying my first application using struts. I got "/struts/bean-el not found" error msg from tomcat 5.0. my configuration is: ApplicationResources.properties in /webapps//WEB-INF/class directory web.xml and struts-config.xml are located at /webapps/ along with my *.jsp

Re: jasper exception

2004-09-20 Thread Jitender K Chukkavenkata
yeah...It might be the problem because... also expects any one of the properties. Anyways...nice to c ur problem solved... Cheers... :-) Jitender Kumar C.V. Be passionate at what ever you do.

Re: jasper exception

2004-09-20 Thread Sebastian Ho
I got it working although I don't know why it behaves that way.. In my JSP, I have a 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, 2004-09-21 at 1

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 but not URL. Jitender Kumar C.V.

Re: jasper exception

2004-09-20 Thread Sebastian Ho
Hi The URL did contains 'action' but I have been using 'action' as a parameter for weeks and it is working fine. btw how do I get the URL path? It is not shown in the browser. -- struts-config -- On Tue, 2004-09-21 at 11:21, Jitender K Chukkavenkata

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 seei

Re: jasper exception

2004-09-20 Thread Jitender K Chukkavenkata
Hi, I need the url that you are giving for 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 generate

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 -- --- Action --- public class CreateNewPro

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.

jasper exception

2004-09-20 Thread Sebastian Ho
hi anyone encounter this exception before? org.apache.jasper.JasperException: Cannot create rewrite URL: java.net.MalformedURLException: You must specify exactly one of "forward", "href", "page" or "action" It only happens in one particular JSP.. Sebastian Ho