RE: Any Java Web UI Controls that integrate with Struts?

2002-06-07 Thread Galbreath, Mark
I'm no graphic designer, but I did this for a running group with Paint Shop Pro 6.01: www.baltimore-annapolis.org Mark -Original Message- From: k thom [mailto:[EMAIL PROTECTED]] Sent: Friday, June 07, 2002 7:41 PM I'm looking design a really cool UI but I don't want that flat look and

RE: [ServletException in:/createReport/getGroupId.jsp] Cannot fin d bean under name groupQuery'

2002-06-06 Thread Galbreath, Mark
Let's see the relevant source. -Original Message- From: Angela Day [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 5:10 PM I converted it to a collection and I still get the same error? Please Help, Angela -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

RE: Please recommend a IDE

2002-06-06 Thread Galbreath, Mark
You're male, right? Man, we ALL pay...one way or another. -Original Message- From: Dave Derry [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 9:12 PM I NEVER pay!! - Original Message - From: Galbreath, Mark [EMAIL PROTECTED] Sent: Wednesday, June 05, 2002 5:28 PM

RE: Please recommend a IDE

2002-06-06 Thread Galbreath, Mark
That's either an oxymoron or...nah, not going there. -Original Message- From: Dave Derry [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 9:13 PM Krispy Kreme?? - Original Message - From: Chappell, Simon P [EMAIL PROTECTED] Sent: Wednesday, June 05, 2002 5:30 PM All

RE: [ANNOUNCE] Struts Console v1.12

2002-06-06 Thread Galbreath, Mark
Cool - thanks James! This version includes the documentation, right? ;-) -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 11:18 PM Struts Console version 1.12 is now available. http://www.jamesholmes.com/struts/ Download Now:

RE: Flash and Struts

2002-06-06 Thread Galbreath, Mark
Uh, that's Luddite, to you, bourgeoisie pig. -Original Message- From: micael [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 2:57 AM To: Struts Users Mailing List Subject: RE: Flash and Struts Don't pay any attention to this guy, Joe. He is a luddite. At 05:05 PM 6/5/2002

RE: Flash and Struts

2002-06-06 Thread Galbreath, Mark
I'm missing your barb...did I not just admit I don't know how this is done, and directed the query to someone who would? Care to play again? -Original Message- From: micael [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 2:59 AM Once again, Mark, you display your lack of

RE: Flash and Struts

2002-06-06 Thread Galbreath, Mark
You take everything s personal! It's nothing personal at all - I don't even know you. Post cards from the edge, eh? Looking forward to 'em. You have a friend? -Original Message- From: micael [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 3:16 AM Mark makes fun of my

RE: html:error tag

2002-06-06 Thread Galbreath, Mark
The name of the property in Application.Resources. -Original Message- From: Schmidt, Carl [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 6:07 PM The docs for the property attribute of this tag state: Name of the property for which error messages should be displayed. The

RE: Jump Menu

2002-06-06 Thread Galbreath, Mark
I just posted a rather comprehensive example of this behavior a few days ago; look in the archive for newbie question on iterate. http://www.mail-archive.com/struts-user@jakarta.apache.org/msg32505.html Mark -Original Message- From: Sudhir [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: [ANNOUNCE] Struts Console v1.12

2002-06-06 Thread Galbreath, Mark
on integrating some documentation into the app. This will take time so please bare with me. For now please visit the DTD. http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd -james [EMAIL PROTECTED] http://www.jamesholmes.com/struts/ --- Galbreath, Mark [EMAIL PROTECTED] wrote: Cool

RE: dynamic form properties

2002-06-06 Thread Galbreath, Mark
What do you want to know? I use maps and collections in form beans now to capture multi-select list key-value pairs and checkbox array booleans, respectively. I think it would be a simple extrapolation to map key-values for an entire HTML form, permitting a single action form to capture states

RE: BasicDataSource

2002-06-06 Thread Galbreath, Mark
But you can't see it with IE - use Navigator. -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 10:29 AM Oops, here's the link to the DTD. http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd -james -- To unsubscribe, e-mail:

RE: mapping

2002-06-06 Thread Galbreath, Mark
Why do you need to know which page invokes the data entry page? -Original Message- From: Carlos Fernandez [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 12:00 PM To: Struts Subject: mapping Hi There, Can someone tell me the best way to know which page I am coming from?. I

RE: Problem with Logic-iterate and enumeration

2002-06-06 Thread Galbreath, Mark
This seems like a kludge, but I don't know of another way of doing it with Struts tags. Anybody else? tr logic:iterate * * * length=3 offset=0 tdbean:write * * * //td /logic:iterate /tr tr logic:present logic:iterate * * * length=3 offset=3 tdbean:write * * * //td

RE: mapping

2002-06-06 Thread Galbreath, Mark
- From: Carlos Fernandez [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 1:40 PM I keep that to myself, if you know how to do it, I'd appreciate your answer and help, otherwise thanks! Carlos Fernandez www.s1.com -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED

RE: Problem with Logic-iterate and enumeration (2)

2002-06-06 Thread Galbreath, Mark
Or perhaps something like? %! int count = 0 % logic:iterate * * * tr logic:iterate * * * length=3 offset=%= count % tdbean:write * * * //td /logic:iterate /tr % count += 3 % /logic:iterate Mark -Original Message- From: struts (H2Opilot) [mailto:[EMAIL

RE: problems in displaying updated data..

2002-06-06 Thread Galbreath, Mark
Put the vector in request or session scope instead of page scope. -Original Message- From: Susmita Pati [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 3:15 PM To: 'Struts Users Mailing List' Subject: problems in displaying updated data.. Hi all I have a jsp in which i

RE: Collection and form bean

2002-06-05 Thread Galbreath, Mark
It's impossible to iterate through a collection of ints (or any other primitive); Iterating over collections of form beans is very common. Mark -Original Message- From: Jayaraman Dorai [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 8:11 PM I have a collection of Value objects

RE: Struts Console basic doubt !!!!!!!

2002-06-05 Thread Galbreath, Mark
post a reference to a book on how to be more user-friendly? Alan Cooper would call this a problem involving cognitive dissonance, methinks. ;) joe -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 4:14 PM To: 'Struts Users Mailing List

RE: Please recommend a IDE

2002-06-05 Thread Galbreath, Mark
note pad? -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 8:36 AM To: 'Struts Users Mailing List' Subject: RE: Please recommend a IDE You win. -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED]] Sent

RE: bean:write

2002-06-05 Thread Galbreath, Mark
Don't allow inflexible adherence to a design pattern blind you to the rational application of practical solutions. A pattern, after all, is simply a guide, not a rule. Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 5:25 AM but

RE: form bean ignoring null input from jsp - newbie question

2002-06-05 Thread Galbreath, Mark
That's because it's passing an emtpy string. -Original Message- From: Peter Onthrops [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 8:52 PM Does struts ignore a null input from a jsp form when populating an underlying bean? I am submitting a text field with no input and the

RE: bean:write

2002-06-05 Thread Galbreath, Mark
LOL! :-)~ -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 9:24 AM To: Struts Users Mailing List Subject: RE: bean:write What! Oh great. NOW he tells us. doh! -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent

RE: Please recommend a IDE

2002-06-05 Thread Galbreath, Mark
punishments being banned. I suspect that even Mark wouldn't suggest notepad! :-) -Original Message- From: Yuan, Tony [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 7:37 AM how about using note pad? -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED

RE: Confused about exception handling design, 1.1 beta

2002-06-05 Thread Galbreath, Mark
Would you also put out .Net and Flash versions? Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 1:01 PM I like the idea, except there are probably two issues: 1) Since these are draft chapters, I have to manage how they are

RE: Exception Handling - Chapter 10

2002-06-05 Thread Galbreath, Mark
Hey Chuck, What's the purpose of the single-argument constructor in Example 10-1 on page 8? Mark -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: [ServletException in:/createReport/getGroupId.jsp] Cannot find bean under name groupQuery'

2002-06-05 Thread Galbreath, Mark
Yeah, the container can't find the collection...? html:options iterates through a collection of beans. You are trying to iterate through an array - can't be done. Mark -Original Message- From: Angela Day [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 3:20 PM I'm going

RE: How do you do onSubmit() using html:form

2002-06-05 Thread Galbreath, Mark
I couldn't get it to work, either, so I stuck in as an onclick=return validate() parameter of an image input button. Mark -Original Message- From: Kousek, Theron [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 10:23 AM To: 'Struts Users Mailing List' Subject: How do you do

RE: Exception Handling - Chapter 10

2002-06-05 Thread Galbreath, Mark
Constructors don't return coconuts. -Original Message- From: Nelson, Laird [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 2:26 PM To: 'Struts Users Mailing List' Subject: RE: Exception Handling - Chapter 10 From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] What's

RE: Please recommend a IDE

2002-06-05 Thread Galbreath, Mark
on the list! :-) -Original Message- From: Dave Derry [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 3:42 PM To: Struts Users Mailing List Subject: Re: Please recommend a IDE I prefer xemacs myself - Original Message - From: Galbreath, Mark [EMAIL PROTECTED] vi

RE: Flash and Struts

2002-06-05 Thread Galbreath, Mark
Oh boy! Just when I was getting bored, too! -Original Message- From: Joe Rice [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 5:03 PM I'm new to Flash but have still been charged with researching the possibility of using Flash as the front end of a struts web application

RE: Please recommend a IDE

2002-06-05 Thread Galbreath, Mark
. You're late to the party. This was a mini-flamewar only for the early risers on the list! :-) -Original Message- From: Dave Derry [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 3:42 PM I prefer xemacs myself - Original Message - From: Galbreath, Mark [EMAIL PROTECTED] vi

RE: Flash and Struts

2002-06-05 Thread Galbreath, Mark
, now that someone is actually looking to do this! Mark, I assume you'll be volunteering to beta test their application!? :-) -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 4:05 PM To: 'Struts Users Mailing List' Subject: RE: Flash and Struts

RE: Please recommend a IDE

2002-06-05 Thread Galbreath, Mark
vi -Original Message- From: Chiming Huang [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 8:21 AM Hi, Can you please recommend a IDE for working on Tomcat 4.0.3 + Struts 1.0.2 + Ant 1.4.1? I am looking into eclipse. But I don't know how to configure it for this purpose.

RE: Please recommend a IDE

2002-06-05 Thread Galbreath, Mark
vim -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 8:32 AM emacs -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 20:28 vi -Original Message- From: Chiming Huang [mailto

RE: Please recommend a IDE

2002-06-05 Thread Galbreath, Mark
? -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 7:28 AM To: 'Struts Users Mailing List' Subject: RE: Please recommend a IDE vi -Original Message- From: Chiming Huang [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 8:21 AM Hi

RE: Usability in Web application development

2002-06-04 Thread Galbreath, Mark
Anybody who considers him/herself a software engineer should read, know, and live the lessons of this book by Alan Cooper: The Inmates are Running the Asylum (Sams; ISBN: 0672316498; 1st edition (April 6, 1999); Mark -Original Message- From: Dror Matalon [mailto:[EMAIL PROTECTED]]

RE: R: maybe someone knows. Desesperated

2002-06-04 Thread Galbreath, Mark
No, but you are missing the appropriate user list as your problem has absolutely nothing to do with Struts. There are both JDBC and Oracle user lists that would be way more helpful. Mark -Original Message- From: Adolfo Miguelez [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002

RE: Button pressed

2002-06-04 Thread Galbreath, Mark
but some of the basic stuff is pretty standard) -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 02:56 To: 'Struts Users Mailing List' Subject: RE: Button pressed That's a joke, right? This reminds me of a client I consulted last year who

RE: request parameters usage

2002-06-04 Thread Galbreath, Mark
I haven't used the bean:message tag (and do not have time to look it up right now), so I don't know what you are trying to do, but request parameters are passed through the action forward unchanged - you do not need to capture, check, and resend them (what would be the point, if you think about

RE: nested tag issue

2002-06-04 Thread Galbreath, Mark
Absolutely! Thanks, Aaron...not having used nested tags yet, I've been wondering about their syntax and parsing logic. Sounds like standard XML. Any time anyone elaborates on the operation of a Struts function from experience is very helpful as the documentation is as yet vague in many places

RE: Configurable UI Design

2002-06-04 Thread Galbreath, Mark
I think you can display Lurve in Struts using Flash and ASP with a DB2 backend via JCL. -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 7:00 PM Feel the Lurve! :-) -Original Message- From: Galbreath, Mark [mailto:[EMAIL

RE: related to: Re: #2 - Use DispatchAction to organize related operations

2002-06-04 Thread Galbreath, Mark
Chuck is absolutely correct on the linear progression of action processing. I, too am overriding processPreprocess and it works beautifully. Besides increasing security, it cuts down on unnecessary CPU bandwidth. Mark -Original Message- From: Chuck Cavaness [mailto:[EMAIL PROTECTED]]

RE: a newbie question on iterate

2002-06-04 Thread Galbreath, Mark
that fired the event ? Thanks - Original Message - From: Galbreath, Mark [EMAIL PROTECTED] Newsgroups: Struts Sent: Monday, June 03, 2002 8:32 AM Subject: RE: a newbie question on iterate The answer, unfortunately, is all of the above. The iterate tag iterates through both maps

RE: Struts Console basic doubt !!!!!!!

2002-06-04 Thread Galbreath, Mark
Give up and don't quit your day job. -Original Message- From: Radhika Nadkarni [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 8:39 AM To: [EMAIL PROTECTED] Subject: Struts Console basic doubt !!! hi, im trying to download the Struts Console propsed by James Holmes.

RE: test

2002-06-04 Thread Galbreath, Mark
We get down from time-to-time, why? Do you? -Original Message- From: Thigpen, David [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 3:05 PM To: Struts-User (E-mail) Subject: test is the list down? DT -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

RE: Child Support Payment system for the state of FLorida, Powered by Struts...

2002-06-04 Thread Galbreath, Mark
No it's not. -Original Message- From: Thinh Doan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 6:32 PM To: Struts Users Mailing List Subject: RE: Child Support Payment system for the state of FLorida, Powered by Struts... id/pwd given is bad. Thinh -Original

RE: a newbie question on iterate

2002-06-03 Thread Galbreath, Mark
The answer, unfortunately, is all of the above. The iterate tag iterates through both maps and collections in any form and in any scope, and you display the contents of map and collection values with the bean:write tag. A typical map would be key-value pairs placed in memory as

RE: Need Help!!! Pls

2002-06-03 Thread Galbreath, Mark
i stuck... hear from you all...thx Step - Original Message - From: Galbreath, Mark [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Friday, May 31, 2002 3:45 AM Subject: RE: Need Help!!! Pls Yes, there are a number of people here who can help. No, we

RE: Newbie Question To Experts

2002-06-03 Thread Galbreath, Mark
What you are asking for is, essentially, for someone to post a tutorial for you on this list. Your question is of a very basic and general nature and much too broad to be appropriate here. You need to go through the documentation more thoroughly and do a couple of tutorials - there are several

RE: Does anyone know Digest class library?

2002-06-03 Thread Galbreath, Mark
http://jakarta.apache.org/commons/digester/api/index.html -Original Message- From: Liang Chen [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 01, 2002 9:51 PM I can not find any infomation in Google. Thanks in advance. LC -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

RE: Advice: how strutty should I be??

2002-06-03 Thread Galbreath, Mark
[EMAIL PROTECTED] Java Programming Specialist www.landsend.com Lands' End, Inc. (608) 935-4526 -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 9:21 AM You got it! (not that I would know

RE: How does the framework ensure any action to have self control ?

2002-06-03 Thread Galbreath, Mark
all very very much. Galbreath, Mark [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... Why are you reposting the same thing you posted yesterday, and which I and 2 other people answered? -Original Message- From: Islam, Sanjib [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31

RE: How i can execute the tag bean:write ../ inside the tag html:hidden

2002-06-03 Thread Galbreath, Mark
html:hidden property=id value=bean:write name=\usuario\ property=\id\ / / -Original Message- From: Ferran Parra [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 11:28 AM html:hidden property=id value='bean:write name=usuario

RE: Button pressed

2002-06-03 Thread Galbreath, Mark
That's a joke, right? This reminds me of a client I consulted last year who insisted on interactive graphing with Active X rather than Java applets because of security concerns. And it's JavaScript, not java script. -Original Message- From: Carlos Fernandez [mailto:[EMAIL PROTECTED]]

RE: Button pressed

2002-06-03 Thread Galbreath, Mark
Another kludgey way around not using JavaScript would be to put the buttons in different forms. -Original Message- From: Christian Velez [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 2:49 PM To: 'Struts Users Mailing List' Subject: RE: Button pressed This can be placed in URL.

RE: Configurable UI Design

2002-06-03 Thread Galbreath, Mark
If James thinks it's crazy, I'm not going to touch it(though the invitation for insults was tempting) ;-) -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 2:24 PM Either way, we should be able to finish this thread and anyone at

RE: Pros and Cons of Struts

2002-06-03 Thread Galbreath, Mark
Well, I have worked with a number of pros in the course of my present Struts project, but I don't know if any are felons. -Original Message- From: Struts Newsgroup [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 3:55 PM I am presently evaluating struts as a presentation framework

RE: Configurable UI Design

2002-06-03 Thread Galbreath, Mark
Nah...you just suck. -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 5:16 PM I was hoping you wouldn't start a James Mitchell is rude and ignorant thread :-) James - Original Message - From: Galbreath, Mark [EMAIL PROTECTED

RE: Button pressed

2002-06-03 Thread Galbreath, Mark
features can be avoided, and that those browers are in the extreme minority in terms of number of users, and see how far you can get in the black-and-white world of marketing. Just try it. I dare you. ;) peace, Joe Barefoot -Original Message- From: Galbreath, Mark [mailto:[EMAIL

Struts Console

2002-06-01 Thread Galbreath, Mark
Can you believe a search of the archive returned 0 matches?! Anyway, I'm here (yet again) in the office on a beautiful Saturday when I should be out on my sailboat on the Chesapeake Bay and thought I'd give it a whirl. Somebody please post the URL. Thanks, Mark De recta non tolerandum sunt.

RE: Struts Console

2002-06-01 Thread Galbreath, Mark
Thanks, John. -Original Message- From: John Menke [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 01, 2002 7:28 AM To: Struts Users Mailing List Subject: RE: Struts Console http://www.jamesholmes.com/struts/ -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED

RE: Struts Console

2002-06-01 Thread Galbreath, Mark
Yeah, as many times as I've seen you post updates and discussions, I was pretty surprised that nill came up. Anyway, I see the patches for 1.02 and prior; I'm using 1.1b-1 - is that cool? -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 01, 2002 7:25

Struts Console Decompression

2002-06-01 Thread Galbreath, Mark
Seems I remember a thread about unzipping the software, that the default sticks everything in root. That is, James didn't provide for the creation of a default directory. Is that the case, or am I mistaking this for some other app? Mark De recta non tolerandum sunt.

RE: Struts Console Decompression

2002-06-01 Thread Galbreath, Mark
in the archives I put one in. -james [EMAIL PROTECTED] http://www.jamesholmes.com/struts/ --- Galbreath, Mark [EMAIL PROTECTED] wrote: Seems I remember a thread about unzipping the software, that the default sticks everything in root. That is, James didn't provide for the creation of a default directory

Console Questions

2002-06-01 Thread Galbreath, Mark
1. Where is/is there a **FM? 2. What is the difference between Form Properties and Properties in the Form Bean window, and why are none displayed? 3. Why are none of the properties for my Message Resources files not displayed? 4. What are the purposes of the Controller window options?

RE: How does the framework ensure any action to have self control ?

2002-06-01 Thread Galbreath, Mark
Why are you reposting the same thing you posted yesterday, and which I and 2 other people answered? -Original Message- From: Islam, Sanjib [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 11:36 AM What I wanted to find out is whether the framework provides some way for an action to

RE: Console Questions

2002-06-01 Thread Galbreath, Mark
/struts/ --- Galbreath, Mark [EMAIL PROTECTED] wrote: 1. Where is/is there a **FM? 2. What is the difference between Form Properties and Properties in the Form Bean window, and why are none displayed? 3. Why are none of the properties for my Message Resources files not displayed

RE: Console DTD?

2002-06-01 Thread Galbreath, Mark
outside of a DTD. Error processing resource 'http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd'. Line 24, Position 12 !ENTITY % AttributeName CDATA ---^ -Original Message- From: Galbreath, Mark Sent: Saturday, June 01, 2002 8:22 AM Maybe I missed something...was James

RE: [Struts Tips] #2 - Use DispatchAction to organize related operations

2002-06-01 Thread Galbreath, Mark
Hey Ted, I just tried to subscribe to the basebeans' mail list and got a DNS error at: http://www.basebeans.com:8081/mailman/listinfo/mvc-programmers Whassup? -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 01, 2002 8:35 AM

RE: Console DTD?

2002-06-01 Thread Galbreath, Mark
? Yes. Use the Struts config file DTD distributed by Jakarta. It holds many answers :) and explains alot about how Struts is configured and works. -james --- Galbreath, Mark [EMAIL PROTECTED] wrote: Maybe I missed something...was James saying that the Console has its own DTD or is it using

RE: Need Help!!! Pls

2002-05-31 Thread Galbreath, Mark
Yes, there are a number of people here who can help. No, we cannot suggest a better way of doing what you are trying to do because you have not given us the slightest hint of how you are trying to accomplish your pre-visit form population. I suspect that you are relying on Struts to magically

RE: HELP regarding Structs 1.2 and HTML frames

2002-05-31 Thread Galbreath, Mark
Yep: http://www.mail-archive.com/struts-user%40jakarta.apache.org/ -Original Message- From: A Dodd [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 4:51 AM Any idea where I can find more information re structs 1.2 and frames, rgs Andrew -- To unsubscribe, e-mail:

RE: HELP regarding Structs 1.2 and HTML frames

2002-05-31 Thread Galbreath, Mark
Well, a strut is just a piece of a framework, but Struts bills itself AS a framework, or structure, so wouldn't Structs be the more appropriate name? Mark -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 6:04 AM Struts Not struCts. My

RE: HELP regarding Structs 1.2 and HTML frames

2002-05-31 Thread Galbreath, Mark
You would call it something like that lame debacle Micro$oft tried to push as an agent for even lamer home computer users...? tgif_response asshole. /tgif_response :-) (started my Friday an hour ago and it's only 7 AM EST) Mark -Original Message- From: Andrew Hill [mailto:[EMAIL

RE: Advice: how strutty should I be??

2002-05-31 Thread Galbreath, Mark
Ah ha! Micro$oft background exposed! Burn him! Burn him! -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 1:24 AM I have a 'rendering pipeline' which is just a collection of 'IDocumentRenderer'...and IRenderingPipeline ... IDocumentManager ...

RE: HELP regarding Structs 1.2 and HTML frames

2002-05-31 Thread Galbreath, Mark
/index.html tgif_response_response Hehe. I suppose your revenge comes when its monday for me and still the weekend for you! /tgif_response_response -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 19:12 You would call it something like

RE: Advice: how strutty should I be??

2002-05-31 Thread Galbreath, Mark
and reused a nomenclature already used by M$ have I??? arrgh! I must be being influenced by evil spirits. Quick wheres an excorcist! panicNot too late to refactor! - hmm maybe I wont be going home early. :-(/panic -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Friday

RE: [Struts Tips] #2 - Use DispatchAction to organize related operations

2002-05-31 Thread Galbreath, Mark
Way excellent response, Ted - thanks for the knowledge xfer. This is really useful stuff! Mark -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 7:12 AM Any software application is defined by the things it can do for you. In a Struts Web

RE: Advice: how strutty should I be??

2002-05-31 Thread Galbreath, Mark
You got it! (not that I would know or anything) -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 7:58 AM hmm. I know! I think all my interfaces should be extending IUnknown yes? -Original Message- From: Galbreath, Mark [mailto

RE: How does the framework ensure any action to have self control ?

2002-05-31 Thread Galbreath, Mark
First, an action should never make a database call. Second, the call to the helper object making the db call should be wrapped in a try-catch and you can execute a line of control (specific forward) if an IOException occurs. Mark -Original Message- From: Struts Newsgroup [mailto:[EMAIL

RE: Include image in a Struts Submit Tag

2002-05-31 Thread Galbreath, Mark
LOL! Beat me to it! -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 12:09 PM To: Struts Users Mailing List Subject: RE: Include image in a Struts Submit Tag Sorry, syntax errorshould have been. html:rtfm tgif=true/ James Mitchell

html:form submit weirdness

2002-05-31 Thread Galbreath, Mark
Anybody have/had any issues with html:form submitting using client-side (JavaScript) validation? I've tried everything from onsubmit=return validate() as a form parameter to onclick=validate() on the input image (using both HTML input / and html:image) and though the JavaScript function is

RE: html:form submit weirdness

2002-05-31 Thread Galbreath, Mark
: Vincent Aumont [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 1:00 PM try: onclick=return validate() -vincent. Galbreath, Mark wrote: Anybody have/had any issues with html:form submitting using client-side (JavaScript) validation? I've tried everything from onsubmit=return validate

RE: html:form submit weirdness

2002-05-31 Thread Galbreath, Mark
; } else { return false; } } and in the submit button form:submit property=submit value=Complete-Order styleClass=ActionButton onclick=return editpress()/ -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 12:50 PM

RE: forward to Action from perform of Action

2002-05-29 Thread Galbreath, Mark
That's exactly how you do it; you must be doing something wrong in struts-config. but this subject has been brought up and answered many times recently. Did you check the archive? http://www.mail-archive.com/struts-user%40jakarta.apache.org/ Mark -Original Message- From: Alexandar

RE: how do I check the size of the collection

2002-05-24 Thread Galbreath, Mark
Yes: logic:equals -Original Message- From: Jayaraman Dorai [mailto:[EMAIL PROTECTED]] Sent: Friday, May 24, 2002 10:42 AM To: [EMAIL PROTECTED] Subject: how do I check the size of the collection I have a collection which I want to iterate in the jsp page. If the collections size is 0,

RE: struts and J2EE

2002-05-24 Thread Galbreath, Mark
Oh boy, are you in for some pain -Original Message- From: Chun Wah Chan [mailto:[EMAIL PROTECTED]] Sent: Friday, May 24, 2002 10:25 AM Hi: I am a newbie to both struts and the whole J2EE platform. I am quite sure that the J2EE has a tomcat container as part of the download. And I

RE: sorted options

2002-05-24 Thread Galbreath, Mark
Sure - just feed it a SortedMap or SortedSet. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, May 24, 2002 11:16 AM To: Struts Users Mailing List Subject: sorted options Hi, is it possible to produce a sorted output from a options Tag ? something

RE: Pb : request.SetAttribute() from Action

2002-05-24 Thread Galbreath, Mark
First, don't type proj as an ArrayList; it should be a List. Second, if what is happening is as you say, proj == null. Check what you are putting into it. Mark -Original Message- From: Damien VIEL [mailto:[EMAIL PROTECTED]] Sent: Friday, May 24, 2002 12:25 PM Hi, I've many problem to

Employment Opportunity

2002-05-23 Thread Galbreath, Mark
(It's close enough to Friday; turn up the volume) http://cagle.slate.msn.com/mondo/alqaeda.swf http://cagle.slate.msn.com/mondo/alqaeda.swf

RE: Need help with Token stuff - URGENT

2002-05-23 Thread Galbreath, Mark
Good lord! This sounds like one of James's joke questions to the list [EMAIL PROTECTED] wrote: Hello guys, I still can't work with token stuff. If I have a JSP page with a menu, and when the user clicks in one option, it goes to another menu, which has a html:form and a submit

RE: keep up the great work!

2002-05-23 Thread Galbreath, Mark
Good stuff! -Original Message- From: JM [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 2:57 PM To: Struts Users Mailing List Subject: RE: keep up the great work! Thought I would pass along the news. JM -Original Message- From: JM [mailto:[EMAIL PROTECTED]] Sent:

RE: Need help with Token stuff - URGENT

2002-05-23 Thread Galbreath, Mark
: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 2:46 PM To: 'Struts Users Mailing List' Subject: RE: Need help with Token stuff - URGENT Good lord! This sounds like one of James's joke questions to the list [EMAIL PROTECTED] wrote: Hello guys, I still can't

RE: login.jsp only avaliable after running login.do

2002-05-23 Thread Galbreath, Mark
Either that or he's trying populate a form on the first hit, which means the action hasn't fired yet. He'd have to do something like index.jsp - action - bean - home.jsp, where index.jsp is a simple forward in order to fire off the action. -Original Message- From: JM [mailto:[EMAIL

RE: Multiple resources - how to configure

2002-05-22 Thread Galbreath, Mark
All I did to use multiple resource files was define them in struts-config: message-resources parameter=com.tessco.partner.vscon.web.ApplicationResources/ message-resources key=customerResources parameter=com.tessco.partner.vscon.web.CustomerResources / And identified them in the jsp by

RE: html:text indexed gotcha

2002-05-22 Thread Galbreath, Mark
? -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 12:20 AM To: 'Struts Users Mailing List' Subject: RE: html:text indexed gotcha I was thinking along similar lines, and you are correct about passing the literal string field name rather than

RE: PLEASE HELP!!!

2002-05-22 Thread Galbreath, Mark
Did you try: http://softwareforum.sun.com/servlet/ProcessRequest?RHIVEID=181RPAGEID=2UC ATEGORY_0=_24UCATEGORY_S=0 ? iPlanet is now the Sun ONE Application Server. Mark -Original Message- From: Juan Alvarado (Struts List) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 1:20

RE: PLEASE HELP!!!

2002-05-22 Thread Galbreath, Mark
(786)552-0504 [EMAIL PROTECTED] AOL Instant Messenger: [EMAIL PROTECTED] -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 1:38 PM To: 'Struts Users Mailing List' Subject: RE: PLEASE HELP!!! Did you try: http://softwareforum.sun.com/servlet

<    1   2   3   4   5   6   7   8   9   10   >