RE: [OT] RSS w/ JSTL

2005-05-13 Thread Aron Gombas
Brian, you might want to take look at http://informa.sourceforge.net/ Aron Gombas 3NF Corporation www.3nf.com -Original Message- From: Brian McGovern [mailto:[EMAIL PROTECTED] Sent: Friday, May 13, 2005 5:53 PM To: Struts Users Mailing List Subject: [OT] RSS w/ JSTL Has anyone had

Re: [FRIDAY] Re: [POLL] What do you use action forms for?

2005-05-13 Thread Simon Chappell
I can play a CD. On 5/13/05, Marco Mistroni <[EMAIL PROTECTED]> wrote: > Hey, > I played clarinet 10 years ago... is there space for me? :0 > > Regards > marco > > -Original Message- > From: Ted Husted [mailto:[EMAIL PROTECTED] > Sent: 13 May 2005 12:27 > To: Struts Users

Re: Best practice for redirecting on session timeout?[Scanned]

2005-05-13 Thread Rick Reumann
Getting ready to leave so don't have time to look at your code but my doFilter looks like... //doFilter ... String path = request.getRequestURL().toString(); String contextPath = request.getContextPath(); if (pathNeedsCheck(path)) { HttpSession session = request.getSession(false); if (sessi

Setting the default value for an array of objects

2005-05-13 Thread Dahnke, Eric \(Company IT\)
Hello, I believe, it is considered a best practice to use DTOs (transport/beans) to hold the default values of objects (although I've heard that within Actions is the more appropriate place). How do you guys do this when one of your DTOs has an array of child DTOs. For example: public class Poli

test session expired HELP!

2005-05-13 Thread Lucas Bern
Hi guys! can anybody tellme how to know if a session is espired??? thanks! Lucas Brian McGovern <[EMAIL PROTECTED]> escribió: Thank you Mike. That was EXACTLY it. VERY appreciated. I was messing around all morning with this. -Original Message- From: Mike Millson [mailto:[EMAIL PROTECTE

RE: [OT] RSS w/ JSTL

2005-05-13 Thread Brian McGovern
Thank you Mike. That was EXACTLY it. VERY appreciated. I was messing around all morning with this. -Original Message- From: Mike Millson [mailto:[EMAIL PROTECTED] Sent: Friday, May 13, 2005 2:15 PM To: Struts Users Mailing List Subject: RE: [OT] RSS w/ JSTL On Fri, 2005-05-13 at 12:2

RE: [OT] RSS w/ JSTL

2005-05-13 Thread Mike Millson
On Fri, 2005-05-13 at 12:28, Brian McGovern wrote: > Following up. Ive gotten it rss reading to work using jstl/xml > > but 1.1 version. Whats up? > If you are using 1.1 version tags, make sure your web.xml DTD is for J2EE 2.4. I have seen the case where 1.1 tags in combination with web.xml D

RE: [OT] RSS w/ JSTL

2005-05-13 Thread Brian McGovern
Following up. Ive gotten it rss reading to work using jstl/xml but mailto:[EMAIL PROTECTED] Sent: Friday, May 13, 2005 11:55 AM To: 'Struts Users Mailing List' Subject: RE: [OT] RSS w/ JSTL Hello, Yes and no In my app I usually read them, store in db, and from a 'module' of app I r

Re: Sessions and keep-alives

2005-05-13 Thread Frank W. Zammetti
I was wondering if you were going to say that :) That prompts me to ask, why not simply not have a timeout in App A at all? I mean, if opening App B is supposed to, in a sense, stop App A from ever timing out, and if closing App B doesn't necessarily somehow allow App A to time out again, it soun

RE: [OT] RSS w/ JSTL

2005-05-13 Thread Marco Mistroni
Hello, Yes and no In my app I usually read them, store in db, and from a 'module' of app I retrieve them and display them with Struts tags as POJO... I know that does not answer your question, but could you tell me Advantages/disadvantages of the two approaches? Thanx and regards

Re: [OT] Too late to become a rock star?

2005-05-13 Thread Dave Newton
Marsh-Bourdon, Christopher wrote: No offence taken, it is a very boring occupation; we should all stick to programming/wannabe rock/love gods. Oh, I dunno... having dabbled in Permaculture and other various organic-style farming I found myself far more entertained by the whims and interactions

[OT] RSS w/ JSTL

2005-05-13 Thread Brian McGovern
Has anyone had any experience reading in RSS feed with tag libs. Either JSTL or otherwise? Thanks -B - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT] Too late to become a rock star?

2005-05-13 Thread Marsh-Bourdon, Christopher
No offence taken, it is a very boring occupation; we should all stick to programming/wannabe rock/love gods. -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: 13 May 2005 15:24 To: Struts Users Mailing List Subject: Re: [OT] Too late to become a rock star? Marsh-Bour

Re: [OT] Too late to become a rock star?

2005-05-13 Thread Rick Reumann
Marsh-Bourdon, Christopher wrote the following on 5/13/2005 3:50 AM: Never knock Potato farming; I married a potato farmer! I wasn't knocking it for real. I'm sure farmer's hours are long and hard work, but there is something to be said for tilling God's land. I also think it would be cool to run

RE: how to validate when the form-property is of type="java.lang. String[]"

2005-05-13 Thread Charles . Gouin-Vallerand
Hi Mallik, Use a collection of String instead of an array of String. And in the validation.xml file add the "indexedListProperty" field such like this : struts-config.xml: validation.xml:

RE: Framework and application webapps

2005-05-13 Thread Mulligan, Scott H
I don't know if this is what you're looking for, but I created an application that consists of two separate web apps. The first one is a channel application that handles user interface and basic edits. It forwards to a second application that has the business logic. The thinking here is that other

RE: Best practice for redirecting on session timeout?[Scanned]

2005-05-13 Thread Lucas Bern
Hi, I need help too... How should I write the "if" that desires if the session is expired???/ thanks Lucas Adam Lipscombe <[EMAIL PROTECTED]> escribió: Folks Many thanks for all your input on this. I decided to go with the filter approach. My doFilter() method is below. I certainly traps the t

Re: Sessions and keep-alives

2005-05-13 Thread Frank W. Zammetti
Well, I would want to keep the apps isolated as much as possible, so I would do something like this... (1) When App A opens App B, at the same time, it calls a function of its own that sets a flag in session to indicate that App B is open. (2) On every page of App A I would have a Javascript func

RE: [FRIDAY] Re: [POLL] What do you use action forms for?

2005-05-13 Thread Marco Mistroni
Hey, I played clarinet 10 years ago... is there space for me? :0 Regards marco -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED] Sent: 13 May 2005 12:27 To: Struts Users Mailing List Subject: [FRIDAY] Re: [POLL] What do you use action forms for? On 5/13/05,

Re: [FRIDAY] Re: [POLL] What do you use action forms for?

2005-05-13 Thread delbd
Why would you want to trade our beautiful java world acronyms for other ones like MP3, OGG, WMA, RIAA, MPAA or SABAM (in belgium) Ok 2 more hours then it's the really interesting part of the friday: traffic to get back home from the capital when trains are in strike. Cheers. Le Vendredi 13

[FRIDAY] Re: [POLL] What do you use action forms for?

2005-05-13 Thread Ted Husted
On 5/13/05, Leon Rosenberg <[EMAIL PROTECTED]> wrote: > It would also be cool if you could give a short comparison to common > design methods, like OOD/COD with AOA, SOA and MDA. :) Oooh ... acronyms! :) :) That rock band idea is sounding better and better ... :) -Ted.

RE: Best practice for redirecting on session timeout?[Scanned]

2005-05-13 Thread Adam Lipscombe
Folks Many thanks for all your input on this. I decided to go with the filter approach. My doFilter() method is below. I certainly traps the timeout. The problem now is that the redirect fails no matter if I use "/pages/SessionTimedOut.jsp" or a fully qualified URL (e.g "http://localhost:8080/Ex

Creating/Editing of business objects :: Best practise

2005-05-13 Thread Nils Liebelt
Hi all, I am just wondering who you guys handle the different save operations when creating/editing any business object. I see two options: - Put an id into ActionForm - Retrieve the business object with that id - Update busi

Creating/Editing of business objects :: Best practise

2005-05-13 Thread Nils Liebelt
Hi all, I am just wondering who you guys handle the different save operations when creating/editing any business object. I see two options: - Put an id into ActionForm - Retrieve the business object with that id - Update busi

Re: [POLL] What do you use action forms for?

2005-05-13 Thread Leon Rosenberg
On Thu, 2005-05-12 at 15:40 -0700, Michael Jouravlev wrote: > On 5/12/05, Leon Rosenberg <[EMAIL PROTECTED]> wrote: > > Maybe I'm repeating myself, but I give myself a last try :-) > > I'm a beliefer of design by responsibility. When I design an > > application I identify responsibilities to form

Re: How to get the ActionErrors object from the request

2005-05-13 Thread Rutger Heijmerikx
http://www.onjava.com/pub/a/onjava/2003/07/30/jakartastruts.html?page=2 On 5/12/05, Néstor Boscán <[EMAIL PROTECTED]> wrote: > Hi > > Does somebody know how I can get the ActionErrors object from the request??? > > Regards, > > Néstor Boscán > > -- ____

RE: [OT] Too late to become a rock star?

2005-05-13 Thread Marsh-Bourdon, Christopher
Never knock Potato farming; I married a potato farmer! -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: 12 May 2005 17:25 To: Struts Users Mailing List Subject: Re: [OT] Too late to become a rock star? I might give potato farming a try. Frank W. Zammetti wrote the