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

ANNOUNCE: strutsGuessingGame1.0

2002-06-04 Thread Dominique Plante
Here is a little number guessing game written using struts like the one that comes with the Tomcat distribution. Includes necessary sources, ANT build script, and Struts Jar files. Until I find a better home for it, grab it from

can someone show me example usage of html:messages tag + bug inexample shown?

2002-06-04 Thread Dominique Plante
Can someone show me example usage of html:messages tag? I have tried following the instructions for using html:messages from http://jakarta.apache.org/struts/api/org/apache/struts/taglib/html/packa ge-summary.html, but am not having a lot of luck. I tried patterning off of the example shown

R: maybe someone knows. Desesperated

2002-06-04 Thread daniele rizzi
Hi Adolfo, what are you aims in inserting a OracleConnection in a table using a connection? daniele rizzi (perplexed) -Messaggio originale- Da: Adolfo Miguelez [mailto:[EMAIL PROTECTED]] Inviato: lunedì 3 giugno 2002 19.34 A: [EMAIL PROTECTED] Oggetto: maybe someone knows.

set Attribute in PageContext

2002-06-04 Thread Herman Matthieu
I want to set Attribute in the page scope. in my Action I have this code to get the PageContext : JspFactory factory = JspFactory.getDefaultFactory(); PageContext pageC = factory.getPageContext(getServlet(), request, response,, true, 8192, false); but when I compare the

Re: R: maybe someone knows. Desesperated

2002-06-04 Thread Adolfo Miguelez
Us, :-) The issue is really complex and I can not find any documentation or example. Struct is a connected data structure which belongs to JDBC as, by example, also, ResultSet does, ARRAY... I am using VisualAge with WTE and thin Oracle driver. Struct (not Struts), as a connected

Re: set Attribute in PageContext

2002-06-04 Thread Nicolas De Loof
Page scope does only exist during the execution of your JSP page (compiled as a Servlet). As your action is called by ActionServlet, JspFactory.getDefaultFactory(); returns a pageContext for the ActionServlet (that has not been generated from a JSP file, so it's strange to call this method from a

Re: nested tag issue

2002-06-04 Thread Arron Bates
Absolutely right. What this code is trying to say, is that the nested tags need a valid root tag on each JSP. In this case, David's used the nested:root tag. It can also be the html:form or nested:form tags. The form tags are bound to their form definition in struts-config.xml, to escape this

Re: Nested iterate name

2002-06-04 Thread Arron Bates
David, You can wedge a nested:root tag within the form tag. The child tags to the root tag will only see the root tag, and those outside the scope of the root tag won't know it's there either. Example... html:form action=/myform.do nested:root name=myOtherBean nested:iterate

Caching problem with bean:message ...

2002-06-04 Thread tamer . kavlak
Hi all we need to get some nls-resource out of a db. to implement this I started with a own subclass of org.apache.struts.util.PropertyMessageResources and the factroy class. for the beginning, I just overwrote the following method: public String getMessage(Locale locale, String

Re: Design Advice - Relational Databases Java Objects

2002-06-04 Thread Robert Taylor
If the data access objects completely encapsulate the connection stuff, how does the business object wrap two calls to the data access layer in one transaction? Take for example the well-worn credit and debit financial transaction. Would you wrap that up into one data access object and

RE: Architecture Issue

2002-06-04 Thread Robert Taylor
James, I am working with a medium size application which contains both static and non-static content. I'm integrating Struts and find that my particular situation doesn't warrent using Struts for static content. I would suggest using a Filter to perform the necessary logic before processing

Re: a newbie question on iterate

2002-06-04 Thread Gary Tam
Thanks, you guys are great. - 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 and

Re: a newbie question on iterate

2002-06-04 Thread Gary Tam
Mark, one more question, is it possible to use java script to acess/maniuplate jsp session objects ? In your example, the onChange event gets fire and goes out to retrieve the cities of the state, how can the action class know which row/state that fired the event ? Thanks - Original

Re: ANNOUNCE: strutsGuessingGame1.0

2002-06-04 Thread Anthony W. Marino
Your link cannot be found. Thank You, Anthony Here is a little number guessing game written using struts like the one that comes with the Tomcat distribution. Includes necessary sources, ANT build script, and Struts Jar files. Until I find a better home for it, grab it from

R: R: maybe someone knows. Desesperated

2002-06-04 Thread daniele rizzi
Well, I may tell you what I know on the matter, but don't be disappointed by my ignorance: java.sql.Struct is the father of all the DB object not exactly primitives, that is BLOB, CLOB, VARRAYs and friends. There aren't many db servers supporting this sort of stuff (perhaps just Oracle Server

Re: question about Custom Tag performance

2002-06-04 Thread Ted Husted
It's easy to overuse things like message keys. With a Model 2 approach, it can be just as easy to look up the messages server-side and then deliver them to the page all wrapped up in a JavaBean. The ResourceBundles are not strongly tied to JSP tags, just something that tags can use too.

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: Pros and Cons of Struts

2002-06-04 Thread Steve Muench
Dan, Hi. Your spreadsheets notes on Oracle's BC4J framework need a touch-up. Here's a couple of points to correct: (*) BC4J provides a framework for easily building the model layer of your app (as your comment hints at, the part developers usually write by hand. Precisely!)

request parameters usage

2002-06-04 Thread Adolfo Miguelez
Hi All, one easy question, I guess, this time. I know that Struts advises to avoid linking directly from JSP to JSP. Furthermore, we can link indirectly by using: action path=/home forward=/app/index.jsp /action The question is, if I intend to send parameters in the request, which are know

RE: Button pressed

2002-06-04 Thread Galbreath, Mark
True, but JavaScript is much more aligned than JScript to ECMA (no surprise there), as Netscape is to XHTML (much to the annoyance of sloppy HTMLers). And the Micro$oft side of Java script (or JSP script) and JDBC is ASP + ADO (the latter of which is pretty cool technology - ADO 3.0). My dev

Re: R: R: maybe someone knows. Desesperated

2002-06-04 Thread Adolfo Miguelez
Thanks Danielle, just forget it. That is not the right list for this question. Someone could be annoyed. I will give it a thought. Thanks a lot anyway, Adolfo From: daniele rizzi [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL

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

WebPim

2002-06-04 Thread @Basebeans.com
Subject: WebPim From: Claudio Parnenzini [EMAIL PROTECTED] === Hi all, I have downloaded the WebPim Sample DB struts app from www.basebeans.com. The zip file containing the sample application is protected by a password. Could someone explain me, if there is any restriction to have access to

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

2002-06-04 Thread Todd G. Nist
Claudio, The password is cc. -Original Message- From: Struts Newsgroup [mailto:@[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 7:40 AM To: [EMAIL PROTECTED] Subject: WebPim Subject: WebPim From: Claudio Parnenzini [EMAIL PROTECTED] === Hi all, I have downloaded the WebPim Sample DB

RE: Button pressed

2002-06-04 Thread Andrew Hill
Yeh. Trying to get netscape 4.x to do anything useful can be quite an exercise in frustration! Luckily we have defined the base browser support for our project at ie5 ns6 :-) (Its not a public website for all and sundry but an application, so its more reasonable for us to say you need browser

Re: Pros and Cons of Struts

2002-06-04 Thread Kevin . Bedell
Steve - I heard that JDeveloper is now a free product. Is that true? I also heard that it comes with directions for hooking it up to cvs repositories on SourceForge. Any chance someone could post info on hooking it up directly to the Struts nightly build? Thanks for Oracle's ongoing support

New Struts 1.1 Book

2002-06-04 Thread Grandin J. Hammell
I just recently read a manuscript of Sue Spielman's new book on Struts 1.1. Not to sound like an advertisement, but I was very impressed. It is designed for Java users looking to get a jumpstart on Struts but it is all geared towards the 1.1 release. It's a quick read at about 120 pages

Re: Pros and Cons of Struts

2002-06-04 Thread @Basebeans.com
Subject: Re: Pros and Cons of Struts From: Jeff Duska [EMAIL PROTECTED] === Steve: I guess I would disagree. Unless I misunderstood you before, you said that BC4J was only available with JDeveloper. Thus, to have a legal license you must purchase JDeveloper. This seems to me to make it pretty

RE: Pros and Cons of Struts

2002-06-04 Thread James Mitchell
This topic comes up quite often. Is there already a spot on the struts site that we can point people to for this??? If not, can I create one? James Mitchell Software Engineer\Struts Evangelist -Original Message- From: Struts Newsgroup [mailto:@[EMAIL PROTECTED]] Sent: Monday, June

Re: Design Advice - Relational Databases Java Objects

2002-06-04 Thread Adam Hardy
Hi Robert, that is more or less what I am aiming to do. I see you don't pass connections around - at least not across your business to DAO interface. So from your code snippet, I guess your transaction object gets the connection and puts it somewhere that the DAOs can find it? Or do you pass

RE: Handling check for logged-inness using a tag?

2002-06-04 Thread James Mitchell
Well, that's the magic in it. You never see the url with WEB-INF. Since we are using a forward and not a redirect, the control thread can go anywhere (its not a request from the browser). This forces the user to interact with your web app by using *ONLY* the actions you've defined. They can now

RE: Pros and Cons of Struts

2002-06-04 Thread Kevin . Bedell
There is one on the JBoss site that might be worth looking at. James Mitchell [EMAIL PROTECTED] on 06/04/2002 03:25:35 PM Please respond to Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] cc:(bcc: Kevin

validation.xml

2002-06-04 Thread William W
I'm using Struts 1.1 b1. Where should I configure the validation.xml file ? Thanks, William. _ Send and receive Hotmail on your mobile device: http://mobile.msn.com -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

Re: automatically select all entries in the list box ????

2002-06-04 Thread @Basebeans.com
Subject: Re: automatically select all entries in the list box 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045

RE: Getting Struts 1.1 beta to work with WLS6.1 SP2: commons-logging's ClassNotFoundException

2002-06-04 Thread Ralph Roland
I've recently been fighting this same problem. As far as I was able to determine you will need to place the commons-logging.jar in weblogic's main classpath and leave all of the other commons-*.jars and struts.jar in your war-file's WEB-INF/lib directory. I found the easiest way of testing the

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

2002-06-04 Thread Todd G. Nist
I have to ask a question; Why not use a filter to handle this? The filter will be called before any components of struts are invoked. It has access to the request, response and session and can handle forwarding the request to the login page or error page if they are not currently logged in.

How to get the original exception out of Struts?

2002-06-04 Thread Dennis Doubleday
When an exception is thrown in a bean getter that is called from a JSP, you get the not-terribly-useful generic message and stack trace: javax.servlet.ServletException: Exception thrown by getter for property analysisCriteria of bean analysisWizard at

Where is ReloadAction in 1.1?

2002-06-04 Thread @Basebeans.com
Subject: Where is ReloadAction in 1.1? From: Loren Halvorson [EMAIL PROTECTED] === I'm sure this is a commonly asked question, and I apologize if it's been answered before, but I couldn't find it in the archives. I don't see org.apache.struts.actions.ReloadAction in the nightly build of 1.1.

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

2002-06-04 Thread Michael Marrotte
My boss gave me the OK to give the Struts User Group access to the Struts-based application I'm working on. I recently finished a beta release of a Child Support Payment (CSE-PAY) system for the state of Florida. The system is a Struts-based webapp where I use several Struts features -- as much

1.1B and data-source problems...

2002-06-04 Thread wbchmura
I cannot seem to get a data-source configured under 1.1b.. I have this entered into my struts-config data-sources data-source autoCommit=false description=Oracle driverClass=oracle.jdbc.driver.OracleDriver maxActive=4 password=xx

html:messages

2002-06-04 Thread Peter Onthrops
I am trying to display error messages for properties in a list. The property key in the messages object is list[index].property. Is there support to display these nested messages individually? Thanks in advance. - Do You Yahoo!? Sign-up for Video Highlights

Re: Where can I find a good diagram descriping the Struts' architect?

2002-06-04 Thread @Basebeans.com
Subject: Re: Where can I find a good diagram descriping the Struts' architect? From: Sanjib Islam [EMAIL PROTECTED] === By far the best such diagram I've seen in this list is from Dan. http://www.mail-archive.com/struts-user@jakarta.apache.org/msg31442.html Thanks Dan. Jesper Lindholt Ottosen

RE: Usability in Web application development

2002-06-04 Thread Joseph Barefoot
+1 -Original Message- From: Galbreath, Mark [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 5:14 AM To: 'A mailing list for discussion about Sun Microsystem's Java Servlet API Technology.' Cc: Struts (E-mail); J2ee (E-mail) Subject: RE: Usability in Web application

Re: Where can I find a good diagram descriping the Struts' architect?

2002-06-04 Thread @Basebeans.com
Subject: Re: Where can I find a good diagram descriping the Struts' architect? From: Jesper Lindholt Ottosen [EMAIL PROTECTED] === hi Trieu, Danny wrote: Class/Componnent diagram that shown how different Struts componnent interact? Try this article - it's a bit old, but still very good IMHO

RE: New Struts 1.1 Book

2002-06-04 Thread Chappell, Simon P
I have to agree. It's a very good book, nicely paced. The target audience is explicitly stated as experienced Java developers who want to start using struts and I think that it hits the target very well. I think that it'll be a good compliment to Chuck's forthcoming O'Reilly book. I certainly

Tiles and putList

2002-06-04 Thread @Basebeans.com
Subject: Tiles and putList From: Matt Raible [EMAIL PROTECTED] === I have the following definition: definition name=pageLayout path=/layouts/pageLayout.jsp putList name=screenStyles add value=/styles/page.css/ add value=/styles/bluegray.css/ /putList

DynaActionForm notSerializable?

2002-06-04 Thread @Basebeans.com
Subject: DynaActionForm notSerializable? From: Matt Raible [EMAIL PROTECTED] === Is it true that DynaActionForm is not Serializable? If so, then I shouldn't use it in a clustered environment and put it in the session eh? 2002-06-04 13:28:12 StandardManager[/onpoint] Exception loading sessions

RE: Pros and Cons of Struts

2002-06-04 Thread James Mitchell
Can you provide a URL? James Mitchell Software Engineer\Struts Evangelist -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 5:00 PM To: Struts Users Mailing List Subject: RE: Pros and Cons of Struts There is one on the JBoss

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

2002-06-04 Thread Joseph Barefoot
hmmm...we actually never use the automatic validation in Struts, preferring to call validateXXX() methods in the ActionForm from the Action (creating and adding to ActionErrors objects), so we can redirect to different pages for different errors (potentially). So the first thing that gets called

Struts Console basic doubt !!!!!!!

2002-06-04 Thread Radhika Nadkarni
hi, im trying to download the Struts Console propsed by James Holmes. However, I cld download the zip file. But after downloading the same, the zip file doesn't have anny setup file or anything to start the Console. What am I suppose to do ??

Re: can someone show me example usage of html:messages tag + bug in example shown?

2002-06-04 Thread @Basebeans.com
Subject: Re: can someone show me example usage of html:messages tag + bug in example shown? From: Matt Raible [EMAIL PROTECTED] === %-- Success Messages --% logic:messagesPresent message=true div class=message html:messages id=message message=true html:img

struts-validator.jar file reqd. urgently

2002-06-04 Thread Radhika Nadkarni
Hi all, Can some one pl send me the latest struts-validator.jar file ?? I think the file which Im having is not the latest one and I am not able to find the latest file on the net ??? Help reqd. urgently. _ Chat with

compatibility question (feedback)

2002-06-04 Thread Adolfo Miguelez
Hi All, AFAIK ActionServlet controller funcionality has been splitted in Struts 1.1 in ActionServlet and RequestProcessor. We find a compatibility issue here. We have extended ActionServlet with a customized OurCompanyActionServlet which, in turn, preloads some stuff. Actually it is not an

RE: Button pressed

2002-06-04 Thread James Mitchell
Sorry for not getting back sooner, I've had laptop problems. I have done it 2 different ways. 1. Create a hidden text box in the form named 'action' for each submit button (this includes the html:cancel) use onclick=JavaScript:this.action.value='whatever' where 'whatever' is your

html:errors / html:messages

2002-06-04 Thread Peter Onthrops
I am trying to display error messages for properties in a list. The property key in the messages object is object[0].property. Is there support to display these message individually? Thanks, P. - Do You Yahoo!? Sign-up for Video Highlights of 2002 FIFA

test

2002-06-04 Thread Thigpen, David
is the list down? DT -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

FW: Indexed Property Validation on a String[]

2002-06-04 Thread Michael . Kashambuzi
-Original Message- From: Kashambuzi, Michael (C) Sent: Tuesday, June 04, 2002 9:41 AM To: 'Struts Users Mailing List' Subject: Indexed Property Validation on a String[] Hi: I have a form bean that contains an attribute defined as a String[]. public

Re: Nested iterate name

2002-06-04 Thread David Morris
Arron, And that is what I did. At this point the nested tag is working great so it is not worth spending much time on but I wonder why the name attribute on the nested:iterate tag seems to be ignored. From the documentation and what I remember of using the base iterate tag, I expected the

Re: WebPim

2002-06-04 Thread James Mitchell
Hey Todd, If you weren't told already, that was NOT supposed to be broadcast!!! JM - Original Message - From: Todd G. Nist To: 'Struts Users Mailing List' Sent: Tuesday, June 04, 2002 8:08 AM Subject: RE: WebPim Claudio, The password is cc. -Original

NoClassDefFoundError: org/apache/regexp/RESyntaxException

2002-06-04 Thread Greg Hess
Hi All, I am migrating my Struts 1.0.2 web app to use Struts 1.1. When my form posts to the Action servlet I get this error: java.lang.NoClassDefFoundError: org/apache/regexp/RESyntaxException at java.lang.Class.getDeclaredMethods0(Native Method) at

Commons Logging Problem

2002-06-04 Thread Sanjay Choudhary
Hi guys, I am trying to use commons logging in my project. It works perfectly fine until FormAction subclasses. When I try to use a Business delegate class from FormAction class and use commons logging in it, I get a classcast exception. I have tried making my Log log variable protected and

Re: nested tag issue

2002-06-04 Thread Arron Bates
Absolutely! Thanks, Aaron...not having used nested tags yet, I've been wondering about their syntax and parsing logic. ?... give it a go already. The code's there. There's next to no code in them, it just handles them little property and bean references for you. Sounds like standard XML.

General Validator Questions..

2002-06-04 Thread Jeff_Mychasiw
I think I understand the principals behind the validation module and hope to be using it a prototype very soon (1.1b). I like how it manages a javascript library. I do have a question though. Question: Is it wise to mix other javascript related functions that may need to use the same

RE: Re[6]: Handling check for logged-inness using a tag?

2002-06-04 Thread James Mitchell
Okhere goes James Mitchell Software Engineer\Struts Evangelist -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 2:06 PM To: James Mitchell Subject: Re[6]: Handling check for logged-inness using a tag? Yes, you should post this

ANNOUNCE: strutsGuessingGame1.0

2002-06-04 Thread Dominique Plante
Here is a little number guessing game written using struts like the one that comes with the Tomcat distribution. Includes necessary sources, ANT build script, and Struts Jar files. Until I find a better home for it, grab it from

attribute name for form bean?

2002-06-04 Thread David . A . Ventimiglia
Hello, What's the name of the request attribute in which the form bean for a form is stored? Thanks! Dave David A. Ventimiglia Wells Fargo Private Client Services (415) 396-0414 (work)

reloading struts config at runtime with struts-1.1b

2002-06-04 Thread Dan Hensgen
(I sent this once before my mailing list registration finalized; forgive me if you get another copy.) I'd like to reload the Struts config without restarting my Tomcat 4.0.3 app server (like I can in Struts 1.0.2 with ReloadAction). I couldn't find a similar action in Struts 1.1b. It doesn't

RE: attribute name for form bean?

2002-06-04 Thread Michael . Kashambuzi
the form bean is stored as a session-scope attribute with the same name as the form-bean name attribute specified in struts-config.xml. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 11:01 AM To: [EMAIL PROTECTED] Subject: attribute

RE: logic:equal question

2002-06-04 Thread Chappell, Simon P
Mark, Thanks, but I thought that scriptlets were bad!? Is there a more strutty way of achieving the objective? I suppose that I could extend the current equals tag and compare two properties that way. Do you think that might be useful to anyone other than me? Simon

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

2002-06-04 Thread Thinh Doan
id/pwd given is bad. Thinh -Original Message- From: Michael Marrotte [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 1:32 PM To: [EMAIL PROTECTED] Subject: Child Support Payment system for the state of FLorida, Powered by Struts... My boss gave me the OK to give the Struts

RE: request parameters usage

2002-06-04 Thread Arik Levin ( Tikal )
What Mark said ;-) -Original Message- From: Adolfo Miguelez [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 2:27 PM To: [EMAIL PROTECTED] Subject: request parameters usage Hi All, one easy question, I guess, this time. I know that Struts advises to avoid linking directly

RE: a newbie question on iterate

2002-06-04 Thread Galbreath, Mark
Good question! I should have included the indexId attribute of logic:iterate. JavaScript can capture an onchange event from (in my example) the states' dropdown and retrieve the associated cities like: html:select * * * onchange=getCities() logic:iterate * * *

Re: Child Support Payment system for the state of FLorida, Powered

2002-06-04 Thread @Basebeans.com
Subject: Re: Child Support Payment system for the state of FLorida, Powered From: Vic C [EMAIL PROTECTED] === I like the URLs /editRegistration.do?action=Create It implies dispatching. Michael Marrotte wrote: My boss gave me the OK to give the Struts User Group access to the Struts-based

RE: attribute name for form bean?

2002-06-04 Thread David . A . Ventimiglia
Beautiful. Thanks! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 3:22 PM To: [EMAIL PROTECTED] Subject: RE: attribute name for form bean? the form bean is stored as a session-scope attribute with the same name as the form-bean name

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: 1.1B and data-source problems...

2002-06-04 Thread James Holmes
That's because you are using attributes of the data-source tag to define the values for those parameters. That method has been deprecated for some time now. You need to use the new set-property method for this. Take a look at the DTD for more info:

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

2002-06-04 Thread Joseph Barefoot
Now, now, Mark, didn't you just 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

Re: Where can I find a good diagram descriping the Struts' architect?

2002-06-04 Thread James Holmes
Emmanuel Boudrant has put some nice UML diagrams on his website. http://www.mycgiserver.com/~eboudrant/ -james [EMAIL PROTECTED] http://www.jamesholmes.com/struts/ --- Struts Newsgroup [EMAIL PROTECTED] wrote: Subject: Re: Where can I find a good diagram descriping the Struts' architect?

RE: Re[2]: Handling check for logged-inness using a tag?

2002-06-04 Thread James Mitchell
No, its the entire struts-example as shipped in the src/bin distribution modified to have the jsp files in /WEB-INF/jsp folder. James Mitchell Software Engineer\Struts Evangelist -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 6:43 PM

Collection and form bean

2002-06-04 Thread Jayaraman Dorai
I have a collection of Value objects which I iterate through the logic iterate in JSP. This value object has a int. The requirement is to display a blank instead of a 0. I can convert this value object into a form bean which has a string equivalent for this int and replace a 0 with an empty

RE: Design Advice - Relational Databases Java Objects

2002-06-04 Thread Robert Taylor
Transaction makes the same Connection available to all DAOs in the same thread by storing it in a ThreadLocal variable, so I don't have to pass the transaction around. robert -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 4:46 PM To:

form bean ignoring null input from jsp - newbie question

2002-06-04 Thread Peter Onthrops
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 bean's attribute is not being updated with a null value. Thanks in advance. - Do You Yahoo!? Sign-up for Video Highlights

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

2002-06-04 Thread Andrew Hill
Havent got past the rego screen yet. (What on earth is a cardholder number and what format of number will this field accept?) I noticed your validation display could be improved. Having entered a bad cardholder number it sent me back to the screen with the actionerror displayed next to

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

2002-06-04 Thread Michael Marrotte
I borrowed that and many other ideas from the struts-example. -Original Message- From: Struts Newsgroup [mailto:@[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 6:40 PM To: [EMAIL PROTECTED] Subject: Re: Child Support Payment system for the state of FLorida, Powered Subject: Re: Child

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

2002-06-04 Thread Michael Marrotte
username: myflc (MYFLC for clarity, but not really uppercase) password: myflc (MYFLC for clarity, but not really uppercase) The credentials are correct. I just tested it and have already received comments from other users who logged in. But, please let me know if you have more problems with

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

2002-06-04 Thread Chuck Cavaness
Todd, No big ones that I can come up with, other than what Vic was trying to stress about letting the container do the work for you. My comments to Rick were about a specific problem with putting it into the Actions, due to the order of events that take place to process a request. I was just

RE: Need Help!!! Pls

2002-06-04 Thread Step
Mark, The bean (I believed) is created. Because, using the toString() method that I overwrite in the bean and found that it shows information as I predicted. Here are the code snippets .. Pls help Code to init the digester private void initDigester() throws ServletException {

2 problems that are just driving me CRAZY

2002-06-04 Thread mike . witt
Hi, I'm having two problems which are sure to drive me out of my mind if I don't find the solution soon. If you can help with either one of these, I would appreciate it. 1) For my problem, let's say I have 2 actions with 2 forms called ActionA, ActionB, FormA, and FormB. ActionA is going to

Design Strategy with commons-logging

2002-06-04 Thread Samip Ladhawala
Hi, We wish to use commons-logging in our enterprise project, where the frontend is powered by struts framework. All our struts related code is in xxxWeb folder under which we have various packages containing classes extending from Formbeans and Actions. Action classes call business

Re: Nested iterate name

2002-06-04 Thread Arron Bates
It's ignored as I preferred to have the tags rely on a central source the naming of the bean they're all going to be referencing. I feel it's safer being represented in a properly set up root tag, rather than any one name attribute of a parent tag. Some people also put the name attributes of

RE: New Struts 1.1 Book

2002-06-04 Thread Radhika Nadkarni
hi, cld u tell me where can i find the book ??? I want it urgently Thanx From: Chappell, Simon P [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: RE: New Struts 1.1 Book Date: Tue, 4 Jun 2002 16:25:35 -0500 I have

RE: New Struts 1.1 Book

2002-06-04 Thread James Ward
http://www.theserverside.com/resources/strutsreview.jsp -James -Original Message- From: Radhika Nadkarni [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 10:57 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: New Struts 1.1 Book hi, cld u tell me where can

Re: 1.1B and data-source problems...

2002-06-04 Thread Adam Hardy
That's exactly what happened to me as well. I think I got the xml out of the struts-blank app. Maybe somebody change it.. Adam James Holmes wrote: That's because you are using attributes of the data-source tag to define the values for those parameters. That method has been deprecated for

Re: 2 problems that are just driving me CRAZY

2002-06-04 Thread Adam Hardy
Hi Mike the first problem: how are you forwarding to ActionB from ActionA? Have you got a forward element to ActionB in your ActionMapping for ActionA set up in your struts-config, i.e. action-mappings actionpath=/myactiona type=ActionA name=FormA

  1   2   >