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?

