Re: Please help....Struts 1.0.2b and JDK 1.4.2

2004-03-23 Thread Martin Cooper
You asked exactly the same question only 24 hours ago. Patience is a virtue. ;-) Do you mean 1.0.2 beta? Wow, that's old! There is no reason that it shouldn't, but I haven't run anything that old for some time now. I would recommend upgrading to 1.1 anyway. :-) -- Martin Cooper "Kramer, Brad" <

Re: please help, using logic:iterate and html:form

2004-03-16 Thread as as
Mike, What error are you getting -Sam. Mu Mike <[EMAIL PROTECTED]> wrote: Hi, all, last week, I spent a whole day trying to figure the below problem out, and you warmhearted guys just came and helped me,but to greatly disappiont you, I m still at a loss to know where the problem is ,so I

RE: PLEASE HELP!!!!

2004-01-20 Thread Anita Raeppel
with the list of files in them. Shishir -Original Message- From: Anita Raeppel [mailto:[EMAIL PROTECTED] Sent: Monday, January 19, 2004 10:23 PM To: Struts Users Mailing List Subject: RE: PLEASE HELP First let me apologize if I seemed like I was shouting earlier. This obviously was my

RE: PLEASE HELP!!!!

2004-01-19 Thread hgosper
your properties file should be called ApplicationResources.properties according to your config file. Heya Gosper CSC Australia 212 Northbourne Ave, Braddon ACT 2612 Ph: +61 (0) 2 6246 8155 Fax: +61 (0) 2 62468100 MOB: 0401 611779 -

RE: PLEASE HELP!!!!

2004-01-19 Thread Andrew Hill
ch comes after the ) -Original Message- From: Anita Raeppel [mailto:[EMAIL PROTECTED] Sent: Tuesday, 20 January 2004 11:23 To: Struts Users Mailing List Subject: RE: PLEASE HELP First let me apologize if I seemed like I was shouting earlier. This obviously was my first time ev

RE: PLEASE HELP!!!!

2004-01-19 Thread Shishir K. Singh
:23 PM To: Struts Users Mailing List Subject: RE: PLEASE HELP First let me apologize if I seemed like I was shouting earlier. This obviously was my first time ever trying to use a messageboard. I did receive a few links to help me in posting future questions. Thanks for responding. However

RE: PLEASE HELP!!!!

2004-01-19 Thread Anita Raeppel
First let me apologize if I seemed like I was shouting earlier. This obviously was my first time ever trying to use a messageboard. I did receive a few links to help me in posting future questions. Thanks for responding. However the solution you suggested did not work. Do you have any other sugge

RE: PLEASE HELP!!!!

2004-01-19 Thread Andrew Hill
If you want a proper answer give your message a proper subject. SHOUTING like that without even indicating what area you are having problems in is pretty much gauranteed to make most (not all luckily for you!) experienced list members ignore your mail. Please read: http://www.catb.org/~esr/faqs/sm

RE: PLEASE HELP!!!!

2004-01-19 Thread Shishir K. Singh
I think you are missing this : Where resources is the directory within WEB-INF and application.properties is the properties file. You may put the null = "true" to get null value if there is a message missing. I personally prefer "false" as I can catch any errors that may not hav

RE: Please Help - ClassCastException

2004-01-05 Thread Richard Hightower
below. Comments below look for * -Original Message- From: Caroline Jen [mailto:[EMAIL PROTECTED] Sent: Sunday, January 04, 2004 10:18 PM To: Struts Users Mailing List Subject: RE: Please Help - ClassCastException Allow me to ask three more questions: 1. If I want to reset some spe

RE: Please Help - ClassCastException

2004-01-04 Thread Caroline Jen
String cast for me to save the > tediom. > > Making sense now? > > > -Original Message- > > From: Caroline Jen [mailto:[EMAIL PROTECTED] > > Sent: Sunday, January 04, 2004 2:46 AM > > To: Struts Users Mailing List > > Subject: RE: Please Hel

Re: Please Help - ClassCastException

2004-01-04 Thread Martin Gainty
List" <[EMAIL PROTECTED]> Sent: Wednesday, December 31, 1969 7:05 PM Subject: Re: Please Help - ClassCastException > On 04/01/2004 05:04, "Caroline Jen" <[EMAIL PROTECTED]> wrote: > > > Thank you for trying to help. I have added > > import org.

Re: Please Help - ClassCastException

2004-01-04 Thread Pedro Salgado
On 04/01/2004 05:04, "Caroline Jen" <[EMAIL PROTECTED]> wrote: > Thank you for trying to help. I have added > import org.apache.artimus.message.PostForm; > to my action class. I do not fully follow what I > should check in the struts-config.xml file. And > should I use name="postForm" with lowe

RE: Please Help - ClassCastException

2004-01-04 Thread Joe Hertz
really is). I made a base form class with a getString method that calls get() and does the String cast for me to save the tediom. Making sense now? > -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Sunday, January 04, 2004 2:46 AM > To: Struts Use

RE: Please Help - ClassCastException

2004-01-04 Thread Caroline Jen
ll work properly. > > Hope this helps, > > -Joe > > > > > -Original Message----- > > From: Caroline Jen [mailto:[EMAIL PROTECTED] > > Sent: Sunday, January 04, 2004 1:42 AM > > To: Struts Users Mailing List > > Subject: RE: Please Help - C

RE: Please Help - ClassCastException

2004-01-03 Thread Joe Hertz
helps, -Joe > -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Sunday, January 04, 2004 1:42 AM > To: Struts Users Mailing List > Subject: RE: Please Help - ClassCastException > > > I think that there are a lot more mistakes in my code > tha

RE: Please Help - ClassCastException

2004-01-03 Thread Caroline Jen
it as-initially defined (not casting like > above) and use BeanUtils > such as: > String receiver = (String) > PropertyUtils.getSimpleProperty(form, > "receiver"); > > Regards, > David > > -Original Message----- > From: Caroline Jen [mailto:[EMAIL PROTECTED] &

RE: Please Help - ClassCastException

2004-01-03 Thread David Friedman
such as: String receiver = (String) PropertyUtils.getSimpleProperty(form, "receiver"); Regards, David -Original Message- From: Caroline Jen [mailto:[EMAIL PROTECTED] Sent: Saturday, January 03, 2004 11:04 PM To: Struts Users Mailing List Subject: Re: Please Help - ClassCastException Thank

Re: Please Help - ClassCastException

2004-01-03 Thread Caroline Jen
Thank you for trying to help. I have added import org.apache.artimus.message.PostForm; to my action class. I do not fully follow what I should check in the struts-config.xml file. And should I use name="postForm" with lowercase 'p' or uppercase 'P'? In my struts-config.xml file, I have:

Re: Please Help - ClassCastException

2004-01-03 Thread Pedro Salgado
On your struts config file check if the form bean for StoreMessage action is of type pkg.pkg.PostForm and if the action name is pointing to the correct form bean... It also seems to be missing the import of the PostForm on your action class. Pedro Salgado On 04/01/2004 03:22, "Caroline Jen" <[

RE: Please Help With This Error Message

2003-12-17 Thread hgosper
t" <[EMAIL PROTECTED]> cc: Subject:RE: Please Help With This Error Message > Maybe they can tell you a fancy -el/JSTL way to do it. :) yes, if you use html-el:text instead then you should be able to use an el expression a'la: " size="82"

RE: Please Help With This Error Message

2003-12-17 Thread hgosper
s Users Mailing List" To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> cc: "'Caroline Jen'" <[EMAIL PROTECTED]> Subject:RE: Please Help With This Error Message C, You can't nest tags as you did

RE: Please Help With This Error Message

2003-12-17 Thread Barett McGavock
IL PROTECTED] Sent: Wednesday, December 17, 2003 4:46 PM To: Struts Users Mailing List Subject: Re: Please Help With This Error Message Hi, I tried and tried. I cannot figure out the error. I need your sharp eyes and experience. I keep getting this error message in the browser: ServletException

Re: Please Help With This Error Message

2003-12-17 Thread Caroline Jen
atwork" <[EMAIL PROTECTED]> > To: "'Struts Users Mailing List'" > <[EMAIL PROTECTED]> > Sent: Wednesday, December 17, 2003 8:53 AM > Subject: RE: Please Help With This Error Message > > > Your statement is OK. It comes from the surrounding

Re: Please Help With This Error Message

2003-12-17 Thread Firat TIRYAKI
PROTECTED]> Sent: Wednesday, December 17, 2003 8:53 AM Subject: RE: Please Help With This Error Message Your statement is OK. It comes from the surrounding quote. The only idea I have is to check double-quotes correctly. Fred -Original Message- From: Caroline Jen [mailto:[EMAIL PR

RE: Please Help With This Error Message

2003-12-17 Thread fredatwork
Your statement is OK. It comes from the surrounding quote. The only idea I have is to check double-quotes correctly. Fred -Original Message- From: Caroline Jen [mailto:[EMAIL PROTECTED] Sent: mercredi 17 décembre 2003 07:41 To: [EMAIL PROTECTED] Subject: Please Help With This Error Mes

Re: Please Help With This Error Message

2003-12-16 Thread Gurpreet Dhanoa
hi Caroline According to me this is perfectly fine. Please see there may be something worng in your JSP Regards Gary - Original Message - From: "Caroline Jen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 17, 2003 12:11 PM Subject: Please Help With This Error Messa

RE: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-09 Thread Caroline Jen
I did another test. I took out those data access activities in the FindEditorData.java and ran the application. The conclusion is that those few lines of data access activities have nothing to do with the value of the 'username' becoming null in the FindEditorData.java. -Caroline --- Richard Yee

RE: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-09 Thread Caroline Jen
I followed your advice. In the Bean.java, I did the following: private String username = "natalie"; public String getUsername() { return this.username; } public void setUsername(String username) { this.username = username; } and I compiled all the relevant cla

RE: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-09 Thread Richard Yee
Caroline, As a sanity check, in your bean, initialize the username variable to something ie. "XX". and re-run your app. This will show if your setUsername is ever called. -Richard --- Caroline Jen <[EMAIL PROTECTED]> wrote: > I do not fully understand what you say about null or > "null". Any

RE: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-09 Thread Caroline Jen
Returns the login of the user making this > request, > > > if the user has been > > > authenticated, or null if the user has not been > > > authenticated. Whether the > > > user name is sent with each subsequent request > > > depends on the browser and > &

RE: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-09 Thread Richard Yee
> > Returns: a String specifying the login of the user > > making this request, or > > null > > > > As the JavaDoc says: "Whether the user name is > sent > > with each subsequent > > request depends on the browser and type of > > authentication." Ar

RE: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-09 Thread Caroline Jen
e = request.getRemoteUser();%> > value="journal_category"/> > value="<%=username%>"/> > View Articles > > > > > --- "Yee, Richard K,,DMDCWEST" > <[EMAIL PROTECTED]> wrote: > > Caroline, > > Are you having problem

Re: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-09 Thread Paul Thomas
On 09/12/2003 01:29 Caroline Jen wrote: I use container-managed authentication. In which case, why don't you get the user name using request.getUserPrincipal().getName() ? -- Paul Thomas +--+-+ | Thomas Micro Systems Limited

Re: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-09 Thread Adam Hardy
it is the username, then I'd suspect that request.getRemoteUser() in your JSP is returning null. Regards, Richard -Original Message- From: Caroline Jen [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 1:32 PM To: Struts Users Mailing List Subject: Re: Please Help! Unable to Pas

Re: Please Help! Unable to Pass A Hidden Field To scaffold.ProcessAction

2003-12-09 Thread Adam Hardy
Hi Caroline, have you checked the source of the HTML page in the browser to see what the value of username is, client-side? I expect the value is being sent to the browser as null. If that is the case, it is because request.getRemoteUser() is returning null and that would be because you don't h

RE: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-08 Thread Richard Yee
urnal_category"/> > >value="<%=username%>"/> View Articles > >--- "Yee, Richard K,,DMDCWEST" wrote: > Caroline, > > Are you having > >problems with the username or the > keyName hidden > variable? If > it

RE: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-08 Thread Caroline Jen
t;Yee, Richard K,,DMDCWEST" wrote: > Caroline, > > Are you having > >problems with the username or the > keyName hidden > variable? If > it is > >the username, then I'd suspect that > > request.getRemoteUser() in your > > >JSP is returning null. &g

RE: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-08 Thread Richard Yee
he > keyName hidden variable? If > it is the username, then I'd suspect that > request.getRemoteUser() in your > JSP is returning null. > > Regards, > > Richard > > -Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Monday, D

RE: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-08 Thread Richard Yee
, > > Richard > -----Original Message- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Monday, December 08, 2003 2:56 PM > To: Struts Users Mailing List > Subject: RE: Please Help! Unable to Pass A Hidden > Field To scaffold.Proces > sAction > > > I pass

RE: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-08 Thread Caroline Jen
r > doesn't know about the user being authenticated and > will return null. > > Regards, > > Richard > -Original Message----- > From: Caroline Jen [mailto:[EMAIL PROTECTED] > Sent: Monday, December 08, 2003 2:56 PM > To: Struts Users Mailing List > Subject: RE:

RE: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-08 Thread Yee, Richard K,,DMDCWEST
db lookup) then the server doesn't know about the user being authenticated and will return null. Regards, Richard -Original Message- From: Caroline Jen [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2003 2:56 PM To: Struts Users Mailing List Subject: RE: Please Help! Unable

RE: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-08 Thread Caroline Jen
nt: Monday, December 08, 2003 1:32 PM > To: Struts Users Mailing List > Subject: Re: Please Help! Unable to Pass A Hidden > Field To > scaffold.ProcessAction > > > I did not mess up lowercase and uppercase of the > hidden field I want to pass from my JSP to the > scaffold.P

RE: Please Help! Unable to Pass A Hidden Field To scaffold.Proces sAction

2003-12-08 Thread Yee, Richard K,,DMDCWEST
onday, December 08, 2003 1:32 PM To: Struts Users Mailing List Subject: Re: Please Help! Unable to Pass A Hidden Field To scaffold.ProcessAction I did not mess up lowercase and uppercase of the hidden field I want to pass from my JSP to the scaffold.ProcessAction. If it had been the lowercase/uppercase pr

Re: Please Help! Unable to Pass A Hidden Field To scaffold.ProcessAction

2003-12-08 Thread Caroline Jen
I did not mess up lowercase and uppercase of the hidden field I want to pass from my JSP to the scaffold.ProcessAction. If it had been the lowercase/uppercase problem, I would have gotten a message saying that the variable could not be recognized. I pass two hidden fields at the same time. One

Re: Please Help! Unable to Pass A Hidden Field To scaffold.ProcessAction

2003-12-07 Thread Caroline Jen
My code was shown in my original message. I used two tags to pass two hidden fields, one is successfully passed while the other shows null. By the way, I do not use 'request' to retrieve the value of the hidden field because my Java class is a scaffold.ProcessAction type. I simply use getXxx.

Re: Please Help! Unable to Pass A Hidden Field To scaffold.ProcessAction

2003-12-07 Thread Richard Yee
Are you using the or html:hidden attributes? I didn't see it in your email. If you do, the values will be available in the request. Regards, Richard At 08:20 PM 12/7/2003, you wrote: I want to pass two hidden fields; username and keyName from a JSP via a SUBMIT button: <% String username = re

Re: PLEASE HELP: Exception handling

2003-11-07 Thread Vic Cekvenich
Say this in WEB.XML java.lang.Exception /error.jsp Then this in error.jsp or what ever you consider friendly: <%@ page isErrorPage ="true" %> You are at a J2EE error page: <%= exception.getMessage() %> and then: throw new Exception("Oops, I did it again"); Or if you want to

Re: Please Help!!! A Validation Rule Fail On A Second-Page Causes A Blank Page To Show Up

2003-10-31 Thread Kam Lung Leung
Hi Ted, Thank you for your time in helping me out. After your email message I take a hard look at the jsp file and can not find what was wrong with it. The secondPage.jsp is almost the same as the firstPage.jsp. When I move all the code from the secondPage.jsp to the firstPage.jsp the validation

RE: Please help: Cannot find message resources under key org.apache.struts.action. MESSAGE

2003-10-29 Thread Rajat Pandit
According to your struts config, the path for the res. File should be something like this. /WEB-INF/classes/ApplicationResources/properties.properties The res file being named properties.properties which Is not wrong just that it sounds funny. I guess you got my hint. So you will need

Re: please help: ActionForms of same type but different name?

2003-10-29 Thread Kirk Wylie
quot;/> > > > > > > > > > > > > > > Now your action is pretty simple. > > Based on the formIteration value you know which of the n forms was us

RE: Please help: Cannot find message resources under key org.apache. struts.action. MESSAGE

2003-10-29 Thread Rabago, Hubert
And delete the ".properties" from struts-config: -Original Message- From: Edgar P Dollin [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 29, 2003 3:58 PM To: 'Prashanth Narayanan'; 'Struts Users Mailing List' Subject: RE: Please help: Cannot fi

RE: Please help: Cannot find message resources under key org.apa che. struts.action. MESSAGE

2003-10-29 Thread Edgar P Dollin
Looks like you need a file ApplicationResources.properties in your /WEB-INF/classes directory. Edgar > -Original Message- > From: Prashanth Narayanan [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 29, 2003 4:57 PM > To: 'Struts Users Mailing List' > Subject: Please help: Cannot fin

Re: please help: ActionForms of same type but different name?

2003-10-28 Thread Sonam Belbase
t; > > > > > > > > > > > Now your action is pretty simple. > > Based on the formIteration value you know which of the n forms was used to > > login. > > Hope that helps

Re: please help: ActionForms of same type but different name?

2003-10-28 Thread Sonam Belbase
e n forms was used to > login. > Hope that helps. > -Tim > > -Original Message- > From: Sonam Belbase [mailto:[EMAIL PROTECTED] > Sent: Monday, October 27, 2003 6:37 PM > To: Struts Users Mailing List > Subject: Re: please help: ActionForms of same type but different na

RE: please help: ActionForms of same type but different name?

2003-10-28 Thread Chen, Gin
value you know which of the n forms was used to login. Hope that helps. -Tim -Original Message- From: Sonam Belbase [mailto:[EMAIL PROTECTED] Sent: Monday, October 27, 2003 6:37 PM To: Struts Users Mailing List Subject: Re: please help: ActionForms of same type but different name? There

Re: please help: ActionForms of same type but different name?

2003-10-27 Thread Sonam Belbase
There is no knowing until runtime how many iterations there are going to be. That's why we can't define the n number of LoginForms. The requirement is that on the same jsp, we will have repeating sections. User will specify at runtime how many he/she wants. The will all be of the same type. Rest

RE: please help: ActionForms of same type but different name?

2003-10-27 Thread Chen, Gin
One approach, you can define as many form-beans as you want iteratations. Ex: . . . You can also just use a single form bean for all your actions.. If they are the same class then they are the same formbean anyways. So just use the same name for all of them (well not html:form name in Struts

Re: Please Help!!! A Validation Rule Fail On A Second-Page Causes A Blank Page To Show Up

2003-10-24 Thread Ted Husted
Kam Lung Leung wrote: > Why don't I get a pop up dialog box with error messages? > Why the secondPage.jsp did not get executed when a validation > error occurred? > Why do I get a blank screen? Are you sure that it's blank? Sometimes the page doesn't render because of errors in the HTM

RE: Please help with this error "???en_US.errors.required???"

2003-10-10 Thread Daniel H. F. e Silva
ources" > null="false" /> > > Vivien > > -Original Message- > From: Daniel H. F. e Silva [mailto:[EMAIL PROTECTED] > Sent: Fri 10/10/2003 1:44 PM > To: Struts Users Mailing List > Cc: > Subject: RE: Please help with this error &qu

RE: Please help with this error "???en_US.errors.required???"

2003-10-10 Thread Chen, Vivien
point if I don't include it as the comment states? Vivien -Original Message- From: Daniel H. F. e Silva [mailto:[EMAIL PROTECTED] Sent: Fri 10/10/2003 1:44 PM To: Struts Users Mailing List Cc: Subject: RE: Please help with this error "???en_US.errors.requi

RE: Please help with this error "???en_US.errors.required???"

2003-10-10 Thread Daniel H. F. e Silva
H. F. e Silva [mailto:[EMAIL PROTECTED] > Sent: Fri 10/10/2003 9:55 AM > To: Struts Users Mailing List > Cc: > Subject: Re: Please help with this error "???en_US.errors.required???" > Hi Vivien, > > Take a look at your web.xml. Maybe you copied it from Str

RE: Please help with this error "???en_US.errors.required???"

2003-10-10 Thread Chen, Vivien
: Struts Users Mailing List Cc: Subject:Re: Please help with this error "???en_US.errors.required???" Hi Vivien, Take a look at your web.xml. Maybe you copied it from Struts dist and message-resources was already configured there. As settings in web.xml will override s

Re: Please help with this error "???en_US.errors.required???"

2003-10-10 Thread Adam Hardy
On 10/10/2003 03:55 PM Daniel H. F. e Silva wrote: Hi Vivien, Take a look at your web.xml. Maybe you copied it from Struts dist and message-resources was already configured there. As settings in web.xml will override settings in struts-config.xml, classloader can't find resource to be loaded an

Re: Please help with this error "???en_US.errors.required???"

2003-10-10 Thread Daniel H. F. e Silva
Hi Vivien, Take a look at your web.xml. Maybe you copied it from Struts dist and message-resources was already configured there. As settings in web.xml will override settings in struts-config.xml, classloader can't find resource to be loaded and then you get that messages. Hope i helped you

Re: Please Help Me To Understand "forward"

2003-09-14 Thread Ted Husted
The first snippet redirects to a Struts ActionForward named "welcome". This places controls within the Struts controller where it can be managed from the struts-config. In the global-forwards section, the ActionForward element for "welcome" is mapped to the page "/do/Menu". This application use

RE: PLEASE HELP with Exception in error.jsp with Tiles

2003-08-28 Thread Richard Mixon
ailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2003 2:12 AM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: RE: PLEASE HELP with Exception in error.jsp with Tiles Hi Richard, First things first - ditch 1.4.1 and get 1.4.2 - I've had endless unusual problems with 1.4.1 - excep

RE: PLEASE HELP with Exception in error.jsp with Tiles

2003-08-28 Thread Hue Holleran
Hi Richard, First things first - ditch 1.4.1 and get 1.4.2 - I've had endless unusual problems with 1.4.1 - except the very latest release - but 1.4.2 seems faster to me as well. Hmmm - lots to look through ... "msanger" - Microsoft make you that mad, eh? It looks to me like a further exception i

RE: Please Help With Simple Tiles Problem

2003-08-14 Thread Terry Brick
Thanks for your response. Your assumption is correct in that my design is not very static and therefore need the ability of dynamic embedded tiles (so the first solution would not work). However, you did give me some good ideas and insight into how Tiles works. What I got out of all of this is is

RE: Please Help With Simple Tiles Problem

2003-08-03 Thread Holman, Cal
I know it is messy - but it should work. Cal http://www.calandva.com/Last update 08/01/03 -Original Message- From: Terry Brick [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 15:20 To: [EMAIL PROTECTED] Subject: RE: Please Help With Simple Tiles Problem Thanks

RE: Please Help With Simple Tiles Problem

2003-08-01 Thread Terry Brick
w you must create one new definition for each > form, but to use a different > one, just change what you use for the body of the > "form_page". > > dave > > > > -Original Message- > > From: Terry Brick > [mailto:[EMAIL PROTECTED] > > Sent: Thu

Re: Please Help With Simple Tiles Problem

2003-07-31 Thread Terry Brick
Ok, I've finally gotten this to work. However, I don't think it's the "right" solution and it's certainly not one I'm happy with. But maybe by showing how I'm getting it to work, that will better communicate to people what I'm trying SO HARD to do. This works: So this gives me..

Re: Please Help With Simple Tiles Problem

2003-07-31 Thread Terry Brick
Thanks. I've seen that page and many other. Believe, I feel stupid from seeing so many examples and not being able to figure it out. But I'm getting a mental block somewhere that just isn't allowing me to grasp something. Barry Volpe <[EMAIL PROTECTED]> wrote:Tiles can function stand alone fr

Re: Please Help With Simple Tiles Problem

2003-07-31 Thread Barry Volpe
Tiles can function stand alone from struts but is incorporated in struts 1.1. Here is the website of the originator of tiles. Part way down the page are some example tiles war files that I found helpful. http://www.lifl.fr/~dumoulin/tiles/ Barry - Original Message - From: "Terry Brick"

Re: Please Help: ActionForm Re-Population

2003-07-15 Thread Susan Bradeen
On 07/14/2003 01:25:58 PM Aaron Longwell wrote: > Oops, spoke too soon. > > You discussed 2 options: > > 1) All drop-down list data goes into session > 2) "input" attribute for the update event goes back to "edit" Action > instead of "edit" JSP > > I went with #2 and that brings up a new issue.

Re: Please Help: ActionForm Re-Population

2003-07-14 Thread Aaron Longwell
Oops, spoke too soon. You discussed 2 options: 1) All drop-down list data goes into session 2) "input" attribute for the update event goes back to "edit" Action instead of "edit" JSP I went with #2 and that brings up a new issue. Doing that causes all of the current values for the fields to be

Re: Please Help: ActionForm Re-Population

2003-07-14 Thread Aaron Longwell
Dirk, Thank you, thank you thank you thank you. It was almost too easy. I just changed the input attribute to point to my action instead of my JSP and the problem is solved. Thanks again, Aaron Dirk Markert wrote: Hello Aaron, ***

Re: Please Help: ActionForm Re-Population

2003-07-14 Thread Dirk Markert
Hello Aaron, *** AL> I am on the last leg of a web application, and I've run into problems AL> adding validation to the mix. AL> I have an "edit" Action that retrieves a database record, a list of AL> drop-down options, and then p

Re: Please help a Tiles problem

2003-04-06 Thread David Graham
Then you must be using an old pre-Struts version of Tiles. Sorry but I can't help you there. David From: Vernon <[EMAIL PROTECTED]> To: Struts Users Mailing List <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED] Subject: Re: Please help a Tiles problem Date: Sat, 05 Apr 2003 22:26:0

Re: Please help a Tiles problem

2003-04-05 Thread Vernon
]> To: Struts Users Mailing List <[EMAIL PROTECTED]> Subject: Re: Please help a Tiles problem Date: Sat, 05 Apr 2003 15:23:14 -0800 I start getting quite frustrated on this issue after a few days of researching on the Tiles home page, Tiles Struts home page, Struts email archive, the tiles-

Re: Please help a Tiles problem

2003-04-05 Thread David Graham
PROTECTED]> To: Struts Users Mailing List <[EMAIL PROTECTED]> Subject: Re: Please help a Tiles problem Date: Sat, 05 Apr 2003 15:23:14 -0800 I start getting quite frustrated on this issue after a few days of researching on the Tiles home page, Tiles Struts home page, Struts email archive, t

Re: Please help a Tiles problem

2003-04-05 Thread Vernon
I start getting quite frustrated on this issue after a few days of researching on the Tiles home page, Tiles Struts home page, Struts email archive, the tiles-documentation.war, and google on Tiles. The whole development is stop at this point. I have read somewhere at the email archive: it is n

Re: Please help a Tiles problem

2003-04-04 Thread Vernon
Thanks very much for your information, Cedric. I have read through the Tiles related articles linked to the Struts-Tiles page, and have not seen the plug in procedure for standalone usage. A plugin procedure, I find, is on the following page http://www.onjava.com/pub/a/onjava/excerpt/progjakstr

Re: Please help a Tiles problem

2003-04-04 Thread Cedric Dumoulin
The error message says that the definition factory is not found. Have you initialized the tile plugin ? Cedric Vernon wrote: 1. The error message: root cause javax.servlet.ServletException: Can't get definitions factory from context. at org.apache.jasper.runtime.PageContextImpl.handl

Re: Please help no getter method nightmare

2003-01-08 Thread kiuma
I partially solved this error writing but why does this work only with this deprecated solution??? Thanks in advance, kiuma kiuma ha scritto: Hi all, I've a big problem in my project: I can't add any getter method in any new form since on every jsp form i get back message. javax.servlet.jsp.

RE: Please Help! Nested form property attributes.

2003-01-06 Thread Paul Idusogie
: Struts Users Mailing List; [EMAIL PROTECTED] Cc: Samir Shah Subject: Re: Please Help! Nested form property attributes. On Monday, January 6, 2003, 12:44:38 PM, Paul wrote: PI> rootCause PI> java.lang.IllegalArgumentException: argument type mismatch

Re: Please Help! Nested form property attributes.

2003-01-06 Thread Rick Reumann
On Monday, January 6, 2003, 12:44:38 PM, Paul wrote: PI> rootCause PI> java.lang.IllegalArgumentException: argument type mismatch at PI> sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at PI> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39 PI> What do

Re: Please help! More nested tag trouble with DynaValidatorForm!

2002-12-02 Thread Seth Milder
Gemes Tibor wrote: 2002-11-30, szo keltezéssel Seth Milder ezt írta: Does anyone have a workaround? Am I doing some stupid thing here? The dot separator is for subbeans' properties. It follows the commons beanutils' PropertyUtils notation. http://jakarta.apache.org/commons/beanutils/api/org/

Re: Please help! More nested tag trouble with DynaValidatorForm!

2002-11-30 Thread Gemes Tibor
2002-11-30, szo keltezéssel Seth Milder ezt írta: > Does anyone have a workaround? Am I doing some stupid thing here? The dot separator is for subbeans' properties. It follows the commons beanutils' PropertyUtils notation. http://jakarta.apache.org/commons/beanutils/api/org/apache/commons/beanuti

RE: PLEASE HELP - struts-tiles no longer work

2002-10-20 Thread Tuan H. Le
Micael, Thanks for your help! I corrected my mistake by using the String equals() method, and it works fine. Tuan -Original Message- From: micael [mailto:caraunltd@;harbornet.com] Sent: Saturday, October 19, 2002 12:21 AM To: Struts Users Mailing List Subject: Re: PLEASE HELP - struts

Re: PLEASE HELP - struts-tiles no longer work

2002-10-18 Thread micael
I don't know, but my guess is that you meant to use someString.equals(someOtherString) rather than someString == someOtherString, unless you somehow are using a hidden myString.intern() in there. My guess, in other words, is that you are getting nothing because all your "==" tests yield false.

Re: PLEASE HELP - struts-tiles no longer work

2002-10-18 Thread micael
Why don't you look at the source? My guess is that if you are looking at a blank page, the page, except for tags, is blank. At 08:41 PM 10/18/2002 -0700, you wrote: Hi, My app was working fine using struts-tiles with frameset. But since this afternoon, it does not work any more. It displays a

RE: PLEASE HELP - struts-tiles no longer work

2002-10-18 Thread Tuan H. Le
The debug code below returned the correct paths to JSP pages for header, body, rightside and footer, but none of them get displayed. It returns a blank page. <%=request.getContextPath()%> <%=request.getContextPath()%> <%=request.getContextPath()%> <%=request.g

RE: Please help decide a religious discussion

2002-09-28 Thread Robert Taylor
needs to know which property to access. robert > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 27, 2002 11:38 AM > To: Struts Users Mailing List > Subject: RE: Please help decide a religious discussion > > > > We ha

RE: Please help decide a religious discussion

2002-09-27 Thread Jeff_Mychasiw
l" <[EMAIL PROTECTED]> on 09/27/2002 10:04:00 AM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To:"Struts Users Mailing List" <[EMAIL PROTECTED]> cc: Subject:RE: Please help decide a religious discussion Well if the Action is

RE: Please help decide a religious discussion

2002-09-27 Thread Andrew Hill
t: RE: Please help decide a religious discussion Then the session times out and the list goes away automatically. Dave >From: "Andrew Hill" <[EMAIL PROTECTED]> >Reply-To: <[EMAIL PROTECTED]> >To: "Struts" <[EMAIL PROTECTED]>, "Davi

RE: Please help decide a religious discussion

2002-09-27 Thread Andrew Hill
ought too!) -Original Message- From: David Graham [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 23:06 To: [EMAIL PROTECTED] Subject: RE: Please help decide a religious discussion It's not hard to know when to get rid of it. First Action puts list in session, jsp disp

RE: Please help decide a religious discussion

2002-09-27 Thread Trieu, Danny
, September 27, 2002 7:50 AM To: Struts Users Mailing List Subject: RE: Please help decide a religious discussion Sounds like you need to define the action and not the jsp as your input in struts-config. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday

RE: Please help decide a religious discussion

2002-09-27 Thread Andrew Hill
first and it forwards you to the view after populating the drop-downs. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 22:54 To: Struts Users Mailing List Cc: Struts Users Mailing List Subject: RE: Please help decide a religious discussion

RE: Please help decide a religious discussion

2002-09-27 Thread Stephen . Chambers
"Sri Sankaran" sas.com> cc: Subject: RE: Please help de

  1   2   3   >