Re: Forwarding to existing servlet from Struts??

2003-09-17 Thread Christian Bollmeyer
Am Mittwoch, 17. September 2003 21:05 schrieb Menke, John: Basically, forwards are handled (Struts or not) internally in the server by javax.servlet.RequestDispatcher. So forwards are generally possible only within the same machine | VM. This said, you should declare your Servlet as usual in web.x

RE: Forwarding to existing servlet from Struts??

2003-09-17 Thread Menke, John
That worked perfectly thanks :) -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 3:27 PM To: Struts Users Mailing List Subject: RE: Forwarding to existing servlet from Struts?? Umm.. if its in a different webapp the Im not sure what you

RE: Forwarding to existing servlet from Struts??

2003-09-17 Thread Andrew Hill
say what? The input? u -Original Message- From: Carey Nation [mailto:[EMAIL PROTECTED] Sent: Thursday, 18 September 2003 03:18 To: Struts Users Mailing List Subject: Re: Forwarding to existing servlet from Struts?? > I need to forward from a struts action to a servlet. How

Re: Forwarding to existing servlet from Struts??

2003-09-17 Thread Carey Nation
> I need to forward from a struts action to a servlet. How can this be done? I would think just make the input for the forward the url for the servlet... - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

RE: Forwarding to existing servlet from Struts??

2003-09-17 Thread Andrew Hill
g List' Subject: RE: Forwarding to existing servlet from Struts?? that would be a good start I guess. :) -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 3:11 PM To: Struts Users Mailing List Subject: RE: Forwarding to existing servlet

RE: Forwarding to existing servlet from Struts??

2003-09-17 Thread Menke, John
that would be a good start I guess. :) -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 3:11 PM To: Struts Users Mailing List Subject: RE: Forwarding to existing servlet from Struts?? Have you tried using an ActionForward? (duh

RE: Forwarding to existing servlet from Struts??

2003-09-17 Thread Andrew Hill
Have you tried using an ActionForward? (duh) -Original Message- From: Menke, John [mailto:[EMAIL PROTECTED] Sent: Thursday, 18 September 2003 03:06 To: Struts (E-mail) Subject: Forwarding to existing servlet from Struts?? I need to forward from a struts action to a servlet. How can

Forwarding to existing servlet from Struts??

2003-09-17 Thread Menke, John
I need to forward from a struts action to a servlet. How can this be done? -john - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Again: Forwarding to existing Servlet

2003-08-28 Thread Manuel Lenz
ts Users Mailing List" <[EMAIL PROTECTED]> | | Kopie: |

RE: Forwarding to existing Servlet

2003-08-27 Thread Pady Srinivasan
You can do a ActionMapping.setForward to any URI to forward to. Thanks -- pady [EMAIL PROTECTED] -Original Message- From: Hue Holleran [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 10:52 AM To: Struts Users Mailing List Subject: RE: Forwarding to existing Servlet

RE: Forwarding to existing Servlet

2003-08-27 Thread Hue Holleran
om the browser) into request scope before calling the servlet? Hue. > -Original Message- > From: Manuel Lenz [mailto:[EMAIL PROTECTED] > Sent: 27 August 2003 15:36 > To: Struts Users Mailing List > Subject: Forwarding to existing Servlet > > > > Hi to all, > I hav

Forwarding to existing Servlet

2003-08-27 Thread Manuel Lenz
Hi to all, I have an existing servlet which must be called in some cases. The serverlet nets a param which can be add to the request from the browser. How can I call an existing Servlet from a struts-action-class? I hope someone can help me, best regards, Manuel -