RE: Interceptor to Autheticate User

2007-02-17 Thread Yee Kai Lai
Hi, the problem might be because you have forgotten to import certain jar that should contain SystemUtil class. From: manoj sinha <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: user@struts.apache.org Subject: Interceptor to Autheticate User Date: Fri, 16 Feb 2007 06:17:32 -0800

RE: Invalid Column Type Exception

2007-02-09 Thread Yee Kai Lai
From the exception stacktrace, I see that the following sql might have problem. INSERT INTO GWS_USERS(USR_LOGIN_N_BY, USR_PROF_UPDATE_DATE, USR_SYS_NO, USR_DISPLAY_FUND_WATCHLIST,USR_REESTABLISH, USR_EMAIL_SUPPRESSION_FLAG, USR_PEGA_SHARE_ID,USR_USER_TYPE, USR_EMAIL_>lumn type; nested exceptio

RE: bean:define

2007-02-08 Thread Yee Kai Lai
class FormBean() { private String xxx; public String getXXX() { return this.xxx; } public void setXXX(String xxx) { this.xxx = xxx; } } session.setAttribute("formbean",new FormBean().setXXX("")); FormBean oFormeBean = (FormBean)session.getAttribute("formbean"); String xxx = oForme

RE: Struts action call in a JS method returns blank page

2007-02-08 Thread Yee Kai Lai
I have other alternatives? Chris ____________ From: Yee Kai Lai [mailto:[EMAIL PROTECTED] Sent: Thu 2/8/2007 12:24 AM To: user@struts.apache.org Subject: RE: Struts action call in a JS method returns blank page It returns a blank page might be due to form.submit(); in your J

RE: Struts action call in a JS method returns blank page

2007-02-07 Thread Yee Kai Lai
It returns a blank page might be due to form.submit(); in your JS. I think if you have a form named 'service.device.selected-devices-form' then it will never be null hence it will always submit. May you could enlightened why u need a form.submit() ? From: "Christopher Loschen" <[EMAIL PRO