Error Report
Parsing of JSP file '/ProfessionalWebApp/ValidateUser1.jsp' failed:
/ProfessionalWebApp/ValidateUser1.jsp(1):calass
'com.instanJsp.LoginManager' could not be loaded
probably occured due to an error in /ProfessionalWebApp/ValidateUser1.jsp line 1:
class="com.instantJsp.LoginManager"
scope="application"/>
Weblogic server error
Servlet failed with Exception weblogic.servlet.JspException
In a jsp I have this code class="com.instantJsp.LoginManager" scope="application"> as the first line.
when I reference this jsp from a html form I get the above mentioned error report.
Directory Structure
ProfessionalWebApp/WEB-INF/classes/com/instantJsp/LoginManager.java
And I deployed the application into DefaultWebApp folder of my domain in Weblogic7.
Suggest me...
Thanking you,
Srinivas Katakam
-
Parsing of JSP file failed: (2 messages)
- Posted by: Thirupathi Katakam
- Posted on: June 28 2006 08:57 EDT
Threaded Messages (2)
- Re: Parsing of JSP file failed: by Bob Armour on June 28 2006 11:31 EDT
- Re: Parsing of JSP file failed: by Robert Saulnier on June 28 2006 13:36 EDT
-
Re: Parsing of JSP file failed:[ Go to top ]
- Posted by: Bob Armour
- Posted on: June 28 2006 11:31 EDT
- in response to Thirupathi Katakam
Thirupathi, You may find that including this line at the beginning of your JSP file will help - without it the JSP compiler doesn't officially know that you class exists. Hope this helps, Bob -
Re: Parsing of JSP file failed:[ Go to top ]
- Posted by: Robert Saulnier
- Posted on: June 28 2006 13:36 EDT
- in response to Bob Armour
Either your code or your post has a typo: class="com.instantJsp.LoginManager" scope="application"/> Change it to: You don't need to import the class if you use it's fully-qualified name. Bob