How to get Multiple Rows Data in Struts

2003-03-05 Thread Samit Goyal
Hi all, (B (BI am having a JSP which contains 12 rows of editable fields. The each row (Bcontains same type of editable fields. (B (BNow, how shall i handle it in the Form Bean. Shall i create 12 different (Bfields for each row or can I use Array/List for that. (B (BWill struts set the

RE: [OT] Ancient computing

2003-03-05 Thread StrutsBolsover
I know I've come late to this thread - but my first was a couple of logarithmic potentiometers and a meter - analogue computing at it simplest - but it worked and provided the battery was not going flat remarkably accurate - at least as good as the slide rules we all had at that time. - eh!

Populating hidden fields from an iterator

2003-03-05 Thread Karl
I'm trying to get struts to generate rows of data with an edit button beside (Beach row. When that edit button is pressed, the record it references will be (Bloaded into an edit screen. (B (BThe record is referenced by its ID value, which I want to put into a hidden (Bfield. (B (BI

Re: help with populating a select box from a bean

2003-03-05 Thread Jose Gonzalez Gomez
Take a look at html:options. I think that's what you're looking for. Regards Jose bobd wrote: The following code successfully iterates over an array coursetitles stored in bean reference courseCatalog. logic:iterate id=element name=courseCatalog property=coursetitles scope=session

RE: Design question

2003-03-05 Thread Marco Tedone
If I understood your domain there is a page where user can choose a formation: once choosen the formation, the control should be forwarded to another page where, together with data binded with the formation, user would have the possibility to add new info. Is that correct? In this case, there

Re: [OT]: What is vim?

2003-03-05 Thread Simon Kelly
Real Men program with punch cards! Using an old rust knitting needle!?! What is a VDU anyway??? - Original Message - From: Mark Galbreath [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Monday, March 03, 2003 10:14 PM Subject: RE: [OT]: What is vim? Oh, quit

RE: Accepting arrays as values in mapped-backed ActionForms

2003-03-05 Thread James Mitchell
Ok, I've had time to look over your notes. I may be missing some pieces to the puzzle here. If I understand you correctly, you've got a bean (searchBean) that has a List of Story beans, each with id and title. You have a formbean (submitToGroupForm) that returns a Map of Groups

Re: [OT] Ancient computing

2003-03-05 Thread Simon Kelly
I can go one better! When I was a kid, my dad took me to the company he was installing a system for and they had a room with a *valve* computer!!! It had plug boards and everything *sniff sniff* and they let me have a play before they ripped it out. All those cables... Then, when I was

Localisation

2003-03-05 Thread James
I have a LocaleActionClass that sets the locale according to which wee flag the user clicks, my question is how in the struts-config.xml do i specify it to forward to the page they changed locale on (i.e their original page). James

Re: [Strutscx-user] Passing strutscx the location of an xml resource.

2003-03-05 Thread Simon Kelly
Very helpful as always Berny, Thank-you. The XML in question is a reusable list of db connections, that I need to read in as a sort of resource (except that it doesn't fit with the name= set up) so I think the JXPath solution would be the one for this. And just another little question, for the

store an entry from application.resources...

2003-03-05 Thread Mouratidis, Georg
into a variable. Hi @ all, how can i store an entry from application.resources ( message resource bundle ) into a variable to pass it to x:transform as a parameter in my jsp. if there is any other approach please tell me. if i use this x:param name=myparam1 value='bean:message . /'/ i

Re: Localisation

2003-03-05 Thread Simon Kelly
You could set a group of forwards up, based on the locale ie forward name=this_en path=/jsp_pages/out_en-jsp redirect=true/ forward name=this_de path=/jsp_pages/out_de-jsp redirect=true/ forward name=this_ko path=/jsp_pages/out_ko-jsp redirect=true/ within action/ And you can then dynamically

REPOST - Using tiles mappings in global forwards

2003-03-05 Thread White, Joshua A (CASD, IT)
If the forward attribute of the action element can take both an actual path or a tiles definition to forward to, shouldn't the global forwards element have similar functionality? In Chuck Cavaness's book (Programming Jakarta Struts), he attempts to do this on page 347. I just can't get it to

Re: Localisation

2003-03-05 Thread James
ok simon.. thanks one more question, what happens to text entry fields tat havent been submited if the user clicks to alter his locale.. when the page is loaded his entries will be lost.. how can i stop this? Simon Kelly [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] You could set a

Re: REPOST - Using tiles mappings in global forwards

2003-03-05 Thread Simon Kelly
global-forwards forward name=welcome path=my.default redirect=false/ /global-forwards I have inserted the following code into a jsp file to test the forwards: %@ taglib uri=struts-logic prefix=logic% logic:forward name=welcome/ Try changing the path to

RE: TILES - Network Traffic...

2003-03-05 Thread Hue Holleran
Hi Puneet, Sorry for the delay in responding - I've been away for a few days. What you describe is similar to what we did in a web application about 12 months ago - but that was using SPAN... to display/hide the page contents - so in fact all tabs were loaded first and then just displayed when

Re: Localisation

2003-03-05 Thread Simon Kelly
- Original Message - From: James [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 8:38 PM Subject: Re: Localisation ok simon.. thanks one more question, what happens to text entry fields tat havent been submited if the user clicks to alter his locale.. when

Re: Localisation

2003-03-05 Thread Konstantina Stamopoulou
You could set a group of forwards up, based on the locale ie forward name=this_en path=/jsp_pages/out_en-jsp redirect=true/ forward name=this_de path=/jsp_pages/out_de-jsp redirect=true/ forward name=this_ko path=/jsp_pages/out_ko-jsp redirect=true/ within action/ Does this mean that

Urgent, TilesRequestProcessor

2003-03-05 Thread modena
Hi, i've a problem with TilesRequestProcessor; i insert in my struts-config.xml the definition of my classes: controller processorClass=struts.requestP / and requestP extends TilesRequestProcessor (i don't understand whi if i use tiles plug-in i don't exstend RequestProcessor..) in this class i

Nesting logic:iterate

2003-03-05 Thread Heiko Jürgens
Hi all, is it possible to nest iterate-tags with Struts 1.1? I have an ArrayList rows which contains ArrayLists. I tried this in a JSP: logic:iterate id=row name=rows logic:iterate id=field name=row bean:write name=field/ /logic:iterate /logic:iterate But I

RE: Localisation

2003-03-05 Thread Andrew Hill
So... if they click on say , the flag for Belgium, what language will they get? -Original Message- From: James [mailto:[EMAIL PROTECTED] Sent: Thursday, 6 March 2003 03:12 To: [EMAIL PROTECTED] Subject: Localisation I have a LocaleActionClass that sets the locale according to which wee

Re: Nesting logic:iterate

2003-03-05 Thread Konstantina Stamopoulou
I have used the following: logic:iterate id=subscription name=provider property=subscriptions logic:iterate id=product name=subscription property=products /logic:iterate /logic:iterate and it works find. You have to give in each case the property that will get the collection on which the

RE: help with populating a select box from a bean

2003-03-05 Thread Robert Taylor
I generally populate a collection of LabelValue beans and put them in the form or some scope and use optionsCollection tag. For example if I had a collection of LabelValue beans and named it categoryOptions and my form property was category, then the following would be the syntax to render the

Re: Localisation

2003-03-05 Thread James
flemish.. if they want french they click on the french flag Andrew Hill [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] So... if they click on say , the flag for Belgium, what language will they get? -Original Message- From: James [mailto:[EMAIL PROTECTED] Sent: Thursday,

Re: Localisation

2003-03-05 Thread James
i'm not sure at the moment our current ' work around' is to only display the flags on the 'home' page which can be accessed via the menu. This way no data entry is lost.. but i would prefer a way of doing it from any page and returning to the same page, preferably with no data entry loss (or

question

2003-03-05 Thread Koby Dabush
Title: Untitled Document I'm new to struts. How can I put my Messages in DB and use Message-Resource to bring it from DB every time I need it in the Application? Thanks, Yaakov (Koby) Dabush 1301 Shoreway Road, Suite 302, Belmont, CA 94002Tel:

Extra bytes at the end of the class file

2003-03-05 Thread White, Joshua A (CASD, IT)
I received a javax.servlet.ServletException: Extra bytes at the end of the class file when trying to get an instance of a singleton class (someclass.getInstance()). What does this mean? Joshua This communication, including attachments, is for the exclusive use of addressee and may contain

Re: Localisation

2003-03-05 Thread Ivan N. Zhidov
I had a similar situation which I resolved the following way: LocalActionClass sets the locale to whatever comes in the language parameter from the LocaleForm if it supports so you have multiple ApplicationResources files for each of the languages you'd like to support. Then it forwards the

Re: Localisation

2003-03-05 Thread James
Ivan.. that is exactly what im looking for... cheers fella.. my only quetion is if the view is a data entry screen, and they have entered data.. when the view is returned to the entered data is lost.. is there a way round this. We thought about subclassing ActionClass and adding code to the

Re: Nesting logic:iterate

2003-03-05 Thread Heiko Jürgens
I tried it that way but I still get the same error ... I have used the following: logic:iterate id=subscription name=provider property=subscriptions logic:iterate id=product name=subscription property=products /logic:iterate /logic:iterate and it works find. You have to give in

Re: question

2003-03-05 Thread tnist
Koby, There is a package out there developed by James Mitchell called DBMessageResurces or something like thate. I believe that it use to be able to be downloaded from www.open-tools.org/struts-atlanta/downloads. Todd From: Koby Dabush [EMAIL PROTECTED] Date: 2003/03/05 Wed AM 08:01:09

RE: question

2003-03-05 Thread Koby Dabush
This link does not work. I need something very simple instead of putting my messages in ApplicationResources file I just want to put it inside the DB (Oracle) Help Please... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 3:20 PM

Where can I find Example

2003-03-05 Thread Pellier, Marc
Hi, I'm new Where can I find exampleS of struts Application (other than struts-example) ? Thanks Disclaimer: This electronic transmission and any files attached to it are strictly confidential and intended solely for

RE: Where can I find Example

2003-03-05 Thread Raible, Matt
http://sf.net/projects/struts -Original Message- From: Pellier, Marc [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 6:23 AM To: Struts Users Mailing List Subject: Where can I find Example Hi, I'm new Where can I find exampleS of struts Application (other than

Re: Nesting logic:iterate

2003-03-05 Thread Becky Norum
Heiko, I _believe_ that field is a deprecated struts tag, so that word may give you problems. Try changing field to some other variable name, and give that a go. Hopefully, someone who is a better struts programmer than I am can comment on this later - it's still early in the US. =) -- Becky

Association between Session object and Cookies/URL rewriting

2003-03-05 Thread Heligon Sandra
I don't understand very well how Struts manages session objects and why a sessionID is fixed for a user ? Session objects are stored on the web server (Tomcat in my case) and cookie saved on the disk allows to retrieve the HttpSession associated to a user.

Re: Localisation

2003-03-05 Thread Ivan N. Zhidov
I understand you wanting to keep the data across the locale change request though it's doubtful that it will be used much by an average user since they usually pick the language first and don't change it in the middle of filling out the form. When I was trying to figure out a way to do it,

Re: Where can I find Example

2003-03-05 Thread Becky Norum
Marc, http://jakarta.apache.org/struts/resources/examples.html It's also generally a good idea to search the archives before posting a question on a list - this question has been asked several times. A good search archive is: http://marc.theaimsgroup.com/?l=struts-userr=1w=2 Best of luck, --

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-05 Thread Chappell, Simon P
You know it was! The ZX81 was the first machine I owned. The first machinesI used were a ZX80 and an Acorn Atom at our school computer club. -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 8:53 PM To: Struts Users Mailing List Subject: RE:

Re: Association between Session object and Cookies/URL rewriting

2003-03-05 Thread Nicolas De Loof
Struts doesn't create coockies, J2EE servlet container does (tomcat). When you use request.getSession() in your code, J2EE server will a coockie (or a request parameter if URL rewriting is used, see your server config) to get the session ID. If no ID is set, it will generate a new session ID and

Re: Extra bytes at the end of the class file

2003-03-05 Thread Becky Norum
Joshua, Try recompiling the class - I've heard that this can happen when the JVM and compiler are different, especially if the compiler is old. -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http://www.censsis.neu.edu

Wrapping Collections in LazyList to auto-populate form onSubmit

2003-03-05 Thread William Salvucci
From the BananaBean example, I put the following in a nested:form nested:iterate property=bananas nested:text property=flavour/ /nested:iterate and get this exception: java.lang.IllegalArgumentException: Property 'bananas' is not indexed In the form I construct the bananas list using

Re: Wrapping Collections in LazyList to auto-populate form onSubmit

2003-03-05 Thread alexj
Use Collection instead than List (a list is not indexed) -- Alexandre Jaquet - Original Message - From: William Salvucci [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 2:58 PM Subject: Wrapping Collections in LazyList to auto-populate form onSubmit From the

Problems with FormFile.getInputStream()

2003-03-05 Thread Eva Sager
I am using a file tag to upload a file and that seems to be working fine. I then want to email that file as an attachment and that is where I start to run into trouble. I am then trying to make a MimeBodyPart with the InputStream of the FormFile and the resulting file isn't complete. It is as

Re: Problems with FormFile.getInputStream()

2003-03-05 Thread alexj
Hi try that : //Message MimeMessage mensaje = new MimeMessage(session); mensaje.setFrom(new InternetAddress(from)); InternetAddress[] address = {new InternetAddress(TO)};//where TO is an email address

Re: Where can I find Example

2003-03-05 Thread rasy chet
This link has examples from the Oreilly book. http://examples.oreilly.com/jakarta/ --- Pellier, Marc [EMAIL PROTECTED] wrote: Hi, I'm new Where can I find exampleS of struts Application (other than struts-example) ? Thanks

[OT] Java method size limitations

2003-03-05 Thread Becky Norum
This is FYI - it was an issue that came up when someone (not me!) had an 8500 line Java source file. He got a code too large for try statement exception during compilation, which puzzled even some long term Java programmers. Apparently, there is an upper limit of 64K (compiled) on java methods.

Re: Problems with FormFile.getInputStream()

2003-03-05 Thread alexj
nop it's didn't will solve your trouble... - Original Message - From: alexj [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 3:27 PM Subject: Re: Problems with FormFile.getInputStream() Hi try that : //Message MimeMessage mensaje =

Re: [OT] Java method size limitations

2003-03-05 Thread alexj
loool -- Alexandre Jaquet - Original Message - From: Becky Norum [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 3:28 PM Subject: [OT] Java method size limitations This is FYI - it was an issue that came up when someone (not me!) had an 8500 line Java

RE: [OT] Ancient computing

2003-03-05 Thread Kandi Potter
My guess is early 70sbecause my first experience was also in high school using an old IBM System ?? with 64k memory.It took up a complete room.You saved your program by not dropping the punch cards. If your program didn't have any compile errors, it would be 20 minutes

Re: question

2003-03-05 Thread Gemes Tibor
Koby Dabush wrote: I'm new to struts. How can I put my Messages in DB and use Message-Resource to bring it from DB every time I need it in the Application? Create a new class which extends ResourceBundle and takes the data from DB. Read the java.util.ResourceBundle docs. Hth, Tib Ps: Pls choose

RE: Extra bytes at the end of the class file

2003-03-05 Thread White, Joshua A (CASD, IT)
Becky, I am using Tomcat jakarta-tomcat-4.1.18 with jdk 1.3.1_07 on win xp. If I drop the war into the webapps directory all is fine as well. The problem only seems to happen after using the custom Tomcat install/deploy tasks. Anyone have similar problems? After deploying using the

Re: Nesting logic:iterate

2003-03-05 Thread Sundar Narasimhan
Hi all, is it possible to nest iterate-tags with Struts 1.1? Hi, Heiko: I've had luck with patterns similar to what others have suggested, but if you have plain lists or vectors inside lists or vectors.. a better route to go is to try logic:iterate id=row name=bean property=myproperty

Problem with Monkey examples

2003-03-05 Thread Margarita Manterola
Hi! I'm a newbie, trying to get a taste of struts. I'm using Tomcat 3, and I've put all the struts libraries and jars in the apps folder, so that all the apps have access to them. The struts applications (documentation, templates, etc) seem to be working fine. However, I've downloaded the

Re: [OT] Java method size limitations

2003-03-05 Thread David Graham
This came up before in relation to tomcat's jsp compiler generating large methods. I believe they now break up methods into smaller pieces to avoid the limitation. Regardless, I can't think of any good reason to have an 8500 line class! David From: Becky Norum [EMAIL PROTECTED] Reply-To:

RE: Wrapping Collections in LazyList to auto-populate form onSubmit

2003-03-05 Thread Brandon Goodin
That's wierd. I use the LazyList all the time and do not run in to that problem. Did you try using jstl to see if the problem is perhaps somewhere else. You will need to import the jstl core taglib and the struts html-el tag libs. c:forEach items=requestScope.[you form name].bananas var=bannana

RE: [OT] Java method size limitations

2003-03-05 Thread James Childers
-Original Message- From: David Graham [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 8:43 AM To: [EMAIL PROTECTED] Subject: Re: [OT] Java method size limitations This came up before in relation to tomcat's jsp compiler generating large methods. I believe they now

Re: Nesting logic:iterate

2003-03-05 Thread Heiko Jürgens
Hi Sundar, I tried it both ways, but I _always_ get a Jsp compile error, saying that _jspx_xxx_1 is already defined, where xxx stands for the id-attribute (e.g. element) of the inner logic:iterate ! I've had luck with patterns similar to what others have suggested, but if you have plain lists

Re: Wrapping Collections in LazyList to auto-populate form onSubmit

2003-03-05 Thread alexj
It's not a good conception that an List can be indexed (an Collection to) that's suck... an ArrayList ok but not a simple List... (a simple List don't use an array as the internal structure) but for an iterator it's song ok. But that's my opinion Java data structure are really strange. --

JavaScript: resouces not rendering

2003-03-05 Thread Darkgoyle
I have a piece of code such as: html:form... ... input type=image ... src=1.gif onMouseOver=this.src='2.gif' ... /html:form I want to externalize all the images on my application like: ...src=bean:message key=app.img.1/ onMouseOver=this.src='bean:message key=app.img.2'/... The

[OT] JMS

2003-03-05 Thread Gus Delgado
I apologized for the off-topic question, is there a mailing-list for Java Messaging Service that anyone knows about, I'm trying to find some answers to some question I have about that technology. Your help is much appreciated. Thanks. -Gus

Re: JavaScript: resouces not rendering

2003-03-05 Thread David Graham
Looks like you are not using quotes properly. Make sure ' is closed with ' and with . David From: Darkgoyle [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: JavaScript: resouces not rendering Date: Wed, 5 Mar 2003 10:07:16 -0500 I have a

Re: [OT] JMS

2003-03-05 Thread David Graham
http://forum.java.sun.com/forum.jsp?forum=29 From: Gus Delgado [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: [OT] JMS Date: Wed, 05 Mar 2003 10:06:56 -0500 I apologized for the off-topic question, is there a

RE: question

2003-03-05 Thread James Mitchell
I'm sorry, but that link doesn't work right now. I can send you what I have. It is a copy of the struts-example modified to pull the MessageResources from a database. It uses OJB under the covers, but you could easily change it to whatever you want. If you are interested in it, I can send you

Re: Nesting logic:iterate

2003-03-05 Thread Andrew Shirk
Try using the method I suggested in this message: http://marc.theaimsgroup.com/?l=struts-userm=104575299502257w=2 At 03:53 PM 3/5/2003 +0100, you wrote: Hi Sundar, I tried it both ways, but I _always_ get a Jsp compile error, saying that _jspx_xxx_1 is already defined, where xxx stands for the

RE: [OT] JMS

2003-03-05 Thread Joseph Fifield
JMS-INTEREST (http://swjscmail1.java.sun.com/) Joe -Original Message- From: Gus Delgado [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 10:07 AM To: Struts Users Mailing List Subject: [OT] JMS I apologized for the off-topic question, is there a mailing-list for

RE: question

2003-03-05 Thread ALAMI Ahmed
I'm very interested on it, can you send it to me please?? -Message d'origine- De : James Mitchell [mailto:[EMAIL PROTECTED] Envoyé : Wednesday, March 05, 2003 4:20 PM À : 'Struts Users Mailing List' Objet : RE: question I'm sorry, but that link doesn't work right now. I can send you

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-05 Thread Sean Chambers
my ZX81 had a 16k RAM pack. -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: 05 March 2003 13:45 To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-05 Thread Chappell, Simon P
It was six months before I got a RAMPACK. -Original Message- From: Sean Chambers [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 9:27 AM To: 'Struts Users Mailing List' Subject: RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set

RE: question

2003-03-05 Thread James Mitchell
It's 3.6 Meg. Can/Will your mail server handle it? -- James Mitchell Web Developer/Struts Evangelist http://jakarta.apache.org/struts/ People demand freedom of speech to make up for the freedom of thought which they avoid. - Soren Aabye Kierkegaard (1813-1855) -Original

problem with vaidation of numeric field

2003-03-05 Thread Ashish Kulkarni
Hi, I have to validate a double field for input using struts validator, The problem is, in some places comma , is used instead of decimal . in double field, like 123.45 is same is 123,45 but in second case struts gives an error saying invalid double field, can i make the existing validation

Re: Nesting logic:iterate

2003-03-05 Thread Heiko Jürgens
Hi Andrew, works now! Thanks Try using the method I suggested in this message: http://marc.theaimsgroup.com/?l=struts-userm=104575299502257w=2 -- - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: Problems with FormFile.getInputStream()

2003-03-05 Thread Eva Sager
I tried it, with no success... I am not having any trouble creating the MimeMessage at all, that is all working fine, it is getting the FormFile into a MimeBodyPart that I am having trouble with. In my first attempt I tried to create the MimeBodyPart using the constructor that takes in an

Re: JavaScript: resouces not rendering

2003-03-05 Thread Darkgoyle
Well, actually that was my bad when typing the e-mail. It seems like tags within JS within another tag won't render, this is being seen repeatedly... DX - Original Message - From: David Graham [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 10:17 AM Subject: Re:

RE: Relative link to top of page and Struts

2003-03-05 Thread Holman, Cal
For the more complex solution - I use the base tag: base href=http://%= request.getServerName()%:%= request.getServerPort()%%=request.getContextPath()%/ Which renders: base href=http://www.calandva.com:80/holmansite/; At the top of the page: html:link linkName=Top/ At the bottom: html:link

RE: [OT] Ancient computing

2003-03-05 Thread Bueno Carlos M
Dang, I must be a youngster -- mine were a Zenith-Heath kit computer running CP/M and an Atari 400 with BASIC. -Original Message- From: Kandi Potter [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 9:34 AM To: Struts Users Mailing List Subject: RE: [OT] Ancient computing My

RE: [OT] Ancient computing

2003-03-05 Thread Pani, Gourav
ok so i am a kid. first computer - 386. -Original Message- From: Bueno Carlos M [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 10:46 AM To: 'Struts Users Mailing List' Subject: RE: [OT] Ancient computing Dang, I must be a youngster -- mine were a Zenith-Heath kit computer

Re: Localisation

2003-03-05 Thread Micael
Don't know about other people, James, but you don't give me enough information. Why you would care what page they changed locale on is a mystery. But, I assume somehow that the flags are built into your layout, so they can change locale on any page or many pages. Why you would wnat to

RE: [OT] Ancient computing

2003-03-05 Thread du Plessis, Corneil C
Here in South Africa technology was in the same state in the late 70s and early 80s. Doing computer studies meant complete coding sheet this week next week receive punch cards and compile report if successfull compile you may even get an execution report. 8 programs took the whole year to

Re: [OT] Ancient computing

2003-03-05 Thread Tim Shadel
First family computer I remember: 8080 First that I used: Atari or Commodore64 with BASIC (hooked it to the TV, screen was blue with white letters [forboadings of M$??], eventually had a 5 1/4 disk drive) I'm young. I remember typing before writing. Bueno Carlos M wrote: Dang, I must be a

RE: [OT] Ancient computing

2003-03-05 Thread Clement, Stephen
my first experience was in high school too. She was blonde, had a great body and loved driving in my car so one nightoh, you mean first computing experience, that's not as good a story... the meek shall inherit the earth. that's meek not geek. -Original Message- From: Pani, Gourav

Using a TreeModel for Menu State - Best Practice to send statechanges via Struts

2003-03-05 Thread Brian Hart
The TreeModel interface and DefaultTreeModel implementation of the JDK provide the necessary functionality to manage the state of a tree which will be managed in a set of database tables. We will be rendering the state of the tree in HTML. My question is how to build the HTML links to

Re: Nesting logic:iterate

2003-03-05 Thread Yaron Sela
For adding nested:root name=city which tag lib do I have to add? yaron - Original Message - From: Andrew Shirk [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 5:25 PM Subject: Re: Nesting logic:iterate Try using the method I suggested

Re: DynaBeans

2003-03-05 Thread Mark Lowe
Okay the problem was that copying the dynaproperties from a resultsetdynaclass prevented me from adding different datatype etc to get around this i created a new DyanPropery array and fed that to you basicdynaclass constrctor -- ResultSetDynaClass rsdc = new ResultSetDynaClass(rs);

RE: [OT] Ancient computing

2003-03-05 Thread Nelson, Laird
-Original Message- From: Tim Shadel [mailto:[EMAIL PROTECTED] First family computer I remember: 8080 First that I used: Atari or Commodore64 with BASIC (hooked it to the TV, screen was blue with white letters [forboadings of M$??], eventually had a 5 1/4 disk drive) First

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-05 Thread Ray Madigan
I was in grad school when i got to use my first Z80 computer :-( Ouch -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 5:45 AM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: RE: [OT] Don't beat on James! (was RE: [OT]

Re: problem with vaidation of numeric field

2003-03-05 Thread Jeff Kyser
Guess you could use a depends='mask' instead of double and write a pattern that supported '.' or ',' in addition to numbers -jeff On Wednesday, March 5, 2003, at 09:29 AM, Ashish Kulkarni wrote: Hi, I have to validate a double field for input using struts validator, The problem is, in some

RE: [OT] Ancient computing

2003-03-05 Thread du Plessis, Corneil C
Playing the Space shuttle games on the Commodore 64 was just awesome! -Original Message- From: Nelson, Laird [mailto:[EMAIL PROTECTED] Sent: 05 March, 2003 18:10 To: 'Struts Users Mailing List' Subject: RE: [OT] Ancient computing -Original Message- From: Tim Shadel

RE: [OT] Ancient computing

2003-03-05 Thread Ray Madigan
You win 70 to 71 - ouch again -Original Message- From: Kandi Potter [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 6:34 AM To: Struts Users Mailing List Subject: RE: [OT] Ancient computing My guess is early 70sbecause my first experience was also in high school using

RE: [OT] Don't beat on James! (was RE: [OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-05 Thread Chappell, Simon P
Thank goodness someone on this list is older than me! My bones were starting to creak. -Original Message- From: Ray Madigan [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 10:08 AM To: Struts Users Mailing List Subject: RE: [OT] Don't beat on James! (was RE: [OT] JavaScript:

Re: Nesting logic:iterate

2003-03-05 Thread Andrew Shirk
The struts-nested taglib that ships with Struts. At 06:05 PM 3/5/2003 +0200, you wrote: For adding nested:root name=city which tag lib do I have to add? yaron - Original Message - From: Andrew Shirk [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, March

Re: RE: question

2003-03-05 Thread tnist
Koby, You may want to email the author, James Mitchell. You can find some information about the package at: http://jakarta.apache.org/struts/news/news_2002_q4.html Along with a link to his email, [EMAIL PROTECTED] If the above package is overkill, you can create your own class which

RE: [OT] Ancient computing

2003-03-05 Thread Nelson, Laird
-Original Message- From: du Plessis, Corneil C [mailto:[EMAIL PROTECTED] Playing the Space shuttle games on the Commodore 64 was just awesome! Attempting--very, very, very badly--to write Donkey Kong on a TRS-80 was better. :-) Laird

Modern Computing (was RE: [OT] Ancient computing)

2003-03-05 Thread Chappell, Simon P
OK, enough reminising ... what do people currently have? I have a Mac tower with dual 550MHz G4 CPUs, 1.5Gb of RAM and the 22 CinemaDisplay flat panel monitor. I run Mac OS X 10.2.4 on it. And, it almost goes without saying that, I love it. Simon -Original Message- From: du Plessis,

RE: [OT] Ancient computing

2003-03-05 Thread Kandi Potter
Do I get a prizelike youth renewal or even the Struts Book so I can try to keep up with the times? -Original Message- From: Ray Madigan [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 11:10 AM To: Struts Users Mailing List Subject: RE: [OT] Ancient computing You win

Re: Nesting logic:iterate

2003-03-05 Thread Yaron Sela
10x a lot - Original Message - From: Andrew Shirk [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 6:19 PM Subject: Re: Nesting logic:iterate The struts-nested taglib that ships with Struts. At 06:05 PM 3/5/2003 +0200, you wrote: For

strange behaviour between tomcat 4.1 and tomcat 4.1.18

2003-03-05 Thread meissa . Sakho
Hi all, I've migrating my struts app from tomcat4.0.1 to tomcat 4.1.18 . Every thing seemed to work fine when i one of my application I have a very strange thing. I define mutiple forms in my jsp just like below html:form action=/deleteSending.do html:hidden property=codeDemande value=/

Re: Localisation

2003-03-05 Thread Ivan N. Zhidov
James has a very valid point, I had the same problem before. This functionality is very useful in a multilingual app where you'd want transparent page locale change with least impact on the design of your application. Basically if you want to add ability to access certain functionality throughout

RE: Problem with Monkey examples

2003-03-05 Thread Pellier, Marc
I have the same problem tomcat 4.1 -Original Message- From: Margarita Manterola [mailto:[EMAIL PROTECTED] Sent: mercredi 5 mars 2003 15:42 To: Struts Users Mailing List Subject: Problem with Monkey examples Hi! I'm a newbie, trying to get a taste of struts. I'm using Tomcat 3, and

RE: RE: question

2003-03-05 Thread James Mitchell
That's almost correct. The email is for a different James (bet you didn't know we had so many ;) But that's ok, we look like twins.LOL!!! Guess I should change that huh? -- James Mitchell Web Developer/Struts Evangelist http://jakarta.apache.org/struts/ People demand freedom of speech

  1   2   3   >