hi..kyle..
i did the process what u suggested me.now my ibm-web-ext.xmi is with keep generated value as true.i did this through AAT,and i have redeployed total ear .but still iam getting the same error what i posted u in the earlier.
ok..if u want to see my ApplicationAreas.jsp..here is my code..
but the log is same as before..
here is my jsp:
page import = "ezc.ezparam.EzLogonStatus"
page import = "ezc.ezcommon.EzGlobalConfig"
page import="ezc.ezparam.ReturnObjFromRetrieve"
jsp:useBean id="Session" class="ezc.session.EzSession" scope="session"
jsp:useBean
System.out.println("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Session Object is......................"+Session);
//System.out.println("I am in iconfirm");
response.setHeader("Pragma", "No-cache");
response.setDateHeader("Expires", 0);
response.setHeader("Cache-Control", "no-cache");
System.out.println("System number is : " + POsysType);
ezc.session.EzLogonStructure logs = new ezc.session.EzLogonStructure();
String userId = request.getParameter( "username" );
String passWord = request.getParameter( "password" );
String language = request.getParameter( "Language" );
session.putValue("userid",userId);
if(userId != null){
userId = userId.toUpperCase();
}
we need not set the user group
//logs.setUserGroup("555");
logs.setUserId(userId);
logs.setPassWd(passWord);
// logs.setConnGroup("555");
logs.setConnGroup("555");
ezc.ezparam.EzLogonStatus LogonStatus = (ezc.ezparam.EzLogonStatus)Session.logon(logs);
ReturnObjFromRetrieve retLog= LogonStatus.getUserInfo();
System.out.println("User info is.......................");
System.out.println(retLog.toEzcString());
System.out.println("User info Over.......................");
Check for logon status
if ( LogonStatus.IsSuccess())
{
//Redirect to our index page
// response.sendRedirect("../EzCommerce/service/service1/jsps/misc/menuframeset.jsp");
response.sendRedirect("Applications.jsp");
}
else
{
//Redirect to Error/Login Retry Page
response.sendRedirect("loginerror.jsp");
}
----
actually that one is .jsp.but i have removed all tgas to post u the code.if i posted the jsp with tags javaranch is giving problemso i have removed all tags to post u(this is for posting purpose only)
really i got frustrated with these problems.so pl suggest me..kyle..
really i need ur help..i am in uncertain situation..
waiting for ur response..
thx..
sesradmin