RE: need to display a tree struture in JSP

2003-02-25 Thread Dennis Doubleday
I'll endorse--it worked really well for me, with one issue. Arron, did you see my post from 10 days ago or so? I had a problem with simultaneously loading the same tree in two separate iframes on the same page. The nested context in one seemed to interfere with the context in the other.

Simultaneous use of nested tags in two iframes causing interference

2003-02-18 Thread Dennis Doubleday
I have two iframes on one page that are both loading variants of the same tree. I am using the nested library to display the trees (very nice stuff!). However, they seem to be interfering with each other. Each iframe has tags like: nested:root name=tree nested:nest property=root

RE: Rendering alternate rows of a table in Struts

2003-02-07 Thread Dennis Doubleday
-Original Message- From: David Graham [mailto:[EMAIL PROTECTED]] Sent: Friday, February 07, 2003 3:13 PM To: [EMAIL PROTECTED] Subject: RE: Rendering alternate rows of a table in Struts How is this: jsp:useBean id=rowTogglerclass=com.mycompany.RowToggler/ tr

RE: [Struts Tip] #15 Use chained exceptions. Design consideration.

2002-11-18 Thread Dennis Doubleday
-Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 7:31 AM To: Struts Users Mailing List Subject: RE: [Struts Tip] #15 Use chained exceptions. Design consideration. . thats horrible. I use: catch(Exception e) { ; }

Trouble with messages duplicated directly to me (was RE: [Sorting within an Iterate tag])

2002-10-30 Thread Dennis Doubleday
Does anybody else have this problem with the mailing list: Sometimes people send messages to the list and they are also sent to me directly. This screws up my filtering. And it doesn't seem to be random. For example, I am getting in the To: field of every message Josh Berry sends to the list,

RE: Anyone Using Struts 1.1b2 in Their Products

2002-10-09 Thread Dennis Doubleday
We are using 1.1b in our product, SpendMetrix, which is purchasing performance analysis tool intended for large corporatations that purchase a variety of direct materials from a variety of vendors. Our product is about to enter beta and we have no problems to report with Struts 1.1b (we haven't

Redirect and ActionErrors don't play together--is there another way?

2002-08-28 Thread Dennis Doubleday
Here's my situation: I have a screen that contains a table of objects (say the screen is displayed by table.do). There is a link on the screen that causes a new object to be created by a Struts action (call it create.do?key=NN). The action forwards back to table.do. If the creation was

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

JBuilder6 bug or am I doing something wrong with logic:iterate?

2002-05-20 Thread Dennis Doubleday
: chooselist.jsp: /jsp/analysiswizard/inc/lists.jsp(22,24) According to the TLD attribute id is mandatory for tag iterate at line 52, column 15 As you can see, the id attribute is specified in the logic:iterate tag? Looks like a JBuilder bug, but of course it could be my error somehow. Anybody? Dennis

RE: JBuilder6 bug or am I doing something wrong with logic:iterate?

2002-05-20 Thread Dennis Doubleday
Never mind, it was actually complaining about my closing tag, which was logic:iterate/ instead of /logic:iterate -Original Message- From: Dennis Doubleday [mailto:[EMAIL PROTECTED]] Sent: Monday, May 20, 2002 10:59 AM To: [EMAIL PROTECTED] Subject: JBuilder6 bug or am I doing

dynamic index in indexed property

2002-05-20 Thread Dennis Doubleday
Shouldn't this work? (Struts 1.1b, Tomcat 4.0.4) bean:write name=analysisWizard property='analysisCriteria[%= request.getParameter(listID)%].name'/ I get: java.lang.IllegalArgumentException: Invalid indexed property 'analysisCriteria[%= request' -- To unsubscribe, e-mail: mailto:[EMAIL

RE: dynamic index in indexed property

2002-05-20 Thread Dennis Doubleday
wants double qoutes on strings. Do you really need to convert to Integer? Say I was just using a number as the index: property=analysisCriteria[1]. Isn't 1 just part of the string and not a number? Mark -Original Message- From: Dennis Doubleday [mailto:[EMAIL PROTECTED]] Sent

RE: How to deploy Struts-using app to Tomcat 4 from Forte?

2002-05-02 Thread Dennis Doubleday
I got that error because I was using JDK 1.4.0 but not the special LE edition of Tomcat 4.0.3 that works with JDK 1.4.0. Is that your case? -Original Message- From: Struts Newsgroup [mailto:@[EMAIL PROTECTED]] Sent: Thursday, May 02, 2002 4:55 PM To: [EMAIL PROTECTED] Subject: Re:

RE: CapitalOne

2002-04-23 Thread Dennis Doubleday
I got this when I went there, even though I was using IE 5.5. Browser Alert You cannot access Online Account Services with your current Web browser. Possible reasons for this could be one of the following: You are using Netscape 4.0 through 4.07 or Netscape

RE: CapitalOne

2002-04-23 Thread Dennis Doubleday
That isn't the error I got. Capital One thinks I have an unsupported browser, but I don't. I have IE 5.5, 128-bit. -Original Message- From: Xianzhong chen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 5:50 PM To: 'Struts Users Mailing List' Subject: RE: CapitalOne

Struts example - redundant login checking?

2002-04-18 Thread Dennis Doubleday
In the example app distributed with Struts, it seems redundant to have app:checkLogon/ at the start of every jsp and ALSO to check for login in every action class. Is that required, or just a belt-and-suspenders intentional duplication? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

Unexpected login behavior in struts-example from 1.1b

2002-04-18 Thread Dennis Doubleday
So, I log in as user to the struts-example app, go to the Edit Subscription page and bookmark it. (The bookmarked URL is http://foghorn:8088/struts-example/editSubscription.do?action=Editusern ame=userhost=mail.yahoo.com). Then I log out of the application. (I verified that I was logged out-the

RE: Unexpected login behavior in struts-example from 1.1b

2002-04-18 Thread Dennis Doubleday
information after a user has logged out. -Original Message- From: Dennis Doubleday [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 18, 2002 10:44 AM To: 'Struts Users Mailing List' Subject: Unexpected login behavior in struts-example from 1.1b So, I log in as user to the struts

Struts declarative security policy? (was RE: Struts example - redundant login checking?)

2002-04-18 Thread Dennis Doubleday
Seems to me that neither the jsp nor the action is the correct place to enforce a security policy. It means both page designers and developers have to remember to do it every time. There ought to be (is there?) a mechanism for declaring a security policy which can be referenced in

RE: [Resend] Struts, view-framework pluggability, XSLT, and Maverick

2002-04-11 Thread Dennis Doubleday
There has been a lot of activity over on the Velocity list for the past couple of months working on a Velocity/Struts integration. Some people are already using it, but it isn't released yet. They have been working on Struts API to the presentation layer as part of the effort to allow for