Re: Repost: Anybody Using Commons-Lang 2.0 With Struts 1.1?

2004-05-13 Thread Dan Tran
I have been using version 2.0 with struts 1.1 since last September. No problem surface yet ;-) Go for it. -D - Original Message - From: "Hohlen, John C" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 13, 2004 8:57 PM Subject: Repost: Anybody Using Commons-Lang 2.0 With

RE: submit form question

2004-05-13 Thread Andrew Hill
Yes, its a difficult one this. (Afaik) Your only hope is onBeforeUnload(), but in most browsers I have tried, getting the browser to submit the form at this point in time simply didnt work properly for me (ie: it didnt submit!). Does submit() work for you from inside a beforeUnload handler? If so

submit form question

2004-05-13 Thread subramaniam . o
Hi experts,         How to submit the form when the user closes the browser window, before closing the browser window i want to submit the form. Which _javascript_ event should i  use. i tried using onBeforeUnload(), the problem is that this event gets fired even when the user goes to another pag

Re: How to set an ActionForm to null

2004-05-13 Thread Kiran Kumar
just a guess in ur execute method try this form = null; --- pls <[EMAIL PROTECTED]> wrote: > thanks for the suggestion Amol, but that returns an > IllegalStateException.. > thanks for trying anyways. > > > "Amol Yadwadkar" <[EMAIL PROTECTED]> wrote in > message > news:[EMAIL PROTECTED] > > Hi

Re: Can you help me about Struts validator?

2004-05-13 Thread Marcus Vinicius W. Ferreira
Hello , I´m brazilian guy and I don´t speak english very well, then, sorry for language mistakes. I saw the message of David Graham about bundle attribute in struts validator at http://www.mail-archive.com/[EMAIL PROTECTED]/msg06445.htm l

Re: Html:link and save form

2004-05-13 Thread Nicolas De Loof
A link in HTML does not submit a form. Only submit inputs (buttons) an images input does. You can use javascript to do it (as you did), but then it overrides the href set on the link (/myAction.do) and its parameters. Nico. > I have a form with a htlm:link > > paramName="address" onclick="do

Hi

2004-05-13 Thread Vetrichelvam Malaichamy
Hi I am Vetri Chelvam. I am using struts 1.1. I am getting a problem. The problem is like this. There is a button on a Page. And on click of this button, the Action servelet is called and the database updations are done and the request is served with the response of opening a PDF template. Once the

Re: How to set an ActionForm to null

2004-05-13 Thread pls
yes definitely. everything with the actionform works fine, the values remain in the bean, the db gets updated just fine, and the jsp page displays all of the properties. the only part that is giving me trouble is setting the form to null and keeping it null until i fill it back from the db.. "Amo

RE: Repost: Anybody Using Commons-Lang 2.0 With Struts 1.1?

2004-05-13 Thread Phil Steitz
Have a look at the lang 2.0 release notes here: http://www.apache.org/dist/jakarta/commons/lang/RELEASE-NOTES.txt and the JDIFF report here: http://jakarta.apache.org/commons/lang/Commons-Lang-1.0.1-to-2.0/changes.html Phil -Original Message- From: Hohlen, John

RE: How to set an ActionForm to null

2004-05-13 Thread Amol Yadwadkar
Has your ActionMappings at Struts-config.xml contains the name of the form which you are using ? -Original Message- From: pls [mailto:[EMAIL PROTECTED] Sent: Friday, May 14, 2004 10:31 AM To: [EMAIL PROTECTED] Subject: Re: How to set an ActionForm to null thanks for the suggestion Amol

Re: How to set an ActionForm to null

2004-05-13 Thread pls
thanks for the suggestion Amol, but that returns an IllegalStateException.. thanks for trying anyways. "Amol Yadwadkar" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > I havn't tried this but just try this in the execute method :-- > public ActionForward execute(ActionMapping

RE: Repost: Anybody Using Commons-Lang 2.0 With Struts 1.1?

2004-05-13 Thread Hohlen, John C
That's a good idea about the Commons-Lang User list. I actually searched the archive before posting to the Struts mailing list, but didn't see anything. That's very interesting about the 1.2 nightlies. I'm seeing 2.0 is required for 1.2 (assuming the installation notes are up to date): htt

RE: How to set an ActionForm to null

2004-05-13 Thread Amol Yadwadkar
Hi, I havn't tried this but just try this in the execute method :-- public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest req, HttpServletResponse res) { ... ... mapping.setAttribute(null); } Hope this may help you!!! --Amol -Original Message- F

How to set an ActionForm to null

2004-05-13 Thread pls
hi there, i am trying to set an actionform to null after inserting it's properties into a DB. then, control is forwarded to a different action and the info is read from the DB back into the actionform for display by a JSP. the only part that is giving me trouble is with explicitly setting my acti

RE: Declarative Exception handling

2004-05-13 Thread Ashutosh Satyam
That was a nice piece of information. Thanks a lot Mat. Regards, Ashutosh -Original Message- From: Lowery, Mat [mailto:[EMAIL PROTECTED] Sent: Thursday, May 13, 2004 9:19 PM To: Ashutosh Satyam; Struts Users Mailing List Subject: RE: Declarative Exception handling I use the Log Jakarta

RE: Repost: Anybody Using Commons-Lang 2.0 With Struts 1.1?

2004-05-13 Thread Joe Hertz
You might want to ask this on commons-user. As a datapoint, I'm looking at the Struts 1.2 Nightlies I have built with, and I don't even see a Commons-Lang.jar packaged with it. > -Original Message- > From: Hohlen, John C [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 13, 2004 11:57 PM >

Repost: Anybody Using Commons-Lang 2.0 With Struts 1.1?

2004-05-13 Thread Hohlen, John C
We're trying to figure out how backwards compatible Commons-Lang 2.0 is with it's predecessor (1.0.1). Specifically, we'd like to use Commons Lang 2.0 with Struts 1.1 (which is distributed with Commons-Lang 1.0.1). Has anyone ever attempted this? I asked this question about a month ago but n

Re: java.lang.OutOfMemoryError after server app start/stop cyclin g

2004-05-13 Thread Jignesh Patel
As per my knowledge the bug of OutOfMemory is related to version less then jdk1.4. It has been solved in the 1.4. -Jignesh On Thursday 13 May 2004 23:30, Heinle, Chuck wrote: > We have a similar problem with WebLogic 8.1 SP2...I was told by an > associate that there is a 1.4.2_02 bug related clas

Selects

2004-05-13 Thread Jonathan Wright
Can anyone see anything wrong with the following select and option tags? I cannot fathom out why I keep getting an exception thrown in the BodyContent.clearBody method. This does not work: Select One Auckland Christchurch Dunedin Gisborne Hamilton Hastings

Re: findSuccess(Unknown Source)!!

2004-05-13 Thread Caroline Jen
Thanks for the feedbacks. I have fixed the spelling (scope). And my ListThread.java extends Action. ListThread.java does not extend ParameterAction. In the end of the ListThread.java, it is a standard: return ( mapping.findForward( "success" ) ); And the relevant part in my struts.config.xml

RE: findSuccess(Unknown Source)!!

2004-05-13 Thread Barett McGavock
I believe the parameter action takes a parameter to determine which worker method to call. Are you using an Action that extends ParameterAction somewhere in your application? I don't believe it is called unexplicitly. Could be wrong. "Unknown Source" in the stack trace just means that the line num

findSuccess(Unknown Source)!!

2004-05-13 Thread Caroline Jen
Need your expertise to diagnose the problem. I have a java class ListThread.java that extends Action. This java class simply calls a couple of helper classes to access my database. I have not yet prepared a JSP to be displayed in the browser after ListThread.java completes its tasks; therefore,

Struts on iPlanet Web Server 6.0

2004-05-13 Thread brutledg
Hi All- I need to deploy my Struts app on iPlanet Web Server 6.0 SP5 (not to be confused with iPlanet App Server). To test out the servers ability to handle a Struts app, I successfully deployed 'struts-examples.war' using the 'wldeploy' tool provided with the server. I can successfully call the

Problems with Selects

2004-05-13 Thread Jonathan Wright
I've narrowed the javax.servlet.jsp.tagext.BodyContent.clearBody() problem down to a select tag in my page. As soon as I put white space or any option tags inside the select's body the page fails when invoked. Anyone else encountered similar problems or am I'm omitting something glaringly obvious

Re: RE: struts logic-iterate and accessing nested index properties

2004-05-13 Thread Satish Satish
Hi Prasad and all, How come this part works <% ArrayList Test = tForm.getTestResult(); if(Test == null) { logger.debug("Test is null");} else { logger.debug("Test sixe: " + Test.size()); } %> and for this section it throws exception as mentioned below Hello [ServletException in:/jsp/qa/

javax.servlet.jsp.tagext.BodyContent.clearBody()V Exception

2004-05-13 Thread Jonathan Wright
I'm having a very peculiar problem that I'm finding difficult to pin down. As a bit of background, this is a problem that I have encountered trying to use the Tomcat Administration web application (I believe this is also a Struts based app). I Authored a page in Dreamweaver before converting HTML

RE: struts logic-iterate and accessing nested index properties

2004-05-13 Thread Prasad, Kamakshya
Hi, It can as well be done in struts using this   [] KP -Original Message- From: PADALA, SANDHYA (SBCSI) [mailto:[EMAIL PROTECTED] Sent: Friday, May 14, 2004 5:28 AM To: Struts Users Mailing List Subject: RE: struts logic-iterate and accessing nested index properties Thank you T

Fwd: Creating a table of radio buttons

2004-05-13 Thread Satish Satish
forwarded message attached --- Get your own "800" number Voicemail, fax, email, and a lot more http://www.ureach.com/reg/tag--- Begin Message --- Hi, I am trying to create a table of radio buttons but have been unsuccessfully. I am getting

[ANNOUNCE] JavaServer Faces in Action book available

2004-05-13 Thread Kito D. Mann
I'm pleased to announce that my book, JavaServer Faces in Action, is now available via Manning's Early Access Program (MEAP). MEAP allows you to download chapters of the book as they're finished, and then get the print version when it becomes available (if you so desire). In addition to thoroug

Tiles Multiple modules 404 error

2004-05-13 Thread Vijay . Kukreja
Return Receipt Your Tiles Multiple modules 404 error document :

Re: Doubt: how to handle Action threading?

2004-05-13 Thread kimbuba
Thanx Jason for answering. I saw and i do agree with your design. I have another question. Do you think that there are performance implications? Actions are reused in multithreading. But since in java all objects go into the heap it would no difference between using instance vars and local-method

Tiles Multiple modules 404 error

2004-05-13 Thread Anand Stephen
Greetings, I am having trouble with multiple struts modules and tiles configuration... Web.xml snippet action org.apache.struts.action.ActionServlet config/admin /WEB-INF/struts-admin-config.xml config/admin-tools /WEB-INF/struts-admin-

Re: Server side validation

2004-05-13 Thread Samuel Rochas
Hello Geeta, "login" must have been defined as a global-forward ..? You are right, I am quite new here, I did no notice. No reason. So just take it out..:) Ok, it's gone. But I still get an empty page when I make a validation error :-( The validation code is going thru, maybe another hint? Sam

Re: Cannot retrieve definition for form bean null

2004-05-13 Thread Hubert Rabago
You need to associate a form-bean with an action to which a form will be submitted. If you don't have an ActionForm to use, try an empty form bean: and then add 'name="emptyForm"' in your action mapping: > roles="administrator,editor,contributor" > path="/message/ListThreads"

Cannot retrieve definition for form bean null

2004-05-13 Thread Caroline Jen
I got the root cause of the problem: javax.servlet.ServletException: Cannot retrieve definition for form bean null I know that I screwed up part of the struts-config.xml file. Please point out my problem: In my menu.jsp file, I have View Messages sorted by

Re: (repost) validwhen validation

2004-05-13 Thread Matt Bathje
Since nobody else has answered I'll take a shot. To get this to work, you would need to get the source code of the struts version you are using (1.1 final) and the source code for the org.apache.struts.validator.validwhen.ValidWhen class (as well as anything it depends on). You would have to merge

String[] not transferred to form

2004-05-13 Thread Paul Jurgens
Hey guys! A few months ago our Struts "expert" up and moved to Minnesota. For the first month or so we got by ok, but then we started to really notice the knowledge drain. It was most evident when we decided to upgrade from 1.0.2 to 1.1. We struggled through the upgrade and thought we had go

(repost) validwhen validation

2004-05-13 Thread Josh Cronemeyer
I seem to have deleted the original messages to this thread, but it is probably best that I just ask the question again anyway. I am rather new to struts and I am trying to use the validwhen dependency for validation. After finding out that validwhen feature wasn't included in struts 1.1 final re

Creating a table of radio buttons

2004-05-13 Thread Satish Satish
Hi, I am trying to create a table of radio buttons but have been unsuccessfully. I am getting the following exception [ServletException in:/jsp/qa/mytc/mytcview.jsp] No getter method for property testResultList of bean testResultForm' javax.servlet.jsp.JspException: No getter method for property t

RE: nested logic tag

2004-05-13 Thread Kathy Zhou
Just follow-up my previous note: I got this work by using: fyi, Kathy -Original Message- From: Kathy Zhou [SMTP:[EMAIL PROTECTED] Sent: Thursday, May 13, 2004 2:39 PM To: '[EMAIL PROTECTED]' Subject:nested logic tag I n

RE: Server side validation

2004-05-13 Thread Geeta Ramani
Samuel: > > input="/myDir/myForm.jsp" > If the page is under /web (root of the application), then a > "/page.jsp" > is ok? Yes, that should be ok. > Why in the login example there is only a input="login" > without a page name? "login" must have been defined as a global-forward ..? > >

RE: struts logic-iterate and accessing nested index properties

2004-05-13 Thread PADALA, SANDHYA (SBCSI)
Thank you Tim. I used JSTL , that solved my problem -Original Message- From: Slattery, Tim - BLS [mailto:[EMAIL PROTECTED] Sent: Thursday, May 13, 2004 1:58 PM To: 'Struts Users Mailing List' Subject: RE: struts logic-iterate and accessing nested index properties > In my JSP I have code

RE: forward request parameter

2004-05-13 Thread Geeta Ramani
Samuel: > -Original Message- > From: Samuel Rochas [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 13, 2004 4:20 PM > To: Struts Users Mailing List > Subject: Re: forward request parameter > > > Hello Geeta, > > Thanks. > > It means I'll have to process it again, and put again in the

RE: Form not being repopulated

2004-05-13 Thread Geeta Ramani
Nestor: Add an "input" attribute in, something like this: this way when validation fails control will go back to login/login.jsp Geeta > My struts-config looks like this: > > type="com.tcs.reclamos.struts.action.LoginAction" > name="loginForm" scope="request"> >redirect="true"/

Re: forward request parameter

2004-05-13 Thread Samuel Rochas
Hello Geeta, Thanks. Geeta Ramani wrote: You will have to put the data again in the request > scope in your second action.. It means I'll have to process it again, and put again in the request? So a session variable may be more apropriate? Samuel ---

Re: Server side validation

2004-05-13 Thread Samuel Rochas
Hello Geeta, Thanks again for your answer. Geeta Ramani wrote: The "input" field is the path to the jsp where your form resides, something like: input="/myDir/myForm.jsp" If the page is under /web (root of the application), then a "/page.jsp" is ok? Why in the login example there is only a in

Form not being repopulated

2004-05-13 Thread Nestor Boscan
Hi I'm working with struts and tiles and I have a problem with my forms that they are not being repopulated. I have a simple login form like this: User Password

RE: Server side validation

2004-05-13 Thread Geeta Ramani
Samuel: The "input" field is the path to the jsp where your form resides, something like: input="/myDir/myForm.jsp" ..and you may want to check on the "scope=session" bit. Are you using session scope? Geeta > -Original Message- > From: Samuel Rochas [mailto:[EMAIL PROTECTED]

RE: forward request parameter

2004-05-13 Thread Geeta Ramani
Sameul: You will have to put the data again in the request scope in your second action.. Geeta > -Original Message- > From: Samuel Rochas [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 13, 2004 11:43 AM > To: Struts Users Mailing List > Subject: forward request parameter > > > Hello,

forward request parameter

2004-05-13 Thread Samuel Rochas
Hello, I am using an Action which puts some data in the request scope. That's just fine to display the data in the next jsp page (let's call it target.jsp). I am submiting a form in target.jsp which should do some action an show again the target.jsp page. When I show again the target.jsp page, the

Server side validation

2004-05-13 Thread Samuel Rochas
Hello, I am trying to use server side validation. I validate my form data in the validate method of the form. When there is a validation error the application shows me a blank page, and not the form again. I guess I have an error in the action mapping configuration in struts-config, I am not s

converting to FormFile

2004-05-13 Thread Octavia Yung
Hi All, I have an entity class object which has been created from a FormFile object. Is it possible to convert this object back to a FormFile object? If so, how does one proceed? Thanks much! Octavia

RE: struts logic-iterate and accessing nested index properties

2004-05-13 Thread Slattery, Tim - BLS
> In my JSP I have coded the following > indexId="index"> property='<%= "fooBean[" + index + "].attID" > %>'/> [] > > When I run the JSP I get the following error > Error 500: No getter method for property fooBean[0].attID of > bean element Use JSTL: -- Tim Slattery [EMAIL PROTECTE

struts logic-iterate and accessing nested index properties

2004-05-13 Thread PADALA, SANDHYA (SBCSI)
Hi I have a form bean which extexnds Action form . FooForm This FooForm has an array of another java bean say FooJavaBean Public class FooForm extends ActionForm { Public FooJavaBean[] fooBean = ; Public FooJavaBean getFooBean(int index) { return fooBean[index]; } Public FooJavaBean

struts logic-iterate and accessing nested index properties

2004-05-13 Thread PADALA, SANDHYA (SBCSI)
Hi I have a form bean which extexnds Action form . FooForm This FooForm has an array of another java bean say FooJavaBean Public class FooForm extends ActionForm { Public FooJavaBean[] fooBean = ; Public FooJavaBean getFooBean(int index) { return fooBean[index]; } Public FooJavaBean

nested logic tag

2004-05-13 Thread Kathy Zhou
I need your help on how to use nested logic tag: I have a ArrayList list1. each element of the list1 is a ArrayList too. In Java code, it will be like: for(int i=0; i

nested logic tag

2004-05-13 Thread Kathy Zhou
I need your help on how to use nested logic tag: I have a ArrayList list1. each element of the list1 is a ArrayList too. In Java code, it will be like: for(int i=0; i

RE: Language resource bundles problem

2004-05-13 Thread None None
Another related problem... I've gotten this working as you state fine now. I have a session attribute, countryCode, that is literally just EN, DE, etc. I have some images of flags, when you click one it calls an action that sets the appropriate code in session (I also do this in the first Act

RE: java.lang.OutOfMemoryError after server app start/stop cyclin g

2004-05-13 Thread Heinle, Chuck
We have a similar problem with WebLogic 8.1 SP2...I was told by an associate that there is a 1.4.2_02 bug related class loading that might associated with the OutOfMemory. -Original Message- From: Joe Germuska [mailto:[EMAIL PROTECTED] Sent: Thursday, May 13, 2004 1:52 PM To: Struts Users

RE: java.lang.OutOfMemoryError after server app start/stop cycling

2004-05-13 Thread Joe Germuska
At 6:07 PM +0100 5/13/04, Daniel Perry wrote: Putting up the maximum memory Xmx does help as it gives it more memory to use up, but only delays the inevitable :) Is this a struts issue? or does it happen with all tomcat apps? It happens with every servlet container I've used. My understanding is

RE: Language resource bundles problem

2004-05-13 Thread None None
Sorry Paul, I actually missed your reply (the inevitable result of having five different high-volume mailing lists filing into one eMail account). Indeed, what you state did the trick, thank you very much! Oh, actually, one other question... I've never had to think about internationalization b

Re: Doubt: how to handle Action threading?

2004-05-13 Thread Jason Miller
I have a similar hierarchy, with a base action providing generic services like VO manipulation, security methods, exception manipulation, and framework interaction, and in general I pass everything as parameters. This is mitigated by the fact that the action classes simply adapt the input to t

Doubt: how to handle Action threading?

2004-05-13 Thread kimbuba
Hello i have the following doubt. Actions are multithreaded. That means that more than one thread can access the same action. Therefore a class that extends an Action cant' use instance members without appropriate synch. I have the following doubt: i have specialized subclasses hierarcy of Action

RE: Language resource bundles problem

2004-05-13 Thread Paul McCulloch
You don't need anything in struts.xml - as I said in my other message you are just calling the wrong getMessage() method. Paul > -Original Message- > From: None None [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 13, 2004 6:33 PM > To: [EMAIL PROTECTED] > Subject: Re: Language resource b

Re: Language resource bundles problem

2004-05-13 Thread None None
That seems right to me... I added the From: "Harjot Narula" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Subject: Re: Language resource bundles problem Date: Thu, 13 May 2004 21:05:31 +0530 Hi I think you need

RE: java.lang.OutOfMemoryError after server app start/stop cycling

2004-05-13 Thread Daniel Perry
And along those lines, two questions: 1. will i need to change anything if i move my app to tomcat 5, or will it work as-is? 2. running tomcat as a windows service, it seems to ignore JAVA_OPTS and CATALINA_OPTS envirorment options. How can i give it the -Xmx option? Daniel. -Original Mess

RE: Html:link and save form

2004-05-13 Thread Heligon Sandra
Hi, Thanks for you response. I was probably not very clear, so I prefer to explain the configuration again. My form is associated to a LookupDispatchAction we have a lot of data in our form that we want to save before displaying the next page. That is why we add submit on the onchange The e

RE: Newbie question: How to implement conditional validation in an ActionForm?

2004-05-13 Thread Adam Lipscombe
That did the trick. Many thanks! -Original Message- From: John Moore [mailto:[EMAIL PROTECTED] Sent: 13 May 2004 17:58 To: Struts Users Mailing List Subject: Re: Newbie question: How to implement conditional validation in an ActionForm? Adam Lipscombe wrote: > >Is there any way to re

RE: Declarative Exception handling

2004-05-13 Thread Lowery, Mat
I use the Log Jakarta Taglib in my error page like so: http://jakarta.apache.org/taglibs/doc/log-doc/intro.html -Original Message- From: Ashutosh Satyam [mailto:[EMAIL PROTECTED] Sent: Thursday, May 13, 2004 6:39 AM To: Struts Users Mailing List Subject: Declarative Exception handling

RE: Language resource bundles problem

2004-05-13 Thread Paul McCulloch
You are calling the getMessage(String, Object) method. The String is the key & the object is a substitution paramter (i.e. {0}). You want the getMessage(Locale, String) method. You can eaither create a Locale from 'de' or get the users first requested locale with "request.getSession().getAttribute

keeping VO on form Bean through JSP

2004-05-13 Thread Williams, Robert E
Hello, I am trying to pass parameters on a form bean (a VO and a Collection), from a JSP, so that if validation fails, the parameter can be used to repaint the page. We are using a two action pattern, where the first action prefills a form bean. Since the action mapping scope = "request" the pa

Re: Language resource bundles problem

2004-05-13 Thread Harjot Narula
Hi I think you need to mention something like this in web.xml config /WEB-INF/struts-config.xml and in struts-config.xml you need to have this you can use this in JSP as This will also work probably myActionForm.setMessage(mr.getMessage("de", "messages.deleteFailed"));

Re: How Come The User List Archive Is Not Being Updated?

2004-05-13 Thread Joe Germuska
At 10:05 AM -0500 5/13/04, Hohlen, John C wrote: Nothing new since March 26: http://www.mail-archive.com/[EMAIL PROTECTED]/ Well, the mailing list changed addresses. This is somewhat more up-to-date: http://www.mail-archive.com/[EMAIL PROTECTED]/ But still seems to stop in late April. Personall

Language resource bundles problem

2004-05-13 Thread None None
Hello all. I posted this question a little while ago as a reply to another thread, but I figured the question might be lost there... I'm trying to get multiple language support to work. I have created two files, ofmResources.properties and ofmResources_de.properties and stored them in WEB-INF

Re: [OT] Jobs

2004-05-13 Thread James Mitchell
No...sorry. The original email specified Atlanta, GA. -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: "Andy Engle" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday,

RE: How Come The User List Archive Is Not Being Updated?

2004-05-13 Thread nils . mueller
Try http://marc.theaimsgroup.com/?l=struts-user Nils This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of

tiles and validation problem

2004-05-13 Thread Julia Weaver
Hi, Thank you very much for any help! In my struts-config.xml, I have: In my tiles-defs.xml, I have: In my formbean, I have: public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {... But when

Re: [OT] Jobs

2004-05-13 Thread Harjot Narula
Any positions in India ??? I have struts development experience of almost 2 years ... - Original Message - From: "Andy Engle" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, May 13, 2004 8:30 PM Subject: Re: [OT] Jobs > James Mitchell <[E

How Come The User List Archive Is Not Being Updated?

2004-05-13 Thread Hohlen, John C
Nothing new since March 26: http://www.mail-archive.com/[EMAIL PROTECTED]/ Is there another way to see an up to date list? Thanks, JOHN

Re: [OT] Jobs

2004-05-13 Thread Andy Engle
James Mitchell <[EMAIL PROTECTED]> wrote: > I am trying to find 10 descent struts developers to fill open > positions. Might any of those positions be in Chicago? Andy - To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

Struts validator?

2004-05-13 Thread Marcus Vinicius W. Ferreira
Hello , I´m brazilian guy and I don´t speak english very well, then, sorry for language mistakes. I saw the message of David Graham about bundle attribute in struts validator at http://www.mail-archive.com/[EMAIL PROTECTED]/msg06445.html Can you help me? The bundle attribute i

Re: JSTL Core equivalent of ?

2004-05-13 Thread John Moore
Paul McCulloch wrote: Hm, that obvious, eh? Oh, dear! Thanks. Of course, now I know what the answer is, Google suddenly returns all the kind of stuff I was looking for before... -- == John Moore - Norwich, UK - [EMAIL PROTECTED] =

Re: Accessing ResourceBundle items from Action class

2004-05-13 Thread None None
I thought that would be correct, but I'm now trying something similar and it's not working. Here's what I've done... In my WEB-INF/classes folder I have two files: ofmResoures.properties and ofmResources_de.properties. In my Action, I have the following: MessageResources mr = getResources(req

Re: Html:link and save form

2004-05-13 Thread Axel Stahlhut
Hi Sandra, a link never submits data of the surrounding form. If you do it the way you did, this should work, but if the user has javascript disabled, nothing is submitted. You have got to check at least for errors from that. But the user will never know or understand, ehat is happening. You s

Re: composing dynamic url

2004-05-13 Thread Ryan . Hoffmann
I like that approach better than the one I found using jsp:getproperty. Thanks Kiran Kiran Kumar

RE: Newbie question regarding Tiles and ActionErrors

2004-05-13 Thread Adam Lipscombe
Thanks Karan and Susan. The action tag was indeed incorrect - the input attribute was Page1.jsp rather than the template JSP. Hmmm - I am learning! Adam -Original Message- From: karan kondal [mailto:[EMAIL PROTECTED] Sent: 13 May 2004 14:07 To: Struts Users Mailing List Subject: Re:

Re: Newbie question regarding Tiles and ActionErrors

2004-05-13 Thread karan kondal
Hi I think you should check your tag for the input attribute. input attribute should be having the name of the file you want to display in case of any error from validation cheers kk PS: let me know if that help --- Adam Lipscombe <[EMAIL PROTECTED]> wrote: > Folks, > > > I am a struts new

Re: Newbie question regarding Tiles and ActionErrors

2004-05-13 Thread Susan Bradeen
"Adam Lipscombe" <[EMAIL PROTECTED]> wrote on 05/13/2004 08:43:15 AM: > Folks, > > > I am a struts newbie trying to create a test app using Struts 1.1, JSP with > Tiles. > > My problem is that I am using Tiles to construct templated JSPs. > One of the JSP elements inserted into the template

Re: Html:link and save form

2004-05-13 Thread Susan Bradeen
Sandra, I'm not exactly clear on your question. Looks like you are trying to submit a form by clicking of a link, invoking myAction.do to do something with the form data. This should be workable. Are things not happening as you expect after the form submits? Does changing the paramScope to 're

Newbie question regarding Tiles and ActionErrors

2004-05-13 Thread Adam Lipscombe
Folks, I am a struts newbie trying to create a test app using Struts 1.1, JSP with Tiles. My problem is that I am using Tiles to construct templated JSPs. One of the JSP elements inserted into the template has a form that captures user input. When the form is submitted and the ActionForm val

RE: DispatchAction with Images

2004-05-13 Thread Robert Taylor
This may help: http://issues.apache.org/bugzilla/show_bug.cgi?id=19925 robert > -Original Message- > From: news [mailto:[EMAIL PROTECTED] Behalf Of Mittack > Sent: Thursday, May 13, 2004 4:29 AM > To: [EMAIL PROTECTED] > Subject: DispatchAction with Images > > > > When a Button is cl

Problem with tag

2004-05-13 Thread hicnar_struts_list
Hi all, My name is Chris and I'm new around here :) I'm trying to go through some code that is "inspired" by the "FinancialPortfolio" example from "Struts Kick Start" book. I've encountered some problems with the tab. The details are right here. One of the windows is supposed to look kind of li

Re: JSTL Core equivalent of ?

2004-05-13 Thread John Moore
Paul McCulloch wrote: Hm, that obvious, eh? Oh, dear! Thanks. Of course, now I know what the answer is, Google suddenly returns all the kind of stuff I was looking for before... John -- = John Moore -Norwich, UK-[EMAIL PROTECTED]

action with context relative forward

2004-05-13 Thread Navjot Singh
Hi, I have a module-based struts application. Assume, one of the modules is "member". Now, i need an when i type http://localhost/napp/member/ShowMemberReg.do (/napp is context) it tries to forward to /member/WEB-INF/jsp/member/reg.jsp which is valid as DTD says "this forward attribute is modu

RE: JSTL Core equivalent of ?

2004-05-13 Thread Paul McCulloch
> -Original Message- > From: John Moore [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 13, 2004 11:48 AM > To: Struts Mailing List > Subject: JSTL Core equivalent of ? > > > I'm trying to switch over to using JSTL where possible. I've done the > replacements, where parameters and sco

RE: skins with Struts-Tiles framework

2004-05-13 Thread Guillermo Meyer
Xkins does not replace Tiles. You can use Xkins with tiles. Tiles (among other things) arrange page layout. Xkins manage the look&feel of the page. Xkins does not replace struts tags as struts-layout does. Xkins are used inside taglibs to generate HTML (or other output) or as decorators of other t

JSTL Core equivalent of ?

2004-05-13 Thread John Moore
I'm trying to switch over to using JSTL where possible. I've done the replacements, where parameters and scoped objects are concerned. I want now to find the JSTL replacement for , where the key is an entry in ApplicationResources.properties (i.e., a properties file in the /classes directory).

Declarative Exception handling

2004-05-13 Thread Ashutosh Satyam
Hi, In my struts configuration file, I have declared a global exception as mentioned below. I'm using the default ExceptionHandler. The idea behind defining this global exception was not to show any kind of exception on the browser. This works fine. But now I'm not able to trac

Html:link and save form

2004-05-13 Thread Heligon Sandra
I have a form with a htlm:link I need to add submit on the onclick to have changes of the form. If I don't make submit the state of the form is not saved. Is it a bug ? Sandra - To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

DispatchAction with Images

2004-05-13 Thread Mittack
When a Button is clicked I currently use JavaScript to set a flag in a formbean which the Action Class then uses to determine which button I pressed. Implementing in this fashion has caused numerous nested ifs in the Action Class. So that we could seperate the code into seperate functions I was

  1   2   >