Struts + Commons 500 error

2006-07-07 Thread Raghuveer
When session expires in my JSP i am getting following error. I am using Struts Nested tags and validator framework. I am always using the collection in my actionform with Present,Empty tags always in my JSP. Experts,please share your comments..!! 06/07/08 11:55:24 test: Servlet error jav

Announcement: Strecks (Struts extensions for Java 5) version 1.0 beta 3 released

2006-07-07 Thread Phil Zoio
I'd like to announce the release of Strecks 1.0 beta 3. Strecks is a set of extensions to Struts aimed at Java 5 users aimed at streamlining development of Struts application with features such as POJO actions, interceptors, dependency injections, data binding, etc. For more details see http://

Struts HTML tag library clarification

2006-07-07 Thread Adam Gordon
According to the radio button section of the wiki page (http://wiki.apache.org/struts/StrutsWidgets), this is by design but I find it a little annoying... It appears that with the tag at the top of a JSP, an HTML input element gets closed correctly per bug 5518 (back in 2002). What I don't

Re: tomahawk + shale clay - Solution

2006-07-07 Thread stephan opitz
no exception anymore but calendar wont be rendered correct (html code available but i see nothing there where the cal should be) 2006/7/7, Gary VanMatre <[EMAIL PROTECTED]>: Your managed bean name is not correct in the binding expression. The managed bean names are *not* case insensitive. Cal

ActionForm is null when using dynabean

2006-07-07 Thread Yanroy
Hi, I'm fairly new to struts and I'm having a puzzling problem. Let me start with some quick background: I'm attempting to make a highly configurable and extensible web interface for a statistical analysis engine. Because of the large (and arbitrary) number of types of analyses, I opted not to c

[OT][ANN] JAVAWUG BOF XX / Oracle City of London / 13th July 2006 @ 7pm / Update

2006-07-07 Thread Peter Pilgrim
Hi All I would like announce the twentieth birds-of-a-feather (BOF 20) of the Java Web Users Group. The event will take place at Oracle City Of London One South Place London, England EC2M 2RB. The feature speakers: Emmanuel Okyere "RI

Re: Newbie question - JSP text box formatting

2006-07-07 Thread Simons Kevin
Sorry if I'm wrong, but can't you format numbers using CSS3? - Original Message - From: "Pillay, Kiren KN" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "Struts Users Mailing List" Sent: Friday, July 07, 2006 11:17 AM Subject: RE: Newbie question - JSP text box formatting Hi Albi,

Re: tomahawk + shale clay - Solution

2006-07-07 Thread Gary VanMatre
Your managed bean name is not correct in the binding expression. The managed bean names are *not* case insensitive. CalendarBean "#{calendarBean.firstDate}" Try: "#{CalendarBean.firstDate}" Gary -- Original message -- From: "stephan opitz" <[EMAIL PROTECTED]> > app

Re: tomahawk + shale clay - Solution

2006-07-07 Thread stephan opitz
applicationContext.xml http://www.springframework.org/dtd/spring-beans.dtd";> faces-config.xml CalendarBean de.fhb.calendar.CalendarBean request CalendarBean public class Calen

RE: Tiles: Passing a bean to tiles in a definition file

2006-07-07 Thread Dan Langer
-Original Message- From: Antonio Petrelli I agree with you, I think that this functionality isn't there for technical reasons, simply because Tiles definitions, when they are loaded, don't know about page scopes, that is needed to resolve beans. Why don't you open a bug ticket for tha

Re: tomahawk + shale clay - Solution

2006-07-07 Thread Gary VanMatre
>From: "stephan opitz" <[EMAIL PROTECTED]> > thx, but how i register them? > To register a managed bean using JSF, look in the /WEB-INF/faces-config.xml. Try something like this: calendarBean org.acme.CalendarBean request A few more examples: http://svn.apache.org/viewvc/s

Re: tomahawk + shale clay - Solution

2006-07-07 Thread stephan opitz
thx, but how i register them? 2006/7/7, Gary VanMatre <[EMAIL PROTECTED]>: >hello, > >i followed your instructions with the tomahawk-view-config.xml and >include it into web.xml >also i added tomahawk 1.11 libary into lib folder... > >now i wanted to use the calendar! > >i copied CalendarBean fr

Re: tomahawk + shale clay - Solution

2006-07-07 Thread Gary VanMatre
>hello, > >i followed your instructions with the tomahawk-view-config.xml and >include it into web.xml >also i added tomahawk 1.11 libary into lib folder... > >now i wanted to use the calendar! > >i copied CalendarBean from simple example... also i a configured als >rules. managed beans etc. > >alr

Form not found for locale 'en_US'

2006-07-07 Thread kumar.vinodh
Hi *, I am getting the below warning message for each request. 2006-07-07 11:20:12,140 WARN [org.apache.commons.validator.ValidatorResources] Form 'callcontrolForm' not found for locale 'en_US' I m not aware of this warning message. Is there anyway I can control this. Plz help me out in this.

Re: FW: html:text

2006-07-07 Thread fea jabi
Thanks for your response. have a table in one of the columns have . not all rows have the . need to validate the user entered values in the using validator.xml. Created an object.java file which holds the row data of the table. Created a list of these row objects and stored as a form prop

Re: how to create a struts project in eclipse 3.1.2 + WTP ?

2006-07-07 Thread hicham
On 7/7/06, Anil Kumar T <[EMAIL PROTECTED]> wrote: Hi Hicham, I'm also having the same problem. But I'm using eclipse 3.1.1. Hi anil the basic idea is there just create a dynamic web project, and then "import from a filsystem" each folder the necessary files from an existing struts project (

Using properties files other than ApplicationProperties

2006-07-07 Thread chamal desilva
Hi, I want store all messages in a properties file called MessageProperties. I added this line to struts config file. How can I retireve values in properties file from my action classes in order to display them using tag. Thanking You, Chamal.

Re: how to create a struts project in eclipse 3.1.2 + WTP ?

2006-07-07 Thread hicham
On 7/7/06, hicham <[EMAIL PROTECTED]> wrote: answering my own question : ) ( a silly one ) all I had to do is just import the filsesystem where a struts is located to a newly created dynamic web project and you are set Hicham ooops sorry I spoke too soon : ) import a struts project directory

Re: how to create a struts project in eclipse 3.1.2 + WTP ?

2006-07-07 Thread hicham
answering my own question : ) ( a silly one ) all I had to do is just import the filsesystem where a struts is located to a newly created dynamic web project and you are set Hicham - To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

RE: how to create a struts project in eclipse 3.1.2 + WTP ?

2006-07-07 Thread Anil Kumar T
Hi Hicham, I'm also having the same problem. But I'm using eclipse 3.1.1. Hi All, Any help would be appreciated in this regard. Thanks, Anil. -Original Message- From: hicham [mailto:[EMAIL PROTECTED] Sent: Friday, July 07, 2006 3:57 PM To: Struts Users Mailing List Subject: how to crea

how to create a struts project in eclipse 3.1.2 + WTP ?

2006-07-07 Thread hicham
Hello a newbie question. This seems to be an eclipse question more than a struts one ? I'm trying to import the struts examples that comes with the struts project, into eclipse 3.1.2 and offcourse using WTP plugin I've found this example in "http://struts.apache.org/1.x/faqs/eclipse.html"; but i

RE: Newbie question - JSP text box formatting

2006-07-07 Thread Pillay, Kiren KN
Hi Albi, I actually need to format and tag's values, where the values are pulled out of a database. Is this possible? Regards -Original Message- From: Albrecht Leiprecht [mailto:[EMAIL PROTECTED] Sent: 06 July 2006 06:47 PM To: 'Struts Users Mailing List' Subject: RE: Newbie question

Re: problem with modules : Cannot retrieve mapping

2006-07-07 Thread niels
Actually I don't want to switch modules, I want to 'access' an action form another module On 7/6/06, Laurie Harper <[EMAIL PROTECTED]> wrote: niels wrote: > have 2 modules: moduleA and moduleB > in struts-config.xml from moduleA: > > > > where testA is located on the filesystem in : /moduleA/