Re: can't access DAF getMap()

2003-08-17 Thread Mark Lowe
Is myForm scoped to the page? Cheers Mark On Sunday, August 17, 2003, at 03:21 PM, Mike Whittaker wrote: This might work Cannot find bean myForm.map in any scope or I want the java.util.Map for property attribute of html:link infact, I'll probably want a different method of subcl

Re: [OT] BaseBean portal

2003-08-17 Thread Mark Lowe
To you? I thought you knew everything already, if there's an example to copy and paste that is.. I think its vic's site. He's one of the commiters and done some stuff with iBatis and struts I think.. Why are you still looking for other folks to do you work? On Sunday, August 17, 2003, at 03:33

Re: DynaValidatorForm

2003-08-17 Thread Mark Lowe
ArrayList prodList = new ArrayList(); prodList.add(new com.sparrow.beans.Product()); theForm.set("product", prodList); [not using form-property type="com.sparrow.beans.Product[]" as i have this working with array list, but i could be mistaken for my reasons] renders

Re: DynaValidatorForm

2003-08-17 Thread Mark Lowe
You need the indexed attribute on you form properties with render to Keyword: indexed properties. Cheers Mark On Sunday, August 17, 2003, at 03:00 PM, Juan Alvarado wrote: Hello all: I am iterating over a list of products and for each iteration I need to render a form bean with a single

Re: can't access DAF getMap()

2003-08-17 Thread Mark Lowe
This might work or or in which case what's wrong with You've been doing this with struts tags.. Hope this helps Mark On Sunday, August 17, 2003, at 02:33 PM, Mike Whittaker wrote: Okay I've RTFM. seems it should do the job with its populating from a map a

Re: getDataSource compile Error

2003-08-17 Thread Mark Lowe
rver, else what works on one would work on both. I suspect that you've an older version of struts running on your dev server. Cheers Mark On Sunday, August 17, 2003, at 06:08 AM, Lynda Brown wrote: Anyone have any ideas why getDataSource(request) would not be able to compile. I am

Re: DynaActionForm and nesting

2003-08-16 Thread Mark Lowe
I've got this working using ArrayList .. I couldn't imagine how arrays would allow the resizing.. I could be wrong, but I can tell you it works for sure with arrayList.. Cheers Mark On Friday, August 15, 2003, at 09:53 PM, Hary wrote: --- Hary <[EMAIL PROTECTED]> wrote: Hi

Re: Saving as CSV

2003-08-15 Thread Mark Zeltser
Chirag, Take a look at display tag: http://edhill.its.uiowa.edu/display-examples/ Mark. Chirag Mehta <[EMAIL PROTECTED]> wrote: > >Hi again, > >Does anyone know how you would save a dynamically generated table as a >csv file? > >Is there a method that will do it

RE: [OT] - [TOPIC] - [VOTE]

2003-08-14 Thread Mark Galbreath
Not really...after they screw up your system, they say, "ta-ta!" -Original Message- From: Brian Lee [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 9:30 AM To: [EMAIL PROTECTED] Subject: Re: [OT] - [TOPIC] - [VOTE] Isn't "Tata Consultancy Services" an odd name for an IT biz. It

RE: [OT] - [TOPIC] - [VOTE]

2003-08-14 Thread Mark Galbreath
Will there be girls? -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 7:50 AM Another off topic note - With the increased need for professional Struts Training, I decided to begin offering Struts Training Classes for beginner through advanc

RE: [OT] - [TOPIC] - [VOTE]

2003-08-14 Thread Mark Galbreath
+1 -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 7:12 AM To: Struts Users Mailing List Subject: RE: [OT] - [TOPIC] - [VOTE] When I'm in a hurry to get through my inbox, I rely on 2 industry standard categories/criteria for sorting... [

RE: [OT] - [TOPIC] - [VOTE]

2003-08-14 Thread Mark Galbreath
[WGAF]?! Wasn't it you whining about all the traffic on this list? -Original Message- From: message message [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2003 1:08 AM To: [EMAIL PROTECTED] Subject: Re: [OT] - [TOPIC] - [VOTE] Also I think it is owned by one family known as the

RE: [Q] Struts and date formatters

2003-08-14 Thread Mark Galbreath
And you specify the format in your application.properties file. -Original Message- From: Joe Germuska [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2003 8:49 AM To: Struts Users Mailing List Subject: Re: [Q] Struts and date formatters Somewhere between 1.0 and 1.1, the "format"

Re: Iterate question

2003-08-14 Thread Mark Lowe
tModel", amList); session.setAttribute("adjustmentModels", amList); //jsp I have to admit i'm a little confused why i have set the collection as a session attribute and a form property scoped to session, but thus far it seems you have to. Hope this helps Mark On Wed

RE: Weblogic 6 SP 2

2003-08-14 Thread Mark Galbreath
Because SP1 introduced a transaction bug. Then SP3 was released because SP2 introduced a memory leak. Then 7.0 was released because it became apparent that 6.0 wasn't going to make it. -Original Message- From: message message [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 9:28

RE: [FRIDAY] method to get new Id to next action when old Id is in request?

2003-08-14 Thread Mark Galbreath
+1 -Original Message- From: ansuman_behera [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 7:33 AM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: RE: [FRIDAY] method to get new Id to next action when old Id is in request? now that's a good answer:) ansu -Origina

Re: Simple question

2003-08-14 Thread Mark Lowe
http://jakarta.apache.org/struts/userGuide/struts-html.html#submit On Tuesday, August 12, 2003, at 04:04 PM, Norr, Peter wrote: Any reason why the struts tag does not support the "src" attribute? -Original Message- From: Ravi Kora [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003

RE: [OT] Rendering Large ResultSet - Value List Handler Design Pattern

2003-08-14 Thread Mark Galbreath
I send elements of the ResultSet to a String[] and pass it to the presentation tier. Mark -Original Message- From: David Graham [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 12:43 PM You can't store a ResultSet in an HttpSession because it's not Serializable. If

Re: fail getDataSource(request)

2003-08-14 Thread Mark Lowe
chema. But if you've just gotta get it done the dataSource settings worked for me as before. Configuring a dataSource as per the tomcat docs is better than in struts but suffers the same problem that the connection stuff is best in your model. Hope this helps Mark On Wednesday, Augu

RE: Struts Validator

2003-08-14 Thread Mark Galbreath
Me put up? You offered this to the OS community with insufficient documentation. Just look at the archive for this list and I'll wager there are more questions/complaints about Validator than any other aspect of the Struts community. Me shut up? Why don't you guys PUT UP? Mark ---

RE: Struts Validator

2003-08-14 Thread Mark Galbreath
Chuck keeps threatening me to come up to MD to show me that it actually does work, but I think he has refrained from doing so because secretly he knows it's crap, too. Mark -Original Message- From: David Graham [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 4:50

Re: Dynamic Form help

2003-08-14 Thread Mark Lowe
I'm still working on how to store the properties in the form when the size of the form property is changed. But I think this approach with solve what you're doing. Cheers Mark On Wednesday, August 13, 2003, at 07:22 PM, David Erickson wrote: I'm developing some administrative fun

RE: Struts is incomplete

2003-08-14 Thread Mark Galbreath
responsible for books. People here are very helpful if you treat them with the dignity and respect we all deserve. Well, Mark doesn't, but everyone else does! LOL. Kidding, Mark, kidding! Love and kisses At 11:04 AM 8/12/2003 +0400, message message wrote: >keep your abuse to your

[OT] How can Java compete?

2003-08-14 Thread Mark Galbreath
Going where no application has gone before http://msn.com.com/2100-1103_2-999509.html - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Forward to the same page

2003-08-14 Thread Mark Lowe
You can use a global forward and always go back to that.. return mapping.findForward("myglobal.forward"); Cheers Mark On Monday, August 11, 2003, at 01:25 PM, Dirk Behrendt wrote: Hello! I am still searching for a possibility to forward to the same page. I want, that the user can

RE: validation philosophical question

2003-08-14 Thread Mark Galbreath
As usual, very articulate and informative, Ted. Thx. -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2003 3:45 PM To: Struts Users Mailing List Subject: Re: validation philosophical question A "hidden cost" of using the Struts Validator is that

RE: [OT] RE: Struts is incomplete

2003-08-14 Thread Mark Galbreath
incomplete Please unsubscribe me from this 'thread' ;D Failing that, could we move this thread to the '[EMAIL PROTECTED]' list? Thanks Gary -----Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Wednesday, 13 August 2003 8:19 AM To: 'Struts U

[OT] Great Resource

2003-08-14 Thread Mark Galbreath
http://edocs.bea.com/wls/docs61/webapp/web_xml.html - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[OT] RE: Struts is incomplete

2003-08-14 Thread Mark Galbreath
Man! What stunning wit! This is intellectually beyond me...guess I'll sign off and go to the engrish-users list. On 12/08/2003 08:04 message message wrote: > The only parasite I can see here between the two of us is you. - T

Re: Trouble with validation of nested properties - indexedListProperty?

2003-08-14 Thread Mark Lowe
.. thus its one of those things that needs a bit of looking at.. Its there to be done and the indexed property attribute is there. I even read a presentation demonstrating use in the way, but thus far I haven't had it working. Not very helpful I guess but thats as far as I've got w

RE: Struts is incomplete

2003-08-14 Thread Mark Galbreath
I would suggest you do a little more learning and less whining. Struts is the predominant framework used in Java development today. I doubt that hundreds of thousands of developers are wrong and you are right. Unless you are discussing the Validator framework. ;-) -Original Message- Fr

[OT] WAY off-topic . . . don't bother flaming

2003-08-14 Thread Mark Galbreath
Guys, I have 2000+ comic books I've collected in the past 30 years and I was trying to figure out what they might be worth. They are mostly Marvel comics. Can anybody point me to someone you might be interested? google.com was no help at all - all sellers. I need a buyer. thx,

Re: Asking again - basic design question

2003-08-14 Thread Mark Lowe
e.g. mapping.findForward("success") or failure etc). I hope this is what you were looking for. Mark On Tuesday, August 12, 2003, at 02:35 AM, David Thielen wrote: Hi; I am designing a store check-out process. The old software (pre-struts) had a check at the top of each page to

RE: List problems? [WAS: RE: Struts is incomplete]

2003-08-14 Thread Mark Galbreath
- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Monday, August 11, 2003 5:25 PM To: 'Struts Users Mailing List' Subject: RE: Struts is incomplete I would suggest you do a little more learning and less whining. Struts is the predominant framework used in Java development today. I

Re: JSTL and Struts-el

2003-08-14 Thread Mark Lowe
its pragmatic reasons why maintaining a proprietary tag lib could be a distraction from the real business of struts, but I don't want folks telling me its easier when the fact is this isn't known. Cheers Mark On Sunday, August 10, 2003, at 06:24 PM, Reinhard wrote: Mark Lowe wrote: Has

RE: simple JSTL question

2003-08-14 Thread Mark Galbreath
But there are grammatically-challenged answers. -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Yann Cébron Sent: Sunday, August 10, 2003 8:26 AM there's no stupid questions ;-) - To unsubscribe, e

RE: [OT] How can Java compete?

2003-08-14 Thread Mark Galbreath
ava compete? Do you really want to use the same keyboard/mouse as someone that had just used the 'loo'. -Tim -----Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 11:55 AM To: 'Struts Users Mailing List' Subject: [OT] How can Ja

Re: database - bean - form, what is the best way to do it?

2003-08-14 Thread Mark Lowe
s the struts project. A bit non MVC but you can use the torque objects straight into your DynaForm definition.. Generating fields in jsp's I don't know. You could change the velocity templates to generate your beans and jsp i guess. But dont those IDE things do all that? Cheers

Re: JSTL and Struts-el

2003-08-14 Thread Mark Lowe
ly how is it easier? Easier to do what? The only thing it looks easier for is doing stuff that IMO should be done elsewhere.. Help me , put me out of my misery, i don't like debating on this subject but I really think the "JSTL is easier" premiss is a myth.. and saying "oh n

RE: Application Design Document -- Struts Studio - Independent opinion

2003-08-14 Thread Mark Galbreath
and from the looks of it, you are a wizard at configuring your own email account. -Original Message- From: message message [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 1:20 PM To: [EMAIL PROTECTED] Subject: RE: Application Design Document -- Struts Studio - Independent opinion

RE: major weirdness with c:forEach & html-el:text

2003-08-14 Thread Mark Galbreath
This is becoming more prevalent: questions about JSTL. There is a JSTL users list, so why not ask those questions there? For that matter, why not ban questions about JSF and all the st00pid ??? about "how do I configure xxx platform for Struts?" This list has gotten out-of-hand as far as segue

RE: [OT] RE: JSTL ot struts taglibs?

2003-08-14 Thread Mark Galbreath
There is a pretty good article in the May issue of JDJ by Murali Kauninya and Jamiel Sheikh entitled "JavaServer Faces." See: http://www.javadevelopersjournal.com --> JDJ --> archives --> Volume 8, Issue 5 (access code = "jdj"). Mark -Original Message- F

Re: Something like html:link that posts a form

2003-08-14 Thread Mark Lowe
this helps Mark On Tuesday, August 12, 2003, at 02:22 AM, Jordan Reed wrote: All, I'm looking for something similar to the html:link tag in Struts but can't seem to find it. Basically, I want a tag identical, but that will generate a POST command instead of a GET so that when the g

RE: [So Far OT it's kinda Funny] - [OT] WAY off-topic . . . don't bot her flaming & RE: major weirdness with c:forEach & html-el:text

2003-08-14 Thread Mark Galbreath
don't bot her flaming & RE: major weirdness with c:forEach & html-el:text Read this story in the press - Mark, I think you might be displaying the early signs http://news.independent.co.uk/europe/story.jsp?story=432847 Shane Mingins wrote: > Suggest rec.arts.c

Re: Struts 1.1: what's the preferred way to use databases?

2003-08-14 Thread Mark Lowe
want without breaking MVC. Hope this helps Mark On Saturday, August 9, 2003, at 01:33 PM, Graham Stark wrote: Hi, apologies if this is an obvious question, but I can't work it out. If you're trying to configure a datasource in Struts 1.1, what's the preferred method? The only

RE: Java Help

2003-08-14 Thread Mark Galbreath
(Addison Wesley 1999). Mark -Original Message- From: Zille Hassan [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2003 4:23 AM To: Struts Users Mailing List Subject: Java Help Hey Guys really new to this java stuff So can someone tell me how do I connect to my DB using ODB

RE: Simple question

2003-08-14 Thread Mark Galbreath
Probably because HTML doesn't. -Original Message- From: Norr, Peter [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 11:05 AM To: 'Struts Users Mailing List' Subject: RE: Simple question Any reason why the struts tag does not support the "src" attribute? -Original Messag

RE: validation philosophical question

2003-08-14 Thread Mark Galbreath
I echo Adam's concern. I don't see how you can justify your comments. Mark -Original Message- From: Adam Levine [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2003 2:51 PM To: [EMAIL PROTECTED] Subject: RE: validation philosophical question Can you provide some

RE: Struts Validator

2003-08-14 Thread Mark Galbreath
Wow! That was impressive. Now I know why Validator sucks. -Original Message- From: Stephen Brown [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 5:52 PM To: 'Struts Users Mailing List' Subject: RE: Struts Validator Get a life, Mark. > You offered this to the

Re: Simple question

2003-08-14 Thread Mark Lowe
http://jakarta.apache.org/struts/userGuide/struts-html.html#image On Tuesday, August 12, 2003, at 04:04 PM, Norr, Peter wrote: Any reason why the struts tag does not support the "src" attribute? -Original Message- From: Ravi Kora [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003

RE: [OT] RE: Struts Validator

2003-08-14 Thread Mark Galbreath
OL. I would use this on the quiet type, Steve. I think that > with Mark you might find it not completely or utterly or wonderfully > successful. But , hopefully this time it will also be fun to watch. > > At 02:02 PM 8/13/2003 -0700, Steve Raeburn wrote: >> Time to put up or

RE: struts, Dreamweaver, & Dreamweaver templates

2003-08-14 Thread Mark Galbreath
I use DreamweaverMX strictly for JSP and XML coding; I use the Struts templates in JDeveloper 9.0.3 for Java work. Mark -Original Message- From: Stephen Brown [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2003 5:20 PM To: 'Struts Users Mailing List' Subject:

Re: JSTL and Struts-el

2003-08-14 Thread Mark Lowe
Has this "easier to use" premiss been run past any folks with good markup skills, but aren't programmers as such? Seems to me the only folks who are saying this is "easier" lean more toward the programming end of the spectrum than formatting folks. Um the burden of using "expert groups".

RE: [FRIDAY] Impossible requirements & customer expectation management [WAS: method to get new Id to next action when old Id is in request?]

2003-08-14 Thread Mark Galbreath
Move on. There are plenty of jobs for the competent and there is no point in wasting your time developing for morons. -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 7:29 AM To: Struts Users Mailing List Subject: RE: [FRIDAY] Impossible requi

RE: [FRIDAY] Impossible requirements & customer expectation management [WAS: method to get new Id to next action when old Id is in request?]

2003-08-14 Thread Mark Galbreath
s Mailing List Subject: Re: [FRIDAY] Impossible requirements & customer expectation management [WAS: method to get new Id to next action when old Id is in request?] +several million - Original Message - From: "Mark Galbreath" <[EMAIL PROTECTED]> To: "'S

RE: [OT] - [TOPIC] - [VOTE]

2003-08-14 Thread Mark Galbreath
woo hoo! titties and beer! -Original Message- From: Brian Lee [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2003 9:50 AM To: [EMAIL PROTECTED] Subject: Re: [OT] - [TOPIC] - [VOTE] I guess it's just my potty brain at work. "Ta ta" is like a 10 year old's slang for female breast

RE: Has anyone used Hibernate with Struts?

2003-08-14 Thread Mark Galbreath
Very informative - thanks, Ted. -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED] Sent: Sunday, August 10, 2003 3:13 PM To: Struts Users Mailing List Subject: Re: Has anyone used Hibernate with Struts? There's a new Hibernate plugin example for Struts on the website now. I

Re: ActionMapping forward to another mapping

2003-08-14 Thread Mark Lowe
try or scope the form to the session.. On Saturday, August 9, 2003, at 05:45 PM, Shryock, Chad wrote: Hello, I have an action mapping: type="naimes.aisr.flightplan.action.NotamWorkingListAction" name="notamForm" scope="request" validate="false"> I am having a problem when I

RE: [FRIDAY] Childern

2003-08-14 Thread Mark Galbreath
So, you pastorized it, did you? -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 8:59 AM To: Struts Users Mailing List Subject: RE: [FRIDAY] Childern I sent it to my pastor. :-) >-Original Message- >From: Adam Hardy [mailto:[EMA

RE: Struts Validator

2003-08-14 Thread Mark Galbreath
Validator is crap; don't waste your time. Mark -Original Message- From: Stephen Bennett [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 11:39 AM To: [EMAIL PROTECTED] Subject: Struts Validator Has anyone had any problems getting the Struts Validator to work? I h

RE: Struts Validator

2003-08-14 Thread Mark Galbreath
the damn thing right before offering it as a release to our community. Mark -Original Message- From: David Graham [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 5:45 PM To: Struts Users Mailing List Subject: RE: Struts Validator --- Mark Galbreath <[EMAIL PROTECTED]&g

RE: Code of a method longer than 65535 bytes

2003-08-14 Thread Mark Galbreath
Don't use the page directive (@), use and you will find the 64k limitation can be circumvented. Mark -Original Message- From: David Thielen [mailto:[EMAIL PROTECTED] Sent: Thursday, August 14, 2003 9:37 AM To: Struts Users Mailing List Subject: Re: Code of a method longer than

RE: [FRIDAY] Childern

2003-08-14 Thread Mark Galbreath
Hey, Christian Brothers make a pretty mean brandy! -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 3:41 AM To: Struts Users Mailing List Subject: Re: [FRIDAY] Childern at last a joke I can forward to my reborn-christian brother! Shane Mingins

Re: AW: Convert scriptlets into Tags

2003-08-12 Thread Mark Lowe
I'd just move the scriptlet into an action servlet.. HttpSession session = request.getSession(); session.setAttribute("name","value"); then you can refer to your attribute that you've set in the action with bean tags or something silly with $ signs in JSTL chee

Re: message localization

2003-08-11 Thread Mark Lowe
Erez Not really my cup of tea but I think something like this.. Cheers Mark On Monday, August 11, 2003, at 12:24 AM, Erez Efrati wrote: All this talking on JSP 2.0, JSTL and Struts-el brought me to ask if I should avoid using the following: Could someone tell me what is the equivalent in

Re: Struts is incomplete

2003-08-11 Thread Mark Lowe
man.. I think that's savagely out of order.. I doubt the time "you have" wasted compares to the amount of time such a framework saves you. Have a look at some other open source projects, you'll soon start to see that struts is well documented and there are plenty of examples. Its more than you'

Re: [OFF TOPIC] JavaScript + tag question

2003-08-10 Thread Mark Lowe