| Author |
No start tag found
|
psreddy psreddy
Greenhorn
Joined: Jul 23, 2009
Posts: 1
|
|
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 ..
|
 |
Sebastian Janisch
Ranch Hand
Joined: Feb 23, 2009
Posts: 1183
|
|
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
|
JDBCSupport - An easy to use, light-weight JDBC framework -
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56528
|
|
"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.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: No start tag found
|
|
|