Title: FW: Missing attribute value in JSP


 -----Original Message-----
From:   William Blackmon 
Sent:   Thursday, March 29, 2001 5:22 PM
To:     '[EMAIL PROTECTED]'
Subject:        Missing attribute value in JSP

I receive the following error:
'org.apache.jasper.compiler.ParseException: C:\tomcat\webapps\bill\jsp\userProcess.jsp(0,31) Attribute , has no value '
when I run the following JSP:
<%@ page import="java.util.*", import="user.UserBean" %>
<jsp:userBean id="userBean" class="UserBean" scope="request">
        <jsp:setProperty name="userBean" property="*"/>
</jsp:userBean>
<%
        if(userBean.validate()) {
%>
                 <jsp:forward page="userSuccess.jsp"/>
<%
        } else {
%>
                <jsp:forward page="userRetry.jsp"/>
<%
}
%>
Both of the forward jsp pages exist. The UserBean.class has been tested and has been used successfully by other JSP files and is not outputting

The error message is a bit to cryptic to a newbie like myself.

Thanks,
Bill Blackmon



Bill Blackmon
Sr. Software Engineer, GetMusic (http://www.getmusic.com)
11 W. 19th Street, 3rd Floor
New York, NY  10011
917-464-0683

Reply via email to