Re: Executing java code w/out forwarding to another page

2005-08-26 Thread Frank W. Zammetti
Thanks for pointing out AjaxTags... I think it might indeed be a decent answer in this case. However, I'd like to point out that the Struts-specific version of AjaxTags referenced here is no longer being developed. There is now a non-Struts-specific version which is a part of Java Web Parts

Re: Executing java code w/out forwarding to another page

2005-08-26 Thread Martin Gainty
om: "Van Henreich Rontal" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" ; "Martin Gainty" <[EMAIL PROTECTED]> Sent: Friday, August 26, 2005 12:13 PM Subject: Re: Executing java code w/out forwarding to another page Thanks for the reply. I'm tr

Re: Executing java code w/out forwarding to another page

2005-08-26 Thread Van Henreich Rontal
ntext > ? > Martin- > - Original Message - > From: "Van Henreich Rontal" <[EMAIL PROTECTED]> > To: > Sent: Friday, August 26, 2005 11:47 AM > Subject: Executing java code w/out forwarding to > another page > > > > Hi, > > > &g

Re: Executing java code w/out forwarding to another page

2005-08-26 Thread Sudhaker Raj
When you return null from any Action class execute method, that tells framework not to bother about doing any forward or include or anything. This means you need to handle the response by yourself. Something like... response.setContentType("text/plain"); response.getWriter().write("Bingo, you got

Re: Executing java code w/out forwarding to another page

2005-08-26 Thread Sudhaker Raj
U need AJAX to rescue you. On 8/26/05, Van Henreich Rontal <[EMAIL PROTECTED]> wrote: > Hi, > > I'm not sure if this has been tackled already or it's > a feature available to Struts cause I don't think it > is normally use. > > I have all these messages on a webpage and at a > certain point in t

Re: Executing java code w/out forwarding to another page

2005-08-26 Thread Martin Gainty
x27;s context ? Martin- - Original Message - From: "Van Henreich Rontal" <[EMAIL PROTECTED]> To: Sent: Friday, August 26, 2005 11:47 AM Subject: Executing java code w/out forwarding to another page Hi, I'm not sure if this has been tackled already or it's a feat

Executing java code w/out forwarding to another page

2005-08-26 Thread Van Henreich Rontal
Hi, I'm not sure if this has been tackled already or it's a feature available to Struts cause I don't think it is normally use. I have all these messages on a webpage and at a certain point in time, I want to abort the generation of these messages so i press an abort button. I would then need som