Re: Remotely passing parameters to struts

2008-08-12 Thread Randy Burgess
rds, Randy Burgess Sr. Software Architect D5 Systems, LLC > From: jaki <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List > Date: Mon, 11 Aug 2008 22:57:47 -0700 (PDT) > To: > Subject: Re: Remotely passing parameters to struts > > > What's the way to do i

Re: Remotely passing parameters to struts

2008-08-11 Thread jaki
What's the way to do it using request/response then? I tried it out with requestdispatcher only to later find out that requestdispatcher can only forward to servlets within the same web app. Is there a way to make it forward to a remote servlet? jaki wrote: > > Hi all, > > I have a web applica

Re: Remotely passing parameters to struts

2008-08-11 Thread Randy Burgess
You can refactor your action so that the business logic in your action resides elsewhere, then expose that business logic using Spring/web services, EJB or really any remoting technology. Regards, Randy Burgess Sr. Software Architect D5 Systems, LLC > From: jaki <[EMAIL PROTECTED]> > Reply-To: S

Re: Remotely passing parameters to struts

2008-08-11 Thread Felipe Lorenz
hi... i dont think so... On Mon, Aug 11, 2008 at 8:45 AM, jaki <[EMAIL PROTECTED]> wrote: > > Hi all, > > I have a web application which needs to pass parameters to a struts app > which resides on another machine. I will not be calling the struts class > using a jsp but from a normal java method.