Cannot create JDBC driver of class '' for connect URL 'null'

2006-12-03 Thread nagesh.kumar
Hi iam working on jakarta-tomcat-5.5.9 iam trying to read DATASOuRCE configured from the server.xml as defined in the http://tomcat.apache.org/tomcat-5.5-doc/jndi-resources-howto.html But iam getting this same error message on console iam strucked please help me Thanks in ADVANCE. DEBUG org.ap

Re: [S2]Could not find or error in struts.properties

2006-12-03 Thread WongTseng
thanks s lot. 2006/12/4, Don Brown <[EMAIL PROTECTED]>: struts.properties goes in WEB-INF/classes In the next version, 2.0.2, it is completely optional. Don On 12/3/06, WongTseng <[EMAIL PROTECTED]> wrote: > I am a newbie to Strus2, and I have just set up a Struts2 project of blank > example

Re: [S2]Could not find or error in struts.properties

2006-12-03 Thread Don Brown
struts.properties goes in WEB-INF/classes In the next version, 2.0.2, it is completely optional. Don On 12/3/06, WongTseng <[EMAIL PROTECTED]> wrote: I am a newbie to Strus2, and I have just set up a Struts2 project of blank example. When I start the web container, it throws an exception. jav

RE: [S2]Could not find or error in struts.properties

2006-12-03 Thread shibing.chen
Remove the struts.properties file located in WEB-INF to classes dir. 陈仕兵 LifeSystem CS, IT Application Developer Great Eastern Life Assurance (China) Co. Ltd. Tel: 86-021-6140 Ext 2405 86-021-28065394 Fax: 86-23-63885566 -Original Message- From: WongTseng [mailto:[EMAIL PROTECTED

[S2]Could not find or error in struts.properties

2006-12-03 Thread WongTseng
I am a newbie to Strus2, and I have just set up a Struts2 project of blank example. When I start the web container, it throws an exception. java.lang.IllegalStateException: struts.properties missing at org.apache.struts2.config.PropertiesSettings.( PropertiesSettings.java:49) at org.apache.

Re: Struts 2 and passing data using interceptors

2006-12-03 Thread fahlen
Hi Mark! I replaced the line Display with /crosseyed/Display.jsp as you suggested, and now it works :) Thank you for all your help!! Mark Menard wrote: > > On 12/2/06 10:45 AM, "fahlen" <[EMAIL PROTECTED]> wrote: > >> >> Hi Mark, >> >> I've tried this now, but I'm unable to acce

Re: Problem with re displaying optionsCollection

2006-12-03 Thread Paul Benedict
If you put the list in request scope, it disappears when the request is finished. That's why you're probably getting the error: the second request (failed validation) is trying to re-display the collection, but it no longer exists. You should either (1) put the list in sesssion scope or (2) tu

Problem with re displaying optionsCollection

2006-12-03 Thread Prakash Inuganti -X \(pinugant - Digital-X, Inc. at Cisco\)
Hi, I am having an issue with select list and not able to figure out a resolution. Any help is greatly appreciated. Here is the scenario. I have 2 action classes. One (Approve.do) for displaying the form with prepopulated values from database. A second Action(SaveApprove.do) to take the form valu

Re: Struts 2 and passing data using interceptors

2006-12-03 Thread Mark Menard
On 12/2/06 10:45 AM, "fahlen" <[EMAIL PROTECTED]> wrote: > > Hi Mark, > > I've tried this now, but I'm unable to access the data from the JSP. In the > struts.xml configuration file, the action involved is configured this way: > > > /crosseyed/Search.jsp > Display >

Re: getting formbean properties in Action class

2006-12-03 Thread Nuwan Chandrasoma
Hi, I use the property utils, PropertyUtils.getSimpleProperty(aForm, "exchange"); PropertyUtils.seetSimpleProperty(aForm, "exchange","NASDAQ"); Thanks, Nuwan. - Original Message - From: "Thomas Thomas" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Sunday, December 03,

getting formbean properties in Action class

2006-12-03 Thread Thomas Thomas
Hi, To get the properties these two ways work : 1) System.out.println("lastName = " + custForm.get("login")); 2) System.out.println("lastName = " + request.getParameter("login")); Why should I use 1) rather than 2) ? Thank u.