Good day! I am new in this forum and I am also new in Java development. I am trying to run an application and encountered this error.

  Error 500: javax.servlet.ServletException: /Content.jsp(47,8) '#{bundle['NAVIGATION_NAME']}: #{userInfo.name}' Error reading 'name' on type com.wbit.tel.client.jsf.infrastructure.UserInfo 

Here is the Content.jsp file:

  <h:panelGrid styleClass="BackgroundNAV" columns="1">
    <h:form>

    <h:panelGrid styleClass="BackgroundHome" columns="1">
        <h:commandLink styleClass="NavigationLabelHome" action="Workplace">
             <h:outputText value="#{bundle['NAVIGATION_HOME']}" /> 
        </h:commandLink>
        <h:outputText rendered="#{arrayMetaInfo.init}" />       
    </h:panelGrid>


        <h:panelGrid styleClass="BackgroundBC" columns="1">
            <h:outputText styleClass="NavigationLabelBC" 
                            value="#{bundle['NAVIGATION_BUSINESS_CASES']}" />
            <h:commandLink styleClass="NavigationLink" action="BCCreate">
                <h:outputText value="#{bundle['NAVIGATION_CREATE_NEW']}" /> 
            </h:commandLink>

        </h:panelGrid>

    </h:form>
    <h:form target="_top">
        <h:panelGrid styleClass="BackgroundLO" columns="1">
            <h:outputText styleClass="NavigationLabelLO" 
                value="#{bundle['NAVIGATION_USER']}" />


            <h:outputText styleClass="NavigationLink" 
                value="#{bundle['NAVIGATION_NAME']}: #{userInfo.name}" />
            <h:outputText styleClass="NavigationLink" 
                value="#{bundle['NAVIGATION_EMAIL']}: #{userInfo.email}" />

        </h:panelGrid>
    </h:form>
    <h:form target="_top">
        <h:panelGrid styleClass="BackgroundLO" columns="1">
                <h:commandLink styleClass="NavigationLink" action="Logout">
                    <h:outputText value="#{bundle['NAVIGATION_LOGOUT']}" /> 
                </h:commandLink>
        </h:panelGrid>
    </h:form>
  </h:panelGrid>

Here's the userInfo.java file:

public class UserInfo implements Serializable {

private static final long serialVersionUID = 1L;

private java.util.Hashtable ownerInfo   = null;
private String userDisplayName          = null;
private String userFirstName            = null;
private String userLastName             = null;
private String userEmail                = null;
private String managerEmail             = null;
private java.util.Hashtable managerInfo = null;
private String currentRemoteUser        = null;
private boolean isLoggedIn              = false;


public UserInfo() {
    super();
    this.setLoggedIn(false);
}

public void userSetUp(String userID){
    try{
        if(userID == null) {
            userID = FacesUtils.getContext().getRemoteUser();
        }

        //we can't find a user?? I gues we are not logged in...
        if(userID == null || userID.trim().isEmpty()) {
            this.setLoggedIn(false);
        } else {
            BPResults results = BluePages.getPersonByCnum(userID);

            //user info
            ownerInfo               = results.getRow(0);

            String name             = (String) ownerInfo.get("NAME");
            userDisplayName         = BluePagesUtil.formatName(name);
            String names[]          = BluePagesUtil.separateName(name);
            userFirstName           = names[0];
            userLastName            = names[1];
            userEmail               = (String) ownerInfo.get("INTERNET");

            // This is to prevent certain processes that try to send mail to this email
            // from freaking out about a null value.
            userEmail = userEmail == null ? "" : userEmail; 
            //manager info
            BPResults management    = BluePages.getMgrChainOf(userID);
            managerInfo             = management.getRow(0);
            managerEmail            = (String)managerInfo.get("INTERNET");

            currentRemoteUser = userID;
        }
    } catch(Exception e) {
        //do nothing
        e.printStackTrace();
    }
}

/**
 * Return the locale for the user.
 */
public Locale getLocale() {
    return FacesUtils.getLocale();
}

/**
 * Return the name of current user.
 */
public String getName() {
    if (userDisplayName == null || currentRemoteUser == null 
            || !currentRemoteUser.equals(FacesUtils.getContext().getRemoteUser())) {
        userSetUp(null);
    }
    return userDisplayName;
}

public String getFirstName() {
    return userFirstName;
}

public void setFirstName(String userFirstName) {
    this.userFirstName = userFirstName;
}

public String getLastName() {
    return userLastName;
}

public void setLastName(String userLastName) {
    this.userLastName = userLastName;
}

/**
 * Return the email of current user.
 */
public String getEmail() {
    if (userEmail == null || currentRemoteUser == null 
            || !currentRemoteUser.equals(FacesUtils.getContext().getRemoteUser())) {
        userSetUp(null);
    }
    return userEmail;
}

public String getID() {
    return this.currentRemoteUser;
}

/**
 * Return the manager email of current user.
 */
@SuppressWarnings("unused")
private String getManagerEmail() {
    if (managerEmail == null || currentRemoteUser == null 
            || !currentRemoteUser.equals(FacesUtils.getContext().getRemoteUser())) {
        userSetUp(null);
    }
    return managerEmail;
}

/** 
 * Is user logged in? The user can exist but be not logged in. 
 * The status for this is set explicitly by the login form.
 */
public boolean isLoggedIn() {
    return isLoggedIn;
}

/** 
 * Is user logged in? The user can exist but be not logged in. 
 * The status for this is set explicitly by the login form.
 */
public void setLoggedIn(boolean isLoggedIn) {
    this.isLoggedIn = isLoggedIn;
    if(this.isLoggedIn)
        this.userSetUp(null);
}

@Override
public String toString() {
    return "Logged in? " + this.isLoggedIn + (!this.isLoggedIn ? "" : " - " + this.userEmail + " - " + this.userDisplayName); 
}

public void setEmail (String email){}
public void setID (String ID){}

}

Important NOTE: This code worked in a different project/module. I don't understand why it don't work in a new project/module. Is there a need for me to change "userInfo.name" to another variable name? If so, where should I change it?

I really need help. I am still learning, I hope someone can spend time helping me on this.

Thanks!

2

There are 2 best solutions below

3
On

You should debug the String getName() method. Sometimes, when a exception is thrown by the accessed method, the JSF just return the error and the line where it happened at the page.

1
On

So when you are referring {userInfo.name} from your jsp - it is actually calling userInfo.getName() method on your userInfo object. From what I can see there is no name field in UserInfo class as there is no such method there. You could change your jsp with {userInfo.userDisplayName} or add getName() method in your UserInfo class.

PS: the same with email field as there is also {userInfo.email} reference on jsp.