• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

jsp:forward

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear Sir,
i am using Tomcat5.0 where my all the project are working fine with
jsp:forward. To day integrated new project with same code it show me error

org.apache.jasper.JasperException : /index.jsp(29,0) Expecting "jsp:param" standard action with "name" and "value" attributes
here the code


Kindly advice for above error
Thanks and Regards
Bhavesh Shah


[BPSouther: Added code tags]
[ February 18, 2008: Message edited by: Ben Souther ]
 
Sheriff
Posts: 13411
Firefox Browser VI Editor Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm guessing that, because your jsp:forward tag has a body, the JSP compiler is expecting parameter tags.

Try changing:
<jsp:forward page="<%=pageFrames%>">
</jsp:forward>

to:

<jsp:forward page="<%=pageFrames%>" />
 
BHAVESH SHA
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks i tried with same but still error arises.
 
Ranch Hand
Posts: 53
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by BHAVESH SHA:

org.apache.jasper.JasperException : /index.jsp(29,0)



What is exactly line 29 ?
 
Sheriff
Posts: 67753
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
BHAVESH SHA, please do us all a favor and modify your display name to mixed or lowercase. The all uppercase is rather jarring and hard to read.
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think it should work with <jsp:forward page="<%=pageFrames%>" />.

If not delete the work folder under your tomcat and then try.
 
Liar, liar, pants on fire! refreshing plug:
New web page for Paul's Rocket Mass Heaters movies
https://coderanch.com/t/785239/web-page-Paul-Rocket-Mass
reply
    Bookmark Topic Watch Topic
  • New Topic