Re: newbie alert: forward to a php script

2007-04-17 Thread Information Guzzler
Hi Chris, HttpClient would be an alternative to generate HTTP POST request. For info. refer http://jakarta.apache.org/commons/httpclient/ /I On 4/17/07, Chris Pat <[EMAIL PROTECTED]> wrote: Hello Sorry for the persistence/naivete of this, however can someone tell me if this is possible and h

Re: Design issue

2007-02-02 Thread Information Guzzler
Definitely (1) if you are strictly following MVC. Is there any specific scenario wherein (2) seems good to you? If there is then explore ways to force it thro' controller On 2/2/07, Zhang, Larry (L.) <[EMAIL PROTECTED]> wrote: Think about a typical struts app, and on the jsp there are text f

Re: Redirect with Struts 2

2007-01-08 Thread Information Guzzler
How about passing parameters along with the redirect? On 1/8/07, Tom Schneider <[EMAIL PROTECTED]> wrote: Interesting question. I had the same question when I started looking at webwork. Here's what I do when I need to redirect to a different domain. If it's a static url, you can just hard c

Re: session time out

2007-01-05 Thread Information Guzzler
Have the sessionListener track the session duration and on timeout remove attributes from session. Also, On each struts view, before displaying check for a session attribute, if not present redirect to session timeout page using logic:forward /S On 1/5/07, fea jabi <[EMAIL PROTECTED]> wrote:

Re: ActionRedirect with POST parameters

2007-01-05 Thread Information Guzzler
Yep, Is there a workaround? On 1/5/07, Antonio Petrelli <[EMAIL PROTECTED]> wrote: Information Guzzler ha scritto: > Hi, > > Is there a way to use ActionRedirect(Struts 1.2.7 & later) with POST > parameters and not GET. Errr... no, it is an HTT

ActionRedirect with POST parameters

2007-01-05 Thread Information Guzzler
Hi, Is there a way to use ActionRedirect(Struts 1.2.7 & later) with POST parameters and not GET. /S