• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Can anybody help with this error

 
Ranch Hand
Posts: 120
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The following code is giving
Error: 500
Location: /error_page.jsp
Internal Servlet Error:
org.apache.jasper.compiler.ParseException: C:\jbuilder5\jakarta-tomcat-3.2.1\webapps\ROOT\error_page.jsp(11,0) Unterminated

<HTML>
<BODY>
<CENTER>Error Page <CENTER>

<jsp:include page="/footer.jsp" flush="true" >
<jsp aram name="next_page" value="next_page"/>
</jsp:include >

</BODY>
</HTML>
 
Ranch Hand
Posts: 254
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<CENTER>Error Page </CENTER>
Beksy
 
Ranch Hand
Posts: 204
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
in your code you have entered a line
<jsp:include page="/footer.jsp" flush="true" >
you havent terminated the include directive...
<jsp:include page="/footer.jsp" flush="true" />
and then check
 
mini mehta
Ranch Hand
Posts: 120
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have already done that with </jsp:include > after defining the parameters. BTW I removed the <CENTER> tags and it still gives the error.
Thanks for the help.
Mini

Originally posted by Dharmesh Chheda:
in your code you have entered a line
<jsp:include page="/footer.jsp" flush="true" >
you havent terminated the include directive...
<jsp:include page="/footer.jsp" flush="true" />
and then check


 
Ranch Hand
Posts: 3695
IntelliJ IDE Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What's the code inside footer.jsp ?
 
mini mehta
Ranch Hand
Posts: 120
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Its ok now, the problem was because of space in </jsp:include >
It should have been </jsp:include>.
Quite funny, isn't it???
mini
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic