RE: problem with module

2004-03-26 Thread Colm Garvey
ailto:[EMAIL PROTECTED] Sent: 25 March 2004 15:22 To: Struts Users Mailing List Subject: Re: problem with module Daniel wrote: >If someone know the solution help us.. > > >- Original Message - >From: "Daniel" <[EMAIL PROTECTED]> >To: "Struts U

Re: problem with module

2004-03-25 Thread ruben
Daniel wrote: If someone know the solution help us.. - Original Message - From: "Daniel" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, March 25, 2004 11:01 AM Subject: Re: problem with module Hi I have th

Re: problem with module

2004-03-25 Thread Daniel
If someone know the solution help us.. - Original Message - From: "Daniel" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, March 25, 2004 11:01 AM Subject: Re: problem with module > Hi I have the the same probl

Re: problem with module

2004-03-25 Thread Daniel
Hi I have the the same problem, but in other situation, I using popups windows of other modules, if you find the solution tell me , if I find the solution I tell you... - Original Message - From: "ruben" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursda

Re: problem

2004-03-24 Thread ruben
It works well, thanks. try page="/SomeAction.do" On 24 Mar 2004, at 17:50, Ruben Pardo wrote: i've got the next tag and in the actionConfig but i always get an error saying that attribute action does not defined in the tld? what could it be? thanks in advance. _

Re: problem

2004-03-24 Thread Mark Lowe
try page="/SomeAction.do" On 24 Mar 2004, at 17:50, Ruben Pardo wrote: i've got the next tag and in the actionConfig but i always get an error saying that attribute action does not defined in the tld? what could it be? thanks in advance. ___ Yaho

Re: Problem in Deploying

2004-03-18 Thread Hari_s
probably the problem came from your deployment descriptor, such as welcome file list or the url. - Original Message - From: "Iwan Soenarto (IT)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 18, 2004 3:18 PM Subject: Problem in Deploying HTTP Status 404 - /StrutsN

RE: Problem with

2004-03-18 Thread Scherger, Derek
Thanks! That actually works even better for what I'm trying to do. Cheers, Derek -Original Message- From: Paul, R. Chip [mailto:[EMAIL PROTECTED] Sent: Thursday, March 18, 2004 9:32 AM To: 'Struts Users Mailing List' Subject: RE: Problem with mailto:[EMAIL PROTECTED]

RE: Problem with

2004-03-18 Thread Paul, R. Chip
No, the ignore attribute means an exception won't get thrown if the tiles attribute is not present, as it would be if you left out the tag all together. It can't help that a valid attribute was specified that points to a nonexistant file. -Original Message- From: Scherger, Derek [mailto:

Re: Problem in Deploying

2004-03-18 Thread Max Cooper
The app probably did not deploy. Consult the server log to figure out why. -Max - Original Message - From: "Iwan Soenarto (IT)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 18, 2004 12:18 AM Subject: Problem in Deploying HTTP Status 404 - /StrutsNetBeansSample/Tes

Re: problem with adding ActionMessage to ActionErrors

2004-03-15 Thread yoge
Use * * instead of ** Bradford M. Ayers wrote: I noticed in the documentation that ActionError is deprecated, so I was trying to be a good doobie and use ActionMessage like the docs say to. So in my code, when I go from this: errors.add( ActionErrors.GLOBAL_ERROR, new ActionMessage( "

Re: Problem with Map-backed ActionForm and Key value

2004-03-07 Thread Craig Tataryn
Heh, Brian you were having the same problem I was. I posted yesterday with subject: "[RT Expr] for html:text property" Craig M replied quoting the JSP spec (Third download button on page: http://www.jcp.org/aboutJava/communityprocess/final/jsr053/), to quote section JSP.2.13.1 Request Time Attr

Re: Problem with Map-backed ActionForm and Key value

2004-03-07 Thread Geeta Ramani
ROTECTED]> > >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> > >To: Struts Users Mailing List <[EMAIL PROTECTED]> > >Subject: Re: Problem with Map-backed ActionForm and Key value > >Date: Sun, 07 Mar 2004 12:30:43 -0500 > >MIME-Version: 1.0 &

Re: Problem with Map-backed ActionForm and Key value

2004-03-07 Thread Daniel Henrique Alves Lima
Try <% String propertyName = "value(" + myId + ")"; %> Brian Boyle wrote: Hi!, Thanks for the quick response. I have already tried declaring myId as String myId = value.getCandId();. I then put myId as an argument in but the key value is still being taken literally as <%=myId%>. I don't kno

Re: Problem with Map-backed ActionForm and Key value

2004-03-07 Thread Brian Boyle
able to pass in an argument as long as it is of type String? Brian From: "Geeta Ramani" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: Struts Users Mailing List <[EMAIL PROTECTED]> Subject: Re: Problem with Map-backed Ac

Re: Problem with Map-backed ActionForm and Key value

2004-03-07 Thread Geeta Ramani
Hey Brian: Have you tried evaluating the keyValue ahead of time? As in: <%String myKey = ..blah-blah.. using userId;%> and then: Give it a shot if you haven't.. Good luck! Geeta Brian Boyle wrote: > Hey, I am using a map-backed ActionForm and so in my JSP code I have a > tag that looks like

Re: Problem in iterating

2004-03-04 Thread Vishal Arora
Thanks to u all the problem is solved it has started working Thanks very much will keep on disturbing whenever wherever i get stuck. Vishal. Daniel Henrique Alves Lima wrote: > Had you import the "logic" taglib ? > > Vishal Arora wrote: > > >earlier i was using just logic iterate

Re: Problem in iterating

2004-03-04 Thread Vishal Arora
nge your > attitude.. > > -Original Message- > From: Vishal Arora [mailto:[EMAIL PROTECTED] > Sent: Friday, March 05, 2004 11:05 AM > To: [EMAIL PROTECTED]; Gandhi, Snehal Kishore (Cognizant); > [EMAIL PROTECTED] > Subject: Re: P

Re: Problem in iterating

2004-03-04 Thread Vishal Arora
yes i have already set my bean in session in my Action class and my bean is a simple java bean Daniel Henrique Alves Lima wrote: > If the bean is an ActionForm, you must use the name of the form in the > struts-config.xml. > If your bean is only a plain Java Bean, you must add it to request, >

Re: Problem in iterating

2004-03-04 Thread Daniel Henrique Alves Lima
If the bean is an ActionForm, you must use the name of the form in the struts-config.xml. If your bean is only a plain Java Bean, you must add it to request, session, page or application scopes (using request.setAttribute() or session.setAttribute, for instance)... Vishal Arora wrote: it's sti

Re: Problem in iterating

2004-03-04 Thread Vishal Arora
Friday, March 05, 2004 11:05 AM > To: [EMAIL PROTECTED]; Gandhi, Snehal Kishore (Cognizant); > [EMAIL PROTECTED] > Subject: Re: Problem in iterating > > i have used like this as u and Gandhi have told. > > > > > > > but s

RE: Problem in iterating

2004-03-04 Thread Gandhi, Snehal Kishore (Cognizant)
Gandhi, Snehal Kishore (Cognizant); [EMAIL PROTECTED] Subject: Re: Problem in iterating i have used like this as u and Gandhi have told. but still it's giving error javax.servlet.ServletException: Cannot find bean wbs in any scope Help ou

Re: Problem in iterating

2004-03-04 Thread Paul Stanton
have you set an attribute called "wbs" on any scope? ie, is there an attribute called "wbs" on the request? pageContext? session? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problem in iterating

2004-03-04 Thread Vishal Arora
i have used like this as u and Gandhi have told. but still it's giving error javax.servlet.ServletException: Cannot find bean wbs in any scope Help out . Thanks, Daniel Henrique Alves Lima wrote: > Ok. > > If you put your bean in any

Re: Problem in iterating

2004-03-04 Thread Paul Stanton
actually, misread. ghandi's is for a print. if you need to use fields and write back to the form, you'll have to do what i said in the first place. i'm sure there a tut somewhere? - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Problem in iterating

2004-03-04 Thread Paul Stanton
try ghandi's solution. if it works it will tidy up how i have been doing things. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problem in iterating

2004-03-04 Thread Vishal Arora
I m not able to get u. can u explain with some code. as i m new to struts Thanks Paul Stanton wrote: > you need to use an indexed getter and setter for the field. ie: if you > have a 'public List getValues()' create a 'public Object getValue(int > i)'. this is step 1. > > now in your logic ite

RE: Problem in iterating

2004-03-04 Thread Gandhi, Snehal Kishore (Cognizant)
ng your job is not to change your job but to change your attitude.. -Original Message- From: Vishal Arora [mailto:[EMAIL PROTECTED] Sent: Friday, March 05, 2004 9:57 AM To: Struts Users Mailing List Subject: Re: Problem in iterating i m using that only but the problem is that . I have Be

Re: Problem in iterating

2004-03-04 Thread Paul Stanton
you need to use an indexed getter and setter for the field. ie: if you have a 'public List getValues()' create a 'public Object getValue(int i)'. this is step 1. now in your logic iterate, create a string like "value["+i+"].fieldname" and put that in your property for your field ie "" Vishal A

Re: Problem in iterating

2004-03-04 Thread Vishal Arora
i m using that only but the problem is that . I have Bean whose setSomething(ArrayList als) returns ArrayList object and inside this arraylist i have no of bean instances which have set and get methods now my problem is how to extract the arraylist from bean and then beans get ter setter from

RE: Problem in iterating

2004-03-04 Thread Shobhana.S, ASDC Chennai
Hi i think u can use to iterate and to dispaly the values.. -Original Message- From: Vishal Arora [mailto:[EMAIL PROTECTED] Sent: Friday, March 05, 2004 9:46 AM To: [EMAIL PROTECTED] Subject: Problem in iterating Hi All, My problem is that i m storing bean instances in a

Re: Problem with focus in form

2004-03-04 Thread Geeta Ramani
Shobana: Maybe you can post the relavant code so someone could spot a problem..? Regards, Geeta "Shobhana.S, ASDC Chennai" wrote: > hi1 > > i've got different filed names..i've set the focus for the text field > only..but i get an additional focus for a button..y so? > > shobhana

RE: Problem with focus in form

2004-03-04 Thread Shobhana.S, ASDC Chennai
st Subject: RE: Problem with focus in form Hi, Pls, check the field name for which u r setting the focus. Umesh A -Original Message- From: Shobhana.S, ASDC Chennai [mailto:[EMAIL PROTECTED] Sent: Thursday, March 04, 2004 4:48 PM To: Struts Users Mailing List Subject: Problem

RE: Problem with focus in form

2004-03-04 Thread A Umesh
Hi, Pls, check the field name for which u r setting the focus. Umesh A -Original Message- From: Shobhana.S, ASDC Chennai [mailto:[EMAIL PROTECTED] Sent: Thursday, March 04, 2004 4:48 PM To: Struts Users Mailing List Subject: Problem with focus in form Hi1 Actually i have a fo

Re: problem

2004-03-03 Thread sean
sean ubs.com> writes: > > > > > adding the filter="true" did the trick - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: problem with URL forwarding

2004-03-01 Thread Raj Atchutuni
Watch these following url. They work fine in the browser directly. The second one does'nt work through struts-config.xml. First one works fine either way. Can some one tell me the reason for this ? pls. https://server.mycompany.com/webapp/wcs/stores/servlet/MYAUCTION/index.jsp https://server.myco

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-29 Thread Martin Sturzenegger
et the list to empty properly. > >HTH. >regards, >Shirish > >-Original Message- >From: Martin Sturzenegger [mailto:[EMAIL PROTECTED] >Sent: Friday, February 27, 2004 3:28 PM >To: Struts Users Mailing List >Subject: RE: Problem in nested tags- Very Urgent - Please Help

RE: Problem with loss form (session scope)

2004-02-28 Thread Andrew Hill
: Saturday, 28 February 2004 06:03 To: 'Struts Users Mailing List'; [EMAIL PROTECTED] Subject: RE: Problem with loss form (session scope) One thing I found out that the reset method was getting called everytime if there is no error return from validation. This could cause the form to be re

RE: Problem with loss form (session scope)

2004-02-27 Thread Betty Koon
AM To: Struts Subject: RE: Problem with loss form (session scope) Hmm. That does sound rather odd! Like you say, should not be like that. :-( Only thing I can thing of here is: Is it the same session? (grasping at straws now!) Try println/logging the sessionId from the action and see if its

Re: Problem with tags and overloaded methods

2004-02-27 Thread Martin Cooper
"Slattery, Tim - BLS" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > > I reiterate, I believe it's a bad idea to use the same > > method name for > > > two different property mappings. If you can find some > > documentation > > > that recommends you do that, I'd like to see it. >

Re: Problem with loss form (session scope)

2004-02-27 Thread rick
CTED]> >To: "'Struts Users Mailing List'" [EMAIL PROTECTED]>; >[EMAIL PROTECTED]> >Sent: Friday, February 27, 2004 3:41 AM >Subject: RE: Problem with loss form (session scope) > > >> Well, sorry for being vague. It's a very vague problem,

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread shirishchandra.sakhare
? If the form is session scoped, make sure you reset the list to empty properly. HTH. regards, Shirish -Original Message- From: Martin Sturzenegger [mailto:[EMAIL PROTECTED] Sent: Friday, February 27, 2004 3:28 PM To: Struts Users Mailing List Subject: RE: Problem in nested tags- Very

RE: Problem with tags and overloaded methods

2004-02-27 Thread Slattery, Tim - BLS
> > I reiterate, I believe it's a bad idea to use the same > method name for > > two different property mappings. If you can find some > documentation > > that recommends you do that, I'd like to see it. > > I believe Tim is referring to what is defined in section > 8.3.3 of the JavaBeans sp

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread Martin Sturzenegger
>> } >> }; >> this.actionList = ListUtils.lazyList(new ArrayList(), >> factory); >> } >> >> // Getter/setters for list omitted >> } >> >> -Original Message- >> From

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread Parthasarathy Kesavaraj
Thx chris for pointing to this... With Regards Partha -Original Message- From: McCormack, Chris [mailto:[EMAIL PROTECTED] Sent: Friday, February 27, 2004 5:51 PM To: Struts Users Mailing List Subject: RE: Problem in nested tags- Very Urgent - Please Help >i'll try to use l

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread shirishchandra.sakhare
TED] Sent: Friday, February 27, 2004 1:21 PM To: Struts Users Mailing List Subject: RE: Problem in nested tags- Very Urgent - Please Help >i'll try to use lazy list once i finish off my work Eugh... We have all done it, but that is how botches get in to production code. People usually get

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread McCormack, Chris
IL PROTECTED] Sent: 27 February 2004 09:45 To: 'Struts Users Mailing List' Subject: RE: Problem in nested tags- Very Urgent - Please Help Thanks mark , hubert and paul. i removed scope = request and it is working fine now. (Temporary fix :-)) i'll try to use lazy list once i f

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-27 Thread Parthasarathy Kesavaraj
PM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help Nice one.. For some reason i thought the Factory would involve more than it does, so i shied away from it. Cheers Mark On 26 Feb 2004, at 15:57, Paul, R. Chip wrote: > Note: I think this i

RE: Problem with loss form (session scope)

2004-02-27 Thread Andrew Hill
: Betty Koon [mailto:[EMAIL PROTECTED] Sent: Friday, 27 February 2004 15:39 To: 'Struts Users Mailing List'; [EMAIL PROTECTED] Subject: RE: Problem with loss form (session scope) I am sorry. I only have 1 action map to this form. So, I guess the name doesn't matter in this case.

RE: Problem with loss form (session scope)

2004-02-26 Thread Betty Koon
hat's what I am planning to do next, download the source code and stepped through it. -Betty -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 11:18 PM To: Struts Subject: RE: Problem with loss form (session scope) Ah, but you didnt act

RE: Problem with loss form (session scope)

2004-02-26 Thread Andrew Hill
7;; [EMAIL PROTECTED] Subject: RE: Problem with loss form (session scope) I specify my own name in the struts config. In my action, I just grabbed the action form from the execute method. And I am assumming struts fw get that from session for me in this case, rather than creating a new on

RE: Problem with loss form (session scope)

2004-02-26 Thread Betty Koon
? -Betty -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 10:59 PM To: Struts Users Mailing List Subject: RE: Problem with loss form (session scope) What attribute did you set the form to be stored under? If none will default to form name

RE: Problem with loss form (session scope)

2004-02-26 Thread Andrew Hill
14:51 To: 'Struts Users Mailing List' Subject: RE: Problem with loss form (session scope) In struts config's action definition, I set up the action to use a form in session scope. What I found out was, somehow the form constructor get called the 2nd time the action get

RE: Problem with loss form (session scope)

2004-02-26 Thread Betty Koon
idea? -Betty -Original Message- From: Niall Pemberton [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 9:06 PM To: Struts Users Mailing List Subject: Re: Problem with loss form (session scope) Without seeing your jsp/struts-config.xml/action its a bit of a guessing game. I&#x

RE: Problem with loss form (session scope)

2004-02-26 Thread Betty Koon
I don't think it's a timeout issue. I lost the form right after I posted a page. -Betty -Original Message- From: Niall Pemberton [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:34 PM To: Struts Users Mailing List Subject: Re: Problem with loss form (session scop

Re: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Mark Lowe
shirish posted this a few times. if you're scoping to request you'll need a while loop in your getFoo(int index) method public class OrgManagementForm extends ActionForm { private List addressList = new ArrayList(); public Address getAddress(int index) { while(index >= addre

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Paul, R. Chip
Or use the Commons Collections LazyList which handles this problem automatically. -Original Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:09 AM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help shirish

Re: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Mark Lowe
ry 26, 2004 8:09 AM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help shirish posted this a few times. if you're scoping to request you'll need a while loop in your getFoo(int index) method public class OrgManagementForm extends ActionForm

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Paul, R. Chip
:49 AM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help wouldn't mind an example of how to use lazy list if you have one. On 26 Feb 2004, at 15:33, Paul, R. Chip wrote: > Or use the Commons Collections LazyList which handles this

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Hubert Rabago
stUtils.lazyList(new ArrayList(), > factory); > } > > // Getter/setters for list omitted > } > > -Original Message- > From: Mark Lowe [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 26, 2004 8:49 AM > To: Struts Users Mailing List > Subje

Re: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Mark Lowe
(), factory); } // Getter/setters for list omitted } -Original Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:49 AM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help wouldn't mind an example o

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Parthasarathy Kesavaraj
Message- From: Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:35 PM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help Nice one.. For some reason i thought the Factory would involve more than it does, so i shied away from it

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Paul, R. Chip
1:24 AM To: 'Struts Users Mailing List' Subject: RE: Problem in nested tags- Very Urgent - Please Help Hi Thanks for ur replies. But i could not understand what actually is the problem and how lazy list will solve it. This is the first time i am coming across lazy list. can u explain

RE: Problem in nested tags- Very Urgent - Please Help

2004-02-26 Thread Parthasarathy Kesavaraj
:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:35 PM To: Struts Users Mailing List Subject: Re: Problem in nested tags- Very Urgent - Please Help Nice one.. For some reason i thought the Factory would involve more than it does, so i shied away from it. Cheers Mark On 26 Feb 2004, at 15

RE: Problem with tags and overloaded methods

2004-02-26 Thread Karr, David
Just so it's clear, I'm assuming that you have the "get" method overloaded, with the same method name being used for two different properties (even if you consider them the same conceptual property). I would guess that's always a bad idea. I'm somewhat surprised that it works on one platform with

RE: Problem with tags and overloaded methods

2004-02-26 Thread Slattery, Tim - BLS
> Just so it's clear, I'm assuming that you have the "get" > method overloaded, with the same method name being used for > two different properties (even if you consider them the same > conceptual property). > I would guess that's always a bad idea. Huh? I thought that's what we were supposed

RE: Problem with tags and overloaded methods

2004-02-26 Thread Karr, David
lto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 12:35 PM To: 'Struts Users Mailing List' Subject: RE: Problem with tags and overloaded methods > Just so it's clear, I'm assuming that you have the "get" > method overloaded, with the same method name being us

Re: Problem with tags and overloaded methods

2004-02-26 Thread Martin Cooper
LS = "WebLogic Server". > > -Original Message- > From: Slattery, Tim - BLS [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 26, 2004 12:35 PM > To: 'Struts Users Mailing List' > Subject: RE: Problem with tags and overloaded methods > > > >

RE: Problem with loss form (session scope)

2004-02-26 Thread Andrew Hill
Yeh. I like had one, and like I went out to lunch, and it was like a long lunch, and like when I came back my form was like you know totally like gone. In fact like, I couldnt even like you know find my whole session, and I was like "whoa! dude - wheres my session?". ;-> Perhaps you could be a

RE: Problem with loss form (session scope)

2004-02-26 Thread Betty Koon
ssage- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 7:31 PM To: Struts Users Mailing List Subject: RE: Problem with loss form (session scope) Yeh. I like had one, and like I went out to lunch, and it was like a long lunch, and like when I came back my form wa

Re: Problem with loss form (session scope)

2004-02-26 Thread Niall Pemberton
"Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, February 27, 2004 3:30 AM Subject: RE: Problem with loss form (session scope) > > Yeh. I like had one, and like I went out to lunch, and it was like a long > lunch, and like when I came back my form was like yo

Re: Problem with loss form (session scope)

2004-02-26 Thread Niall Pemberton
well please. Niall - Original Message - From: "Betty Koon" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, February 27, 2004 3:41 AM Subject: RE: Problem with loss form (session

Re: Problem in population of VO

2004-02-24 Thread Niall Pemberton
> > -Original Message- > From: Parthasarathy Kesavaraj > Sent: Tuesday, February 24, 2004 10:36 AM > To: 'Struts Users Mailing List' > Subject: RE: Problem in population of VO > > > Hi > > Sorry for the delayed response. I'll make it c

RE: Problem in population of VO

2004-02-23 Thread Parthasarathy Kesavaraj
With Regards Partha -Original Message- From: Michael McGrady [mailto:[EMAIL PROTECTED] Sent: Saturday, February 21, 2004 5:47 PM To: Struts Users Mailing List Subject: Re: Problem in population of VO I am not sure how to read this. It seems to say that, when you submit a form, the v

RE: Problem updating bean from multi-select box

2004-02-23 Thread Andrew Bate
rew Hill [mailto:[EMAIL PROTECTED] > Sent: 23 February 2004 11:10 > To: Struts Users Mailing List > Subject: RE: Problem updating bean from multi-select box > > > ok. Seems to rule out that possibility then. > Whats the error your getting? > > -Original Mess

RE: Problem updating bean from multi-select box

2004-02-23 Thread Andrew Hill
ok. Seems to rule out that possibility then. Whats the error your getting? -Original Message- From: Andrew Bate [mailto:[EMAIL PROTECTED] Sent: Monday, 23 February 2004 19:09 To: 'Struts Users Mailing List' Subject: RE: Problem updating bean from multi-select box The form

RE: Problem updating bean from multi-select box

2004-02-23 Thread Andrew Bate
The form bean is in session and other fields work when hitting the action - just not this collection field with the multi-select date. > -Original Message- > From: Andrew Hill [mailto:[EMAIL PROTECTED] > Sent: 23 February 2004 10:54 > To: Struts Users Mailing List > Subje

RE: Problem updating bean from multi-select box

2004-02-23 Thread Andrew Hill
Are you making sure that the MyBean instance exists when the form is submitted? -Original Message- From: Andrew Bate [mailto:[EMAIL PROTECTED] Sent: Monday, 23 February 2004 18:47 To: '[EMAIL PROTECTED]' Subject: Problem updating bean from multi-select box Hi, I am having a problem with

Re: <%= problem

2004-02-23 Thread Mark Lowe
http://jakarta.apache.org/site/micromail.html On 23 Feb 2004, at 08:44, Dixit, Shashank (Cognizant) wrote: Hi all I am using Tomcat 4.0 plugged in Eclipse 2.1 In any jsp I cannot use <%= ..  %> i.e. JSP Expression. E.g if I define <%! String var = "Anyvar" %> And OR It give compilation er

Re: <%= problem

2004-02-22 Thread Carl
Have you try : <% String var = "Anyvar"; %> AND without the space before 'var' ? Carl Dixit, Shashank (Cognizant) wrote: Hi all I am using Tomcat 4.0 plugged in Eclipse 2.1 In any jsp I cannot use <%= .. %> i.e. JSP Expression. E.g if I define <%! String var = "Anyvar" %> And OR

Re: Problem in population of VO

2004-02-21 Thread Hubert Rabago
Not entirely certain but it sounds like you need to use ListUtils.lazyList() for you type Y collection, and you'll need to override your form's reset() method to do this as well. - Hubert --- Parthasarathy Kesavaraj <[EMAIL PROTECTED]> wrote: > > Hi > > I am having a form bean that contains a

Re: Problem in population of VO

2004-02-21 Thread Michael McGrady
I am not sure how to read this. It seems to say that, when you submit a form, the values of the form are uploaded, but, if you resubmit the form, the values are not uploaded. This says to me that what happened BEFORE you submit the form is important, only because that is the ONLY DIFFERENCE in

Re: Problem to use

2004-02-20 Thread Dirk Markert
Hello Claudia, is there a "global.ldstelle=Deckstelle" line in your aplication.property after "global.ldstelle=breeding station"? It would overwrite the first entry. *** CW> Hallo, CW> I hava a Problem to use . CW> When I use a Browser

Re: Problem Dynamically creating form properties

2004-02-18 Thread Niall Pemberton
You can find the source here... http://www.niallp.pwp.blueyonder.co.uk/ Niall - Original Message - From: "Michael McGrady" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, February 18, 2004 11:54 PM Subject: Re: P

Re: Problem Dynamically creating form properties

2004-02-18 Thread Michael McGrady
to DynaValidatorActionForm) I can email this directly to anyone who wants it - or even better if someone could offer/suggest a site to load it up to. Niall - Original Message - From: "Guillermo Meyer" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'"

RE: Problem Dynamically creating form properties

2004-02-18 Thread Hubert Rabago
struts-plugin? > > Regards > marco > > -Original Message- > From: Hubert Rabago [mailto:[EMAIL PROTECTED] > Sent: 17 February 2004 19:24 > To: Struts Users Mailing List > Subject: Re: Problem Dynamically creating form properties > > As long as we're sha

RE: Problem Dynamically creating form properties

2004-02-18 Thread Marco Mistroni
Users Mailing List Subject: Re: Problem Dynamically creating form properties As long as we're sharing... =) I wrote a plug-in which defines my DynaActionForms based on my DTOs. So if I have an employee DTO, it will define a DynaActionForm for me with the fields from my employee DTO. It hel

RE: Problem Dynamically creating form properties

2004-02-18 Thread Marco Mistroni
Hi, In my case I still declare properties in Struts-config, so the validator still validates (as I have seen >From the errors received :-) I was curious 'bout Guillermo approach coz I was trying To explore ways so that a change in parameters from Backend layers will lead to as small change

Re: Problem Dynamically creating form properties

2004-02-18 Thread Adam Hardy
TED]> wrote: Your stuff sounds interesting and I'm up for a bit of collaboration. Niall - Original Message - From: "Hubert Rabago" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, February 17, 2004 7:31 PM Subj

Re: Problem Dynamically creating form properties

2004-02-17 Thread Hubert Rabago
Message - > From: "Hubert Rabago" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" <[EMAIL PROTECTED]> > Sent: Tuesday, February 17, 2004 7:31 PM > Subject: Re: Problem Dynamically creating form properties > > > > I meant to say

RE: Problem Dynamically creating form properties

2004-02-17 Thread Hubert Rabago
CTED] > Sent: Martes, 17 de Febrero de 2004 04:31 p.m. > To: Struts Users Mailing List > Subject: Re: Problem Dynamically creating form properties > > > I meant to say "I wonder if we can combine what we have." > > --- Hubert Rabago <[EMAIL PROTECTED]> wrot

Re: Problem Dynamically creating form properties

2004-02-17 Thread Niall Pemberton
Your stuff sounds interesting and I'm up for a bit of collaboration. Niall - Original Message - From: "Hubert Rabago" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, February 17, 2004 7:31 PM Subject: Re: Problem

Re: Problem Dynamically creating form properties

2004-02-17 Thread Mark Lowe
Mark Lowe [mailto:[EMAIL PROTECTED] Sent: Martes, 17 de Febrero de 2004 02:23 p.m. To: Struts Users Mailing List Subject: Re: Problem Dynamically creating form properties The cost of the getters and setters IMO usually don't outweigh the benefits of the validation framework, and having something i

RE: Problem Dynamically creating form properties

2004-02-17 Thread Guillermo Meyer
We could ask to struts.sourceforge.net guys if they are interested in this kind of Struts extension. -Original Message- From: Hubert Rabago [mailto:[EMAIL PROTECTED] Sent: Martes, 17 de Febrero de 2004 04:31 p.m. To: Struts Users Mailing List Subject: Re: Problem Dynamically creating

Re: Problem Dynamically creating form properties

2004-02-17 Thread Hubert Rabago
ValidatorForm - etension of ValidatorForm which is backed by > > > LazyDynaBean (equivalent to DynaValidatorForm) > > > LazyValidatorActionForm - path based LazyValidatorForm (equivalent to > > > DynaValidatorActionForm) > > > > > > I can email this dire

Re: Problem Dynamically creating form properties

2004-02-17 Thread Hubert Rabago
valent to DynaValidatorForm) > > LazyValidatorActionForm - path based LazyValidatorForm (equivalent to > > DynaValidatorActionForm) > > > > I can email this directly to anyone who wants it - or even better if > > someone > > could offer/suggest a site to load it up to. > > > &

Re: Problem Dynamically creating form properties

2004-02-17 Thread Hubert Rabago
ValidatorActionForm) > > I can email this directly to anyone who wants it - or even better if > someone > could offer/suggest a site to load it up to. > > Niall > > > > - Original Message - > From: "Guillermo Meyer" <[EMAIL PROTECTED]> &

Re: Problem Dynamically creating form properties

2004-02-17 Thread Niall Pemberton
ts it - or even better if someone could offer/suggest a site to load it up to. Niall - Original Message - From: "Guillermo Meyer" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Tuesday, February 17, 2004 2:

RE: Problem Dynamically creating form properties

2004-02-17 Thread Guillermo Meyer
23 p.m. To: Struts Users Mailing List Subject: Re: Problem Dynamically creating form properties The cost of the getters and setters IMO usually don't outweigh the benefits of the validation framework, and having something in the middle of the form submission and the action. Before struts v

Re: Problem Dynamically creating form properties

2004-02-17 Thread Mark Lowe
EMAIL PROTECTED] Sent: 17 February 2004 15:44 To: 'Struts Users Mailing List' Subject: RE: Problem Dynamically creating form properties Our DynamicBean holds java.util.Calendar, not java.util.Date nor java.sql.Date. We have a persistence framework that converts ResultSet in a collection of

  1   2   3   4   5   6   7   8   9   10   >