Re: Action Tag java.lang.StackOverflowError

2009-09-02 Thread Rusty Wright
ering. Chris -Original Message- From: briannic...@aspca.org To: Struts Users Mailing List Sent: Wed, Sep 2, 2009 3:36 pm Subject: Re: Action Tag java.lang.StackOverflowError Of course if you couldn't tell, I'm very new to Struts. Can you explain why that

Re: Action Tag java.lang.StackOverflowError

2009-09-02 Thread musomesa
ssage- From: briannic...@aspca.org To: Struts Users Mailing List Sent: Wed, Sep 2, 2009 3:36 pm Subject: Re: Action Tag java.lang.StackOverflowError Of course if you couldn't tell, I'm very new to Struts. Can you explain why that all shows up on one page and doesn't ta

Re: Action Tag java.lang.StackOverflowError

2009-09-02 Thread BrianNicely
Of course if you couldn't tell, I'm very new to Struts. Can you explain why that all shows up on one page and doesn't take me to a different page? My best assumption on how Struts works is that when I'm at index.jsp I call the action ActionTag which on a success displays the snippet.jsp page on

Re: Action Tag java.lang.StackOverflowError

2009-09-02 Thread musomesa
Great. The trick is not to have an action's result contain a call to the action -- you set up an infinite recursion that way. Chris -Original Message- From: briannic...@aspca.org To: Struts Users Mailing List Sent: Wed, Sep 2, 2009 3:21 pm Subject: Re: Actio

Re: Action Tag java.lang.StackOverflowError

2009-09-02 Thread BrianNicely
Chris, Thanks, that works exactly the way I wanted. Brian E. Nicely Programmer / Analyst Knowledge Management ASPCA® 1717 South Philo Road, Suite 36 Urbana, IL 61802 briannic...@aspca.org P: 217-337-9700, 9799 F: 217-337-0599 www.aspca.org The information contained in this e-mail, and a

Re: Action Tag java.lang.StackOverflowError

2009-09-02 Thread musomesa
.                      Chris -Original Message- From: briannic...@aspca.org To: Struts Users Mailing List Sent: Wed, Sep 2, 2009 2:14 pm Subject: Re: Action Tag java.lang.StackOverflowError Is there an example you could point me to (that actually works) or help me get my example working

Re: Action Tag java.lang.StackOverflowError

2009-09-02 Thread BrianNicely
Thank you Martin and Dave. That makes sense to me Dave, thanks for clearing that up. What I would like to do though is stay on the same page without going to a different page but still contain that action. From what you're describing and from what I got from Martin, it appears it might not be p

Re: Action Tag java.lang.StackOverflowError

2009-09-02 Thread Dave Newton
briannic...@aspca.org wrote: Is there an example you could point me to (that actually works) or help me get my example working? We seem to be talking past each other here. Load a page you're not already on. Do you understand *why* you're getting a stack overflow? You're calling an action. Tha

Re: Action Tag java.lang.StackOverflowError

2009-09-02 Thread BrianNicely
Is there an example you could point me to (that actually works) or help me get my example working? Brian E. Nicely Programmer / Analyst Knowledge Management ASPCA® 1717 South Philo Road, Suite 36 Urbana, IL 61802 briannic...@aspca.org P: 217-337-9700, 9799 F: 217-337-0599 www.aspca.org

Re: Action Tag java.lang.StackOverflowError

2009-09-02 Thread Dave Newton
briannic...@aspca.org wrote: What I want to do is load a page without the user having to click on it (like a submit button) and have the data show up on the page. I also don't want to forward to another page. Is that even possible? You can use the action tag for that (depending on a few things

Re: Action Tag java.lang.StackOverflowError

2009-09-02 Thread BrianNicely
What I want to do is load a page without the user having to click on it (like a submit button) and have the data show up on the page. I also don't want to forward to another page. Is that even possible? Brian E. Nicely Programmer / Analyst Knowledge Management ASPCA® 1717 South Philo Road,

Re: Action Tag java.lang.StackOverflowError

2009-09-02 Thread Dave Newton
briannic...@aspca.org wrote: I've been banging my head against the wall for the past 6+ hours or so and need help with this problem. I am trying to call an action to display results on a page when the page is closed, but I keep getting a loop that keeps printing the data over and over until a

Re: Action Tag java.lang.StackOverflowError

2009-09-02 Thread BrianNicely
I'm sorry, I should correct myself. I want to display the results when the page is "open" and I'm using Struts2. Brian E. Nicely Programmer / Analyst Knowledge Management ASPCA® 1717 South Philo Road, Suite 36 Urbana, IL 61802 briannic...@aspca.org P: 217-337-9700, 9799 F: 217-337-0599 ww

Action Tag java.lang.StackOverflowError

2009-09-02 Thread BrianNicely
I've been banging my head against the wall for the past 6+ hours or so and need help with this problem. I am trying to call an action to display results on a page when the page is closed, but I keep getting a loop that keeps printing the data over and over until a StackOverflowError occurs. My