Re: Problem forwarding to an action in another webapp

2006-02-16 Thread Alexandre Simon
Oups... I didn't saw the webapps were in SEPARATE ear files... you will probably encounter some bad classloader issues. Do a redirect, not a forward. Michael Jouravlev wrote: On 2/16/06, Mineau, Christian <[EMAIL PROTECTED]> wrote: We develop an application with Struts MVC. In this applica

Re: Problem forwarding to an action in another webapp

2006-02-16 Thread Alexandre Simon
Action path is relative to the current webapp. What you want is a crosscontext forward, ie. : getServletContext().getContext("/Webapp2").getRequestDispatcher("/action2.do").forward(...) Be sure your container accept it. Hope helps. Mineau, Christian wrote: We develop an application with Str

Re: returning user to the page they where on when they submitted the form?

2005-11-16 Thread Alexandre Simon
An Action Class can be mapped more than one time, right ? Mick Knutson wrote: My issue is that this action is called from many different pages. How do I accomplish that? -Original Message- From: Deepa Khetan [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 15, 2005 7:38 PM To: Stru

Re: FormFile.getContentType and IE

2005-11-12 Thread Alexandre Simon
Ben wrote: Hi It seems like the FormFile.getContentType method doesn't return anything when uploading file using Internet Explorer 6 SP2. The method returns correct result when I use Firefox or Opera browsers to upload file. IE does not send anything to server, or application/octet-stream (E

Re: jstl and struts tag problem

2004-12-07 Thread Alexandre Simon
Le mar 07/12/2004 à 16:56, struts lover a écrit : > property="salaryValue" labelProperty="salaryLabel"/> For nested properties, you have to use nested tags. -- SIMON Alexandre - To unsubscribe, e-mail: [EMAIL PROTECTED] For a