This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes BEA/Weblogic and the fly likes No start tag found Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Products » BEA/Weblogic
Reply Bookmark "No start tag found " Watch "No start tag found " New topic
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
    
  14

"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]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: No start tag found
 
Similar Threads
Jsp struts tag to check null values
what is the diff between tomcat 4.1 and 6.0
automatic forward?
Upgrade from JSP 1.2 to JSP 2.0
response.sendRedirect is not working