Help Needed - JavaCompile error in JSPs

I have imported the existing WSADIE 4.x application from clearcase into my workspace in WSADIE 5.1 and tweaked with some build paths.Many errors got resolved by that,but some are remaining

I have not made any changes in code.not at all.and obviously the existing application should be proper.

This is one of the errors in the JSP. There are few more errors of the same type.

***************************************************************************************

ContactUsPopUs.jsp

Code fragment in this JSP

<jsp:useBean id="userInfoBean" scope="session" class="bpp.base.data.UserInfoBean"/>

<% }

if (userInfoBean.isSegTypeValue("CONTACT_INFO","FAX")) { %>

Error

JavaCompile: The method isSegTypeValue(String, String) is undefined for the type UserInfoBean. ContactUsPopUp.jsp line 64

***************************************************************************************

UserInfoBean.java

The code fragment for that particular method:

public boolean isSegTypeValue(String aType, String aValue) {

boolean isIn = false;

int index;

String aList = (String)fCustSegMap.get(aType.toUpperCase());

index = aList.indexOf(aValue.toUpperCase());

if (index >= 0)

isIn = true;

return isIn;

}

***************************************************************************************

What can be the problem? Any solution?

[1473 byte] By [RatanKumara] at [2007-10-3 11:10:33]
# 1

1. Try do a clean project rebuild by menu option: project > clean

2. verify class UserInfoBean is compiled with no error

3. In your project's WEB-INF/classes folder, open the "UserInfoBean.class" to verify the method "public boolean isSegTypeValue(String aType, String aValue)" is show up.

4. check to see if that resolve the jsp compile error

katela at 2007-7-15 13:33:43 > top of Java-index,Java Essentials,Java Programming...