External And Internal URLs

2004-08-18 Thread Toby Saville
I have tomcat running on a server with an internal name of http://webserver1 This is then mapped (im not sure how as this is not my area) to the external URL: http://maps.gov.au However, when a struts action is invoked by a user on the external website, the internal host name is resolved when

Difference between different validator forms

2004-08-18 Thread Jitesh Sinha
Hi All 1.)what are the difference in scenarios when we want to use DynaValidatorForm and DynaValidatorActionForm 1.)what are the difference in scenarios when we want to use ValidatorForm and ValidatorActionForm Thanks, -Jitesh

Re: DynaActionForm java.lang.ArrayIndexOutOfBoundsException

2004-08-18 Thread Rick Reumann
[EMAIL PROTECTED] wrote: Thanks Anirudh. Tried, but didn't work. Same issue. Reinitialize the array with an adequate size in your form's reset method (or set your form to use Session scope). -- Rick - To unsubscribe, e-mail:

Re: Disable validate in actionForm

2004-08-18 Thread Rick Reumann
Sebastian Ho wrote: I suppose this is how I do it? html:submit property=action value=Create Experiment bean:message key=button.createexperiment/ html:hidden property=selection value=createexperiment / /html:submit Why don't you just use a cancel

Re: Difference between different validator forms

2004-08-18 Thread Kunal Parikh
http://wiki.apache.org/struts/ValidatorActionForms On Wed, 18 Aug 2004 12:12:14 +0530, Jitesh Sinha [EMAIL PROTECTED] wrote: Hi All 1.)what are the difference in scenarios when we want to use DynaValidatorForm and DynaValidatorActionForm 1.)what are the difference in scenarios when we want to use

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 : form-bean name=myForm type=org.apache.struts.validator.DynaValidatorForm form-property name=lines type=com.test.Line[]/ form-property name=lastSlotId

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 logic:iterate id=mylist name=list Element Value: bean:write

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 html:options 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;

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

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,

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: snip package foo.bar; public class MyAction extends org.apache.struts.tiles.actions.TilesAction { public ActionForward execute(ComponentContext componentContext,

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

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: logic:present scope=session name=user is there some way to do this in jstl? Thanks. Dean Hoover

Re: logic:present jstl equivalent?

2004-08-18 Thread Deepak
Try c:if test=${user != null} --Do Something /c:if --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

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

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

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? Otherwise: try

Re: DynaActionForm java.lang.ArrayIndexOutOfBoundsException

2004-08-18 Thread Bill Siggelkow
form-property name=lines type=com.test.Line[] size=100/ [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,

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 definition name=/content/menu.body path=/layout/tabsLayout.jsp putList name=tabList item value=Image Upload

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: Accessing collections in jsp

2004-08-18 Thread Bill Siggelkow
Vector v=new Vector(); v.add(somestring); v.add(someotherstring); request.setAttribute(list,v); logic:iterate id=mylist name=list Element Value: bean:write name=mylist /br / /logic:iterate - To unsubscribe,

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 example

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

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 directed to

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 page. :)

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 for

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 dynamic

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,

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

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

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

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

RE: Generating struts tags from a Java Bean

2004-08-18 Thread Victor Grazi
Not exactly; can you elaborate the step Model Use of struts tags 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

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, 2004

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 br 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 bean:write ... 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, and any

Re: how to print out html with bean tag

2004-08-18 Thread Kishore Senji
http://marc.theaimsgroup.com/?l=struts-userm=109164486002689w=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 br embedded in some message and I want the browser to reat them as line breaks, instead

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 bean:write name=quote property=errorMessage filter=false/ And it still converts br 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 jsp:incluse bit is not included in the source - it is just completly ignored. Have you any suggestion on this? Thank you, Terry From: Paul McCulloch [EMAIL PROTECTED]

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: span class=righthtml:submit value=next//span But i do not want to use

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 next the

RE: Recursive pages

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

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

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

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 span class=righthtml:image src='img/next.gif' value='Submit' title='Submit' onclick='this.submit();' //span -Original Message- From: Michael McGrady [mailto:[EMAIL PROTECTED] Sent: Wednesday,

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 span class=righthtml:image src='img/next.gif' value='Submit' title='Submit' onclick='this.submit();' //span -Original Message- From: Michael McGrady [mailto:[EMAIL PROTECTED]

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 html:img page=/image/myimage.gif module=/ and it does

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-userm=109164486002689w=2 On Wed, 18 Aug 2004 16:06:16 +0100,

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

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

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 so please

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, 2004

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

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

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

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

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]

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

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

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

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

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

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

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] cc

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:13 PM

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

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:16

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

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

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

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

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

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

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, or is

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 the user

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

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

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 snip bunch of code/snip if(physicalAudit == true){

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

[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 The

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: Wednesday,

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 regular HTML, I

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

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 18, 2004

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]

configuration violating J2EE spec?

2004-08-18 Thread Dan Allen
Before I go paging through the J2EE spec to find a defense, I want to see if someone out there can offer advice in the following matter. In our application, the configuration of the servers is such that any URL with a context of /apps/ is captured by the webserver, the URL is rewritten with this

  1   2   >