RE: DynaActionForm java.lang.ArrayIndexOutOfBoundsException

2004-08-18 Thread ravi.vedala
Thanks Rick. Right now the form is in session scope. Giving the action mapping and the form definition for your reference : Action mapping is : Regds Ravi -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 1

Accessing collections in jsp

2004-08-18 Thread vineesh . kumar
To pass a range of values i used in PassAction.java Vector v=null; v.add("somestring"); v.add("someotherstring"); request.setAttribute("name",v); and in the jsp i tried to access it like Element Value: but i got an error saying javax.servlet.Serv

RE: Accessing collections in jsp

2004-08-18 Thread VAN BROECK Jimmy
Hmm, i don't think your Passaction code is complete?? With this code, you would already get an nllpointerexception on the v variable! Aren't you missing something? Otherwise: try Vector v=new Vector(); -Original Message- From: vineesh . kumar [mailto:[EMAIL PROTECTED] Sent: woensdag 18

RE: Accessing collections in jsp

2004-08-18 Thread ravi.vedala
Use tag. -Original Message- From: vineesh . kumar [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 12:43 PM To: [EMAIL PROTECTED] Subject: Accessing collections in jsp To pass a range of values i used in PassAction.java Vector v=null; v.add("somestring");

variable number of parameters in DynaValidatorActionForm

2004-08-18 Thread "Hevia Vega, Andrés"
Hi: We are developing an application with struts using DynaValidatorActionForm. The attributes of the forms must be declared in struts-config file. Can I have dynamic forms with variable number of parameters without declare in struts-config? Thanks

RE: DynaActionForm java.lang.ArrayIndexOutOfBoundsException

2004-08-18 Thread ravi.vedala
Hi Rick, How to re-set the size of the array in the form? Can you pls point me to some example. Regds Ravi -Original Message- From: Ravi Vedala (WT01 - FINANCE BANKING & SERVICES) Sent: Wednesday, August 18, 2004 12:30 PM To: [EMAIL PROTECTED] Subject: RE: DynaActionForm java.

RE: Difference between different validator forms

2004-08-18 Thread Jitesh Sinha
Okay so that means DynaValidatorForm can be used throughout a formbean while DynaValidatorActionForm can be made particular to a JSP .Is that correct? Now where can I find answer for 2.)? Thanks -Original Message- From: Kunal Parikh [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2

Re: Modifying Tiles definitions dinamically

2004-08-18 Thread brenmcguire
Ok I'll try to explain the whole process. 1) Create your "TilesAction". For example, take this example class: package foo.bar; public class MyAction extends org.apache.struts.tiles.actions.TilesAction { public ActionForward execute(ComponentContext componentContext, ActionMappi

RE: Difference between different validator forms

2004-08-18 Thread Jitesh Sinha
Never mind...I got it now.. -Original Message- From: Jitesh Sinha [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 1:05 PM To: Struts Users Mailing List Subject: RE: Difference between different validator forms Okay so that means DynaValidatorForm can be used throughout a formb

RE: Accessing collections in jsp

2004-08-18 Thread VAN BROECK Jimmy
What you store in the request with name "name" doesn't match the attribute name="list" in the logic iterate tag. Make sure both are the same! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: woensdag 18 augustus 2004 9:20 To: [EMAIL PROTECTED]; [EMAIL PROTECTED

logic:present jstl equivalent?

2004-08-18 Thread Dean A. Hoover
I am attempting to change my application to use jstl wherever possible. Is there an equivalent in jstl for the logic:present tag? For example, I use: is there some way to do this in jstl? Thanks. Dean Hoover - To unsubscribe, e-ma

Re: logic:present jstl equivalent?

2004-08-18 Thread Deepak
Try --Do Something --Deepak - Original Message - From: "Dean A. Hoover" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 18, 2004 1:37 PM Subject: logic:present jstl equivalent? > I am attempting to change my application to > use jstl wherever possible. Is there an

Re: RE: Accessing collections in jsp

2004-08-18 Thread vineesh . kumar
can you specify the code to access individual elemets of the list in the jsp i tried Element Value: and i got a whole list and it printed two times since it has two elements On Wed, 18 Aug 2004 VAN BROECK Jimmy wrote : >Hmm, i don't think your Passaction code is complete?? > >W

RE: Recursive pages

2004-08-18 Thread Paul McCulloch
I think the problem is that you are using a static include. This is an instruction to the jsp -> java compiler that, you want to include the current *page source* within itself! You say you get a recursive loop - I'm surprised. I would expect that this wouldn't compile at all - are you sure yuo ge

Container managed security in tomcat 5.x, need j_password in struts web app, ServletFilter or IntermediateServlet? [Auf Viren geprüft]

2004-08-18 Thread Frerk . Meyer
Subject: Container managed security in tomcat 5.x, need j_password in struts web app, ServletFilter or IntermediateServlet? Background: = I'm writing a web front-end to a back-end system which has 1000 user accounts and each user has different rights (ACIs, ACLs) in that back-end (think of

Re: Accessing collections in jsp

2004-08-18 Thread Shailender Jain
In the (name="list") Here the "list" should be same as key used during setAttribute VAN BROECK Jimmy wrote: > Hmm, i don't think your Passaction code is complete?? > > With this code, you would already get an nllpointerexception on the v variable! > > Aren't you missing something? > > Otherwi

Re: DynaActionForm java.lang.ArrayIndexOutOfBoundsException

2004-08-18 Thread Bill Siggelkow
[EMAIL PROTECTED] wrote: Hi Rick, How to re-set the size of the array in the form? Can you pls point me to some example. Regds Ravi -Original Message- From: Ravi Vedala (WT01 - FINANCE BANKING & SERVICES) Sent: Wednesday, August 18, 2004 12:30 PM To: [EMAIL PROTECTED] Subject:

Insert a SimpleMenuItem with a tiles tag

2004-08-18 Thread Deepak
Hi All, Is it possible to insert a SimpleMenuItem with a tiles tag instead of using html tags ? For ex. If I have items defined as Now to display these items I can use " > Is there a "tiles way" to insert this tab ? thanks n regards D

RE: DynaActionForm java.lang.ArrayIndexOutOfBoundsException

2004-08-18 Thread ravi.vedala
I have tried that ...form-property don't have a size attribute. :-( -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Siggelkow Sent: Wednesday, August 18, 2004 4:50 PM To: [EMAIL PROTECTED] Subject: Re: DynaActionForm java.lang.ArrayIndexOutOfBoundsException [

Re: logic:present jstl equivalent?

2004-08-18 Thread Bill Siggelkow
... Dean A. Hoover wrote: I am attempting to change my application to use jstl wherever possible. Is there an equivalent in jstl for the logic:present tag? For example, I use: is there some way to do this in jstl? Thanks. Dean Hoover ---

Re: Accessing collections in jsp

2004-08-18 Thread Bill Siggelkow
Vector v=new Vector(); v.add("somestring"); v.add("someotherstring"); request.setAttribute("list",v); Element Value: - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

Re: [ANNOUNCE] XDoclet Struts DynaForm 1.2.2 SNAPSHOT

2004-08-18 Thread James Mitchell
There is copy/paste error in your example link at the bottom. It has this: (note the error) * @struts.dynaform name="personForm" *type="org.apache.struts..validator.DynaValidatorForm" ^^ *description="This is an examp

Refresh problem.

2004-08-18 Thread nitin dubey
Hello, I have a page wherein I am listing a set of records. This page also has a button for adding new record. Now if the user clicks the [Add New] button, adds the record(after which he is directed to the same listing page) and refreshes the same record is added once more. Here onwards every r

Re: Refresh problem.

2004-08-18 Thread nitin dubey
The user is refreshing on the LIST page. :) --- nitin dubey <[EMAIL PROTECTED]> wrote: > Hello, > > I have a page wherein I am listing a set of records. > > This page also has a button for adding new record. > Now if the user clicks the [Add New] button, adds > the > record(after which he is di

Re: Refresh problem.

2004-08-18 Thread Deepak
Either redirect to the LIST page or use token for the Add page - Original Message - From: "nitin dubey" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, August 18, 2004 5:40 PM Subject: Re: Refresh problem. > The user is refreshing on the LIST pag

Re: multiple checkboxes

2004-08-18 Thread Susan Bradeen
Jignesh Kapadia <[EMAIL PROTECTED]> wrote on 08/17/2004 10:14:20 PM: > John, > Thanks for your reply. This is a standard way of using > multiple check boxes(i.e.html:multibox). If you read my earlier e- > mail the requirement is little bit different.Just explaining in > brief again. say

Re: multiple checkboxes

2004-08-18 Thread Jignesh Kapadia
Hi , Thanks for your reply. Let me clarify liitle bit more. Screen One I am displaying a list of records from a list(which is List of an object). There is a boolean property in the object depending on which the check box should be checked or unchecked. Once the list is displayed. I shou

Re: DynaActionForm java.lang.ArrayIndexOutOfBoundsException

2004-08-18 Thread Bill Siggelkow
I am not sure what version of Struts you're using but my version (Struts 1.1 or Struts 1.2) does support the "size" attribute on form-property. Here's the relevant doco for the size attribute on form-property from the Struts 1.1 DTD. --

Re: variable number of parameters in DynaValidatorActionForm

2004-08-18 Thread Hubert Rabago
Take a look at Dyna ActionForms: http://www.niallp.pwp.blueyonder.co.uk/ --- "Hevia_Vega,_Andrés" <[EMAIL PROTECTED]> wrote: > Hi: > We are developing an application with struts using > DynaValidatorActionForm. > The attributes of the forms must be declared in struts-config file. Can I > have dy

Re: multiple checkboxes

2004-08-18 Thread Bill Siggelkow
You don't want to use multibox ... you need to set 'indexed="true"' on the html:checkbox control in the logic:iterate or c:forEach loop that displays your list. Jignesh Kapadia wrote: Hi , Thanks for your reply. Let me clarify liitle bit more. Screen One I am displaying a list of records

Re: Container managed security in tomcat 5.x, need j_password in struts web app, ServletFilter or IntermediateServlet? [Auf Viren geprüft]

2004-08-18 Thread Frerk . Meyer
I got a solution from the tomcat mailing-list: - It is not possible to intersect a servlet between the login.jsp and the /j_security_check servlet -.Therefore it is not possible that the action of the login.jsp form is a Struts Action(Servlet) But You can provide your own Realm (JNDIRealm, JDBCRea

RE: Generating struts tags from a Java Bean

2004-08-18 Thread Victor Grazi
These tags are going to be reused many times throughout our application, and I prefer to omit this type of decision logic from the jsp pages. Therefore I think it pays to design custom tags to accomplish what I need. I have been looking at some of the source code for the various tag handlers that

Re: Generating struts tags from a Java Bean

2004-08-18 Thread Michael McGrady
Jim Barrows wrote: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 17, 2004 9:42 AM To: Struts Users Mailing List Subject: Generating struts tags from a Java Bean I would like to generate struts tags from a Java bean, which would decide what t

Re: DynaActionForm java.lang.ArrayIndexOutOfBoundsException

2004-08-18 Thread Rick Reumann
[EMAIL PROTECTED] wrote: I have tried that ...form-property don't have a size attribute. :-( If you are using a DynaForm, which I recommend you DO NOT (I think they stink big time and I can give reasons why) you'll have to create your own class that subclasses DynaForm so that you can declare a r

Re: Generating struts tags from a Java Bean

2004-08-18 Thread Michael McGrady
Victor Grazi wrote: These tags are going to be reused many times throughout our application, and I prefer to omit this type of decision logic from the jsp pages. Therefore I think it pays to design custom tags to accomplish what I need. I have been looking at some of the source code for the vario

RE: Generating struts tags from a Java Bean

2004-08-18 Thread Victor Grazi
Not exactly; can you elaborate the step "Model Use of logic to generate " -Original Message- From: Michael McGrady [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 11:15 AM To: Struts Users Mailing List Subject: Re: Generating struts tags from a Java Bean The JSP page is r

Re: Refresh problem.

2004-08-18 Thread Harjot Singh
Hi Nitin Have a look at this (Search for 'token' on this page) http://www.scioworks.net/camino_doc/manual/strutsIntro/struts1_0.html Hope you find a solution. Harjot - Original Message - From: "nitin dubey" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 18, 200

how to print out html with bean tag

2004-08-18 Thread teknokrat
I need to print out strings without having the html escaped i.e. i have embedded in some message and I want the browser to reat them as line breaks, instead i always get them displayed whether i have filter set to on or off in thanks ---

RE: how to print out html with bean tag

2004-08-18 Thread David Friedman
Use a Bean:write with filter=false tag. Why did you write "on" and "off"? Are you giving those as your flags to the "filter" attribute? Docs for "bean:write" read: filter - If this attribute is set to true, the rendered property value will be filtered for characters that are sensitive in HTML, an

Re: how to print out html with bean tag

2004-08-18 Thread Kishore Senji
http://marc.theaimsgroup.com/?l=struts-user&m=109164486002689&w=2 On Wed, 18 Aug 2004 16:06:16 +0100, teknokrat <[EMAIL PROTECTED]> wrote: > I need to print out strings without having the html escaped i.e. i have > embedded in some message and I want the browser to reat them as > line breaks, ins

Re: how to print out html with bean tag

2004-08-18 Thread teknokrat
David Friedman wrote: Use a Bean:write with filter=false tag. Why did you write "on" and "off"? Are you giving those as your flags to the "filter" attribute? yes, i did use false , in fact what i have exactly is And it still converts to
--

RE: Recursive pages

2004-08-18 Thread terry Highfield
Cheers Paul, I went down this path also, I tried jsp:include but this was ignore by tomcat. So much ignored infact the the Have you any suggestion on this? Thank you, Terry From: Paul McCulloch <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: 'Struts Users Maili

form submit problem...

2004-08-18 Thread Shilpa Nalgonda
I am trying to submit a form with users email and password, such that when the user ckicks on next the checkCustomer.do action is executed. I am using html:submit to display the next button as below:" " But i do not want to use html:submit as i have to display a img butt

RE: form submit problem...

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Shilpa Nalgonda [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 9:15 AM > To: Struts Users Mailing List > Subject: form submit problem... > > > I am trying to submit a form with users email and password, > such that when > the user ckicks on n

RE: Recursive pages

2004-08-18 Thread Paul McCulloch
Strange. I can successfully define a very simple recursivejsp page: {begin recursive.jsp} Hello World {begin recursive.jsp} This works fine (other than crashing the container of course!). I'm using Tomcat 4 inside JBoss 3.2.3. looking at the generted servlet source I can see tha

How to set mask to validate ISO-8859-1 character set

2004-08-18 Thread Brown, James
What is the correct way to setup struts validation to allow a user to enter the following characters in ISO-8859-1 character set: Hex codeEquivalent characters 0x09\t 0x0A\n 0x0D\r 0x21-0x7E !"#$%&'()*+,-./0123456789:;<=>[EMAIL PROTECTED]|}~ 0xA0-0xFF

Re: form submit problem...

2004-08-18 Thread Michael McGrady
Jim Barrows wrote: -Original Message- From: Shilpa Nalgonda [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 9:15 AM To: Struts Users Mailing List Subject: form submit problem... I am trying to submit a form with users email and password, such that when the user ckicks on nex

Re: form submit problem...

2004-08-18 Thread Michael McGrady
Michael McGrady wrote: I would also suggest: http://wiki.apache.org/struts/StrutsCatalogMultipleImageTagsSimplified Michael Perhaps I should say that I used the same solution that Ted suggests but found that it was way too heavy. You have to create an ImageButtonBean in your ActionForm for eac

RE: form submit problem...

2004-08-18 Thread Shilpa Nalgonda
Thanks for the references, but just replacing html:submit with the below line worked for me -Original Message- From: Michael McGrady [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 12:50 PM To: Struts Users Mailing List Subject: Re: form submit problem... Jim Barrows wrote:

Re: how to print out html with bean tag

2004-08-18 Thread Bill Siggelkow
Are you sure that these strings have not already been encoded with the character entities? teknokrat wrote: David Friedman wrote: Use a Bean:write with filter=false tag. Why did you write "on" and "off"? Are you giving those as your flags to the "filter" attribute? yes, i did use false , in fact

Re: form submit problem...

2004-08-18 Thread Michael McGrady
Shilpa Nalgonda wrote: Thanks for the references, but just replacing html:submit with the below line worked for me -Original Message- From: Michael McGrady [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 12:50 PM To: Struts Users Mailing List Subject: Re: form submit problem...

html:img tag and modules

2004-08-18 Thread David Erickson
Hi I've got a pretty basic problem and I can't seem to understand why the html:img tag doesn't support it. I've got all my images stored under the default module in the /images directory. I want to access them from different modules. I tried and it does not work, it tries to rewrite the url to

Re: how to print out html with bean tag

2004-08-18 Thread teknokrat
Ok, sorry, I am an idiot. In case any one else has problems with this - RESTART TOMCAT! I don't know why , but after restarting tomcat (5.16) the tag works OK. Go figure. Kishore Senji wrote: http://marc.theaimsgroup.com/?l=struts-user&m=109164486002689&w=2 On Wed, 18 Aug 2004 16:06:16 +0100, t

Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread bmf5
I'm new to Struts and couldn't find anything about this on the archive so please bear with me if I'm repeating a question. I'm developing a Struts 1.1 web app and trying to implement the validation plug-in. Things went well as long as I was only using the validations that came with the plug-i

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Galbreath, Mark A
Validator sucks. Learn to live without it - use forms validation. Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 1:49 PM I'm developing a Struts 1.1 web app and trying to implement the validation plug-in. Things went well as l

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Jim Barrows
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 10:49 AM > To: [EMAIL PROTECTED] > Subject: Validation plug-in & Websphere Studio 5.0.1 > > > > > > > I'm new to Struts and couldn't find anything about this on > the archive

Re: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread James Mitchell
I thought we got rid of you!!!;) -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: "Galbreath, Mark A" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Wednesday, August 18

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Galbreath, Mark A
I went to JavaOne and Craig told me how much I was missed ;-) -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 2:00 PM I thought we got rid of you!!!;) - To uns

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Jones, Demian
PLEASE TAKE ME OFF THIS MAILING -Original Message- From: Galbreath, Mark A [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 2:06 PM To: 'Struts Users Mailing List' Subject: RE: Validation plug-in & Websphere Studio 5.0.1 I went to JavaOne and Craig told me how much I was missed

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Jones, Demian
PLEASE TAKE ME OFF THIS MAILING -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 1:59 PM To: Struts Users Mailing List Subject: Re: Validation plug-in & Websphere Studio 5.0.1 I thought we got rid of you!!!;) -- James Mitchell Soft

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Jones, Demian
PLEASE TAKE ME OFF THIS MAILING -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 1:59 PM To: Struts Users Mailing List Subject: Re: Validation plug-in & Websphere Studio 5.0.1 I thought we got rid of you!!!;) -- James Mitchell Soft

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Jones, Demian
PLEASE TAKE ME OFF THIS MAILING -Original Message- From: Jim Barrows [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 1:59 PM To: Struts Users Mailing List Subject: RE: Validation plug-in & Websphere Studio 5.0.1 > -Original Message- > From: [EMAIL PROTECTED] [mailto:

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Jones, Demian
PLEASE TAKE ME OFF THIS MAILING -Original Message- From: Galbreath, Mark A [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 1:55 PM To: 'Struts Users Mailing List' Subject: RE: Validation plug-in & Websphere Studio 5.0.1 Validator sucks. Learn to live without it - use forms va

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Jones, Demian
PLEASE TAKE ME OFF THIS MAILING -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 1:49 PM To: [EMAIL PROTECTED] Subject: Validation plug-in & Websphere Studio 5.0.1 I'm new to Struts and couldn't find anything about this on the arch

RE: how to print out html with bean tag

2004-08-18 Thread Jones, Demian
PLEASE TAKE ME OFF THIS MAILING -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of teknokrat Sent: Wednesday, August 18, 2004 1:39 PM To: [EMAIL PROTECTED] Subject: Re: how to print out html with bean tag Ok, sorry, I am an idiot. In case any one else has problems with thi

RE: html:img tag and modules

2004-08-18 Thread Jones, Demian
PLEASE TAKE ME OFF THIS MAILING -Original Message- From: David Erickson [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 1:31 PM To: Struts Users Mailing List Subject: html:img tag and modules Hi I've got a pretty basic problem and I can't seem to understand why the html:img ta

RE: form submit problem...

2004-08-18 Thread Jones, Demian
PLEASE TAKE ME OFF THIS MAILING -Original Message- From: Michael McGrady [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 1:27 PM To: Struts Users Mailing List Subject: Re: form submit problem... Shilpa Nalgonda wrote: >Thanks for the references, but just replacing html:submit

RE: how to print out html with bean tag

2004-08-18 Thread Jones, Demian
PLEASE TAKE ME OFF THIS MAILING -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of Bill Siggelkow Sent: Wednesday, August 18, 2004 1:11 PM To: [EMAIL PROTECTED] Subject: Re: how to print out html with bean tag Are you sure that these strings have not already been encoded w

RE: form submit problem...

2004-08-18 Thread Jones, Demian
PLEASE TAKE ME OFF THIS MAILING -Original Message- From: Shilpa Nalgonda [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 1:04 PM To: Struts Users Mailing List Subject: RE: form submit problem... Thanks for the references, but just replacing html:submit with the below line work

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Andy Dailey
To unsubscribe, e-mail: [EMAIL PROTECTED] > -Original Message- > From: Jones, Demian [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 2:13 PM > To: 'Struts Users Mailing List' > Subject: RE: Validation plug-in & Websphere Studio 5.0.1 > > PLEASE TAKE ME OFF THIS MAILING >

RE: html:img tag and modules

2004-08-18 Thread Michael Finger
If you scroll down you'll see: To unsubscribe, e-mail: [EMAIL PROTECTED] Sending emails to the list won't get you off it. -Original Message- From: Jones, Demian [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 11:13 AM To: 'Struts Users Mailing List' Subject: RE: html:img tag a

RE: html:img tag and modules

2004-08-18 Thread amr
There is unsubscription information on the bottom of every post. You may get better results that way. "Jones, Demian" <[EMAIL PROTECTED]

[OT] Supreme idiot

2004-08-18 Thread DGraham
The equivalent of a 3 year old throwing a temper tantrum.  How did you get a job, by holding your breath? "Jones, Demian" <[EMAIL PROTECTED]> 08/18/2004 02:12 PM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To "'Struts Users Mailing List'" <[EMAIL PROTECTED]>

Re: form submit problem...

2004-08-18 Thread Lucas Gonzalez Pearson
Why don´t you just follow the instructions to remove YOURSELF from the mailing list? thanks for not spamming us anymore Regards, Lucas - Original Message - From: "Jones, Demian" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Wednesday, August 18, 2004 3:

RE: unsubscribe

2004-08-18 Thread Galbreath, Mark A
Me thinks this is not a person...if it is, he's a moron. -Original Message- From: Andy Dailey [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 2:19 PM To: Struts Users Mailing List Subject: RE: Validation plug-in & Websphere Studio 5.0.1 To unsubscribe, e-mail: [EMAIL PROTECTED

Learning the basics

2004-08-18 Thread Kenneth Litwak
If I'm an experienced developer, but new to Struts, do I need to buy a book to write a basic app, or is there an online tutorial or something like that that is sufficient? One of the things I'd like to figure out is to how to have three radio buttons, and a regular button, and have a different

Fix computer's date was Re: Struts with Flex

2004-08-18 Thread Rick Reumann
dhay, might be cool if you fixed you system date on your computer:) Thanks. [EMAIL PROTECTED] wrote: Yep, but a pretty prohibitive one. I was very eager to look at Struts with Flex, but then threw it out as we could never afford $12,000 per server.

Re: html:img tag and modules

2004-08-18 Thread David Erickson
Man and I got all excited that someone was replying to my thread and I might get an answer... but noo it gets highjacked by someone who cant read =D -David - Original Message - From: <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, August 18, 2004 12

RE: html:img tag and modules

2004-08-18 Thread Jones, Demian
You guys are hysterical...thanks -Original Message- From: David Erickson [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 2:25 PM To: Struts Users Mailing List Subject: Re: html:img tag and modules Man and I got all excited that someone was replying to my thread and I might get

RE: Learning the basics

2004-08-18 Thread Galbreath, Mark A
http://struts.apache.org/userGuide/ Mark -Original Message- From: Kenneth Litwak [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 2:23 PM To: Struts Users Mailing List Subject: Learning the basics If I'm an experienced developer, but new to Struts, do I need to buy a book t

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread bmf5
Below are snippets from my form. I'm working on the first check of several. But have hit a wall with this problem. The problem doesn't occur without the "errors.add("Test add", new ActionError("errors.physical.takeover"));" line of code. With it the validate() method got called 163 times.

[OT] Re: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Rick Reumann
James Mitchell wrote: I thought we got rid of you!!!;) You can't get rid of Mark.. he lingers around like a bad case of athlete's foot. Or sort of like a foul body odor cloud released after eating 25 hot wings and a bowl of chili. Mark it's much easier for us to breath in #FunkyCodeMonkey (i

RE: Learning the basics

2004-08-18 Thread Kenneth Litwak
I didn't actually find the user guide that helpful for learning basics or for my specific question. Thanks. Ken -Original Message- From: Galbreath, Mark A [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 11:35 AM To: 'Struts Users Mailing List' Subject: RE: Learning the basics

RE: Learning the basics

2004-08-18 Thread Chappell, Simon P
Mark ... you still live!? Welcome back. :-) It's been awfully quiet around here without you. Simon >-Original Message- >From: Galbreath, Mark A [mailto:[EMAIL PROTECTED] >Sent: Wednesday, August 18, 2004 1:35 PM >To: 'Struts Users Mailing List' >Subject: RE: Learning the basics > > >http

Re: Learning the basics

2004-08-18 Thread Rick Reumann
Kenneth Litwak wrote: I didn't actually find the user guide that helpful for learning basics or for my specific question. Thanks. Ignore Mark (trust me:) I have some simple tutorials here if you want some basics http://www.reumann.net/do/struts/main One of the things I'd like to figure out is to

RE: Learning the basics

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Kenneth Litwak [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 11:23 AM > To: Struts Users Mailing List > Subject: Learning the basics > > >If I'm an experienced developer, but new to Struts, do I > need to buy > a book to write a basic app,

RE: Learning the basics

2004-08-18 Thread DGraham
http://www.reumann.net/do/struts/main "Kenneth Litwak" <[EMAIL PROTECTED]> 08/18/2004 02:44 PM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To "Struts Users Mailing List" <[EMAIL PROTECTED]> cc Subject RE: Learning the basics I didn't actually find

RE: Learning the basics

2004-08-18 Thread Kenneth Litwak
Hi Jim, Well, I did actually look in google before posting. If I was doing this in regular HTML, I would not use Javascript, which I view as evil. Thanks. Ken -Original Message- From: Jim Barrows [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 11:49 AM To: Struts Users Ma

RE: Learning the basics

2004-08-18 Thread Galbreath, Mark A
That's right, Rick, you self-promoting egotistical maggot, tell the newbies it's okay to ignore the API. Mark -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 2:49 PM To: Struts Users Mailing List Subject: Re: Learning the basics Kenneth L

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread Jim Barrows
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 11:38 AM > To: Struts Users Mailing List > Subject: RE: Validation plug-in & Websphere Studio 5.0.1 bunch of code > if(physicalAudit == true){ > if(ta

RE: Learning the basics

2004-08-18 Thread Robert Taylor
Ken, if you are familiar with basic web programming and the web MVC architecture, then download the Struts examples and go through them. That should get you up and running. After that, there are several books and a couple of good sites that can get you up to speed. The struts website contains a

[OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Rick Reumann
Ok I'll start with a few - Ejoying some quality time in jail with a guy named Bubba. - Spending time cruising the parking lot at Washington Elementary looking for a date. - Re-reading the book "How To Insult Someone in Ten Words or Less" and of course... - Drinking Old English, St Ides, or Th

Re: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread James Mitchell
1 more... - molesting innocent squirrels behind the pub -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: "Rick Reumann" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wedne

RE: Learning the basics

2004-08-18 Thread Jim Barrows
> -Original Message- > From: Kenneth Litwak [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 11:52 AM > To: Struts Users Mailing List > Subject: RE: Learning the basics > > > Hi Jim, > >Well, I did actually look in google before posting. If I was doing > this in regula

RE: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Galbreath, Mark A
They were NOT innocent! -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 3:03 PM To: Struts Users Mailing List Subject: Re: [OT] Top things Mark has been during his time away from the Struts List 1 more... - molesting innocent squirrel

RE: Validation plug-in & Websphere Studio 5.0.1

2004-08-18 Thread bmf5
My bad. That was some code I was trying just to see what would happen. This line gets the same results and is the one I started with. Promise. errors.add(ActionErrors.GLOBAL_MESSAGE, new ActionError( "errors.physical.takeover"));

Re: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread James Mitchell
Sorry, I meant to say "unsuspecting". -- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx - Original Message - From: "Galbreath, Mark A" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Wednesday, August 1

RE: Learning the basics

2004-08-18 Thread Kenneth Litwak
Thanks Jim, and everyone else, for your help. Ken -Original Message- From: Jim Barrows [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18, 2004 12:04 PM To: Struts Users Mailing List Subject: RE: Learning the basics > -Original Message- > From: Kenneth Litwak [mailto:[EMAIL

Re: Learning the basics

2004-08-18 Thread Rick Reumann
Robert Taylor wrote: The struts website contains a wealth of information on getting started. A google search wouldn't hurt either. Ken's questions are fine compared to the one's I've gotten mailed to me personally lately. I almost thought they were a joke Two separate e-mails from the same

Re: [OT] Top things Mark has been during his time away from the Struts List

2004-08-18 Thread Rick Reumann
- Learning new and inventive ways to clutter up other technical mailing lists with OT Friday posts. -- Rick - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

  1   2   >