Re: StrutsTestCases

2006-04-28 Thread ichy
a relative path from WEB-INF. you can try 1. call setConfigFile() in setUp() 2. specify a relative path i hope this will help. regards. ichy 2006/4/28, Chaitanya Parkhi <[EMAIL PROTECTED]>: > hi Ed,ya this is the same problem i m trying to solve. i hav removed that > addtional

Re: Refreshing the application properties

2005-09-20 Thread ichy
hi, Jade. commons-configuration may fit to your needs. have you checked that out? 2005/9/21, Jadeler <[EMAIL PROTECTED]>: > > Is there a way to refresh the application properties > without redeploying or restarting a web app? I havent > found a way to do this. > > Jade > > __

Re: String concatenation

2005-07-28 Thread ichy
hi, Konrad. do you need to put dictionaryId to querystring? i come up with "> as an alternative regards ichy

Re: Upload problem with apache and SSL

2005-07-20 Thread ichy
sorry, too many zeros to be 100K. 2005/7/21, ichy <[EMAIL PROTECTED]>: > > Hi, Zsolt. > if the error page is of apache, there might be a config setting in > httpd.conf > to limit request size like > LimitRequestBody 1024 > in the case above, request larg

Re: Upload problem with apache and SSL

2005-07-20 Thread ichy
parameters, this shouldn't be the case. regards ichy

Re: JSP - Constant

2005-07-20 Thread ichy
sorry, you don't have to use page directive since you use full package name. so, another thing to check. i had a situation when i use and the constant value is primitive, i had to write as to make value as String. ichy

Re: JSP - Constant

2005-07-20 Thread ichy
do you have page directive like <%@ page import=" com.freescale.npidashboard.common.Constants.FormState.CREATE" %> regards ichy

Re: Struts how initialises the value

2005-07-20 Thread ichy
g abc; String abc = null; are the same. these are not struts specifc. are you talking about anything struts-specific thing such as ActionForm? regards ichy

Re: Accessing Cookie information

2005-07-14 Thread ichy
can access methods of Cookie class like <%= ((javax.servlet.http.Cookie)pageContext.getAttribute("username")).getValue() %> but i don't know if that's the way to use cookie, though. regards ichy

Re: html:select default value overwriting bean value

2005-07-14 Thread ichy
Hi, Tom did you try to use ActionForm#reset() to set default value for countryID to US ? getCountryID() you are talking is a method of ActionForm, right? ichy

Re: Validation framework

2005-07-13 Thread ichy
Hi, Rafael. you can find clue on the following documentation. http://struts.apache.org/userGuide/dev_validator.html check validwhen. ichy 2005/7/14, Rafael Taboada <[EMAIL PROTECTED]>: > > Hi folks I'm using validation framework in order to validate my fields in > a &g

Re: synchronization strategies

2005-07-12 Thread ichy
ete, error page saying "no such entity with id X" on second submit. in those cases, users cannot see the result of the first submit. but most of the time customers can understand what happend ( if they are the malicious, truely they knew ). i hope this wil cover some of your interest

Re: Access to a database with a configuration file

2004-12-04 Thread ichy
Hi, Philippe. >But I have a problem when I want to load the database.xml file : I can't get >its path when my webapp is loaded. > >The instruction getClass().getResource(".").getFile() always return null. > > > >How could I do ? if your question is how to load xm