ActionForward to a different Web App

2004-09-10 Thread El Toro
Hi, I have a struts web application running within Tomcat 5.x that is responsible for authentication. Authentication in this case just checks a username and password against a database and then creates a 'User' object and dumps it in the session. After a successful authentication I would like to

Re: Moving from environment to environment

2004-09-10 Thread El Toro
Dave, I suggest you create three ant targets which install your war on the respective environments and build your war with the respective struts-config file. True, you will have to have to maintain three different struts-config files but the only difference should the datasource properties. This

RE: ActionForward to a different Web App

2004-09-10 Thread El Toro
Can anyone point me to any good documentation/examples on how to configure/utilize the single sign on feature of tomcat? Thanks in Advance, TR --- Jim Barrows <[EMAIL PROTECTED]> wrote: > > > > -Original Message- > > From: El Toro [mailto:[EMAIL PROTECTED] &

Redirecting a Request With params

2004-09-16 Thread El Toro
I have an action class which needs to redirect a request to an application outside of the current context. I also need to pass some parameters to the outside application. One of these parameters is too big to include on the URL/QueryString. Does anyone know how I can redirect the request with th

RE: Redirecting a Request With params

2004-09-16 Thread El Toro
thout using any other external libraries. Thanks, TR --- Durham David R Jr Contr 805 CSPTS/SCE <[EMAIL PROTECTED]> wrote: > > From: El Toro [mailto:[EMAIL PROTECTED] > > > > I have an action class which needs to redirect a > > request to an application outside of th

Application.Resources file visibility

2004-10-05 Thread El Toro
All, I'm upgrading an existing struts application. The application extends the TilesRequestProcessor->RequestProcessor and overrides the processRoles() method. Part of the enhancements I am trying to build requires me to pull some values from the application resource file. I'm using the inherit

Re: Application.Resources file visibility

2004-10-06 Thread El Toro
gt; I assume you are not in the action? Otherwise you > would use > MessageResources.getMessage() > > On 10/05/2004 08:43 PM El Toro wrote: > > All, > > > > I'm upgrading an existing struts application. The > > application extends the > > Tile