Re: action tag with tile result causing StackOverflowError-

2016-11-28 Thread Christoph Nenning
You can file struts bugs here: https://issues.apache.org/jira/browse/WW/ Regards, Christoph > From: Vishal Jhagadiawala > To: Struts Users Mailing List , > Date: 25.11.2016 20:04 > Subject: Re: action tag with tile result causing StackOverflowError- > > Thanks Christ

Re: action tag with tile result causing StackOverflowError-

2016-11-25 Thread Vishal Jhagadiawala
="title", value="titel"),                 @TilesPutAttribute(name="content",value="content.jsp")         } ) Hope that helps! Regards, Christoph > From: Vishal Jhagadiawala > To: Struts Users Mailing List , > Date: 21.11.2016 16:14 >

Re: action tag with tile result causing StackOverflowError-

2016-11-22 Thread Christoph Nenning
> To: Struts Users Mailing List , > Date: 21.11.2016 16:14 > Subject: Re: action tag with tile result causing StackOverflowError- > > Hi Christoph, > Please find my response below. > > Here is my actionTileResult.jsp (it is for test) > actionResult.jsp > This

Re: action tag with tile result causing StackOverflowError-

2016-11-21 Thread Vishal Jhagadiawala
hould showcase.index.actionResult and showcase.index belong to each other? - shouldn't showcase.index.actionResult set the body attribute? - why is there an tag in layout.jsp? Regards, Christoph > From: Vishal Jhagadiawala > To: Struts Users Mailing List , > Date: 19.11.2016 20:55 > Subject: Re

Re: action tag with tile result causing StackOverflowError-

2016-11-21 Thread Christoph Nenning
gt; From: Vishal Jhagadiawala > To: Struts Users Mailing List , > Date: 19.11.2016 20:55 > Subject: Re: action tag with tile result causing StackOverflowError- > > Hi , > I also verified the exactly same error happens in struts 2.5.5 with > tiles 3.0.7. > if we try to us

Re: action tag with tile result causing StackOverflowError-

2016-11-19 Thread Vishal Jhagadiawala
Hi , I also verified the exactly same error happens in struts 2.5.5 with tiles 3.0.7. if we try to use action tag as below with tiles result it's goes in infinite loop and throws it throws java.lang.StackOverflowError, Layout.jsp          Notice that this is a layout made in JSP        

Re: action tag

2009-12-16 Thread Nguyen Xuan Son
I had that already, without that tag the system wont understand any tag which starts with 's:' do you have any other suggestion? thank you very much Vào 14:00 Ngày 17 tháng 12 năm 2009, Thắng Hoàng đã viết: > maybe you forgot to include the taglib header > > <%...@taglib uri="/struts-tags" prefi

Re: action tag

2009-12-16 Thread Thắng Hoàng
maybe you forgot to include the taglib header <%...@taglib uri="/struts-tags" prefix="s" %> 2009/12/17 Nguyen Xuan Son > dear all > In the JSP page I have > > > > class="newsimg"> > > > > class="gray_d" title="詳しく" >read more > > src="g/images/spacer.gif"> > > > > though the data is

Re: Action tag is forced to use input result if outer action has action errors

2009-11-10 Thread Matt Jiang
Hi Oscar, Thanks for your advise, I also tried this approach, I make a new interceptors stack and apply on tag to avoid validation and workflow interceptors. But it seems that in sitemesh jsp, can't access the same http session if target action has action error. Did you get the same problems bef

Re: Action tag is forced to use input result if outer action has action errors

2009-11-10 Thread Oscar Calderón
Hi Matt, You could add to your action declaration in the struts.xml a parameter called excluded methods, where you can add the name of the methods of your action that you don't want to be validated, for example: methodName1,methodName2 Even if your interceptor is a default interceptor like wo

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

Re: action tag

2008-04-26 Thread Jeromy Evans
Kibo wrote: Hi konference I would like use tag action but from action I need only property, dont executed/rendered. When I use this: rendered it result and view. When I use this: the action probably dont execute and the value is empty -- struts.xml

Re: Action tag with parameters

2007-07-05 Thread Musachy Barroso
You can used nested param tag for that musachy On 7/4/07, Asaf Paris Mandoki <[EMAIL PROTECTED]> wrote: When directly calling an action we can send a petition like .../ActionName.action?var1=val1&var2=val2 using the GET method. I understand that that calls an action with a couple of

Re: Action tag with parameters

2007-07-05 Thread yitzle
Quoting http://struts.apache.org/2.x/docs/action.html Parameters can be passed to the action using nested param tags. (links to http://struts.apache.org/2.x/docs/param.html) I'm not sure about the HTTP method... What exactly are you trying to accomplish? ---

Re: Action tag with lots of params???

2007-05-14 Thread Felipe Rodrigues
That's the Big Deal! If I use and a anchor , this would work. The problem here is I must call this action and send these params when I get OnBlur of some . I'm calling a JavaScript function that redirect to a JSP and trying to use this to send the params. A dummie question. You said ParameterAw

Re: Action tag with lots of params???

2007-05-14 Thread Dave Newton
--- Felipe Rodrigues <[EMAIL PROTECTED]> wrote: > I'm not so sure about OGNL purpose and syntax. http://struts.apache.org/2.x/docs/ognl.html http://struts.apache.org/2.x/docs/ognl-basics.html In theory EL expressions *should* go to the OGNL stack if they're not found in scope. > Any other idea?

Re: Action tag with lots of params???

2007-05-14 Thread Felipe Rodrigues
I'm not so sure about OGNL purpose and syntax. That's why I'm using EL. I got some cases where I had problem when using OGNL, so I had to change to EL. I'm sure that anything that EL does, OGNL can do too, but I don't know exactly how to do that. Anyway, I can try it with OGNL. Any other idea?

Re: Action tag with lots of params???

2007-05-14 Thread Dave Newton
--- Felipe Rodrigues <[EMAIL PROTECTED]> wrote: > Nobody have any idea? Is there any particular reason you're not using OGNL EL in the value attributes? I don't know that that's the problem, but it makes me nervous. d. > > > > > > > > value="${foraMedia}" /> > > /> > >

Re: Action tag with lots of params???

2007-05-14 Thread Felipe Rodrigues
Nobody have any idea? []'s Felipe Felipe Rodrigues wrote: > > Hi Guys, > > Is it possible? > When I try that, my action only set the varId and don't even call the > others set methods. How do something like that? > > > > > > > > > Thanks, > > Felipe > -- View this me