• 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:

No start tag found

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can you please advise . This JSP works in weblogc 8 . but does not work in weblogic 10

Root cause of ServletException.
weblogic.servlet.jsp.CompilationException: Failed to compile JSP /login.jsp
login.jsp:7:3: No start tag found.
</jsp:forward>


here is the complete jsp..

--%>
<jsp:forward page="/servlet/vpn?inf_action=login&inf_template=/common/home.jsp" />
</jsp:forward>


I am not exactly a JSP guy ... but i just wanted to find out the reason for my information ..
 
Ranch Hand
Posts: 1183
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
you are declaring an empty tag, the syntax can be either of the two

<tag /> or <tag></tag>

but not

<tag /></tag>

this is what raises the exception
 
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
"psreddy psreddy", please check your private messages for an important administrative matter.

Also, please be sure to ask Weblogic questions in the Weblogic forum. I have moved this post there for you.
 
mooooooo ..... tiny ad ....
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic