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 user@struts.apache.org To: user@struts.apache.org Subject: Interceptor to Autheticate User Date: Fri, 16 Feb

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

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

2007-02-08 Thread Yee Kai Lai
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 JS. I think

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 =

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