RE: webapp deployment

2004-07-15 Thread Jim Barrows
> -Original Message- > From: Phyl [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 15, 2004 3:04 PM > To: Struts Users Mailing List > Subject: Re: webapp deployment > > > > Hi, > > I tried adding a context parameter to web.xml: >

Re: webapp deployment

2004-07-15 Thread Phyl
Hi, I tried adding a context parameter to web.xml: testparam hello and access it in a jsp: <% out.print(getServletContext().getInitParameter("testparam")); %> The result of this print was a "null" value, but str

Re: webapp deployment

2004-07-14 Thread Phyl
Hi, Thanks for your replies! Pardon the obvious, but just in case you're WEB-INF should be: /home/virtual/sitexyz/fst/var/www/html/WEB-INF/struts-config.xml yes, that's right. If that's it again, pardon the obvious, but how is the struts-config.xml coded in the web.xml? This is how stru

RE: webapp deployment

2004-07-13 Thread Jim Barrows
> -Original Message- > From: Phyl [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 13, 2004 3:25 PM > To: Struts Users Mailing List > Subject: Re: webapp deployment > > > > > I'm using Tomcat 4.1.29 in the development machine and Tomcat > 4.0.3

Re: webapp deployment

2004-07-13 Thread Phyl
yep, load-on-startup is declared. i'm using it this way: action org.apache.struts.action.ActionServlet config /WEB-INF/struts-config.xml [...] 1 Phyl Erik Weber wrote: Make sure you have load-on-startup declared in web.xml! I h

Re: webapp deployment

2004-07-13 Thread Phyl
| | To: [EMAIL PROTECTED] | | cc:

Re: webapp deployment

2004-07-13 Thread Phyl
I'm using Tomcat 4.1.29 in the development machine and Tomcat 4.0.3 in the webserver. I wonder if this problem might have to be with the way is declared in server.xml. This is the way I have it in the development machine: - server.xml - [...

Re: webapp deployment

2004-07-12 Thread Erik Weber
Make sure you have load-on-startup declared in web.xml! I had a problem with Struts not being loaded at all when I didn't have this declared, and the first request did not cause it to load either. Erik Phyl wrote: Hi, I've been developing a struts webapp using tomcat and am now trying to dep

RE: webapp deployment

2004-07-12 Thread Michael McGrady
I am trying to figure out what serialization would have to do with the server? At 04:30 PM 7/12/2004, you wrote: > -Original Message- > From: Michael McGrady [mailto:[EMAIL PROTECTED] > Sent: Monday, July 12, 2004 4:25 PM > To: Struts Users Mailing List > Subject: RE: we

Re: webapp deployment

2004-07-12 Thread jthompson
| | To: [EMAIL PROTECTED] | | cc: | |

RE: webapp deployment

2004-07-12 Thread Jim Barrows
> -Original Message- > From: Michael McGrady [mailto:[EMAIL PROTECTED] > Sent: Monday, July 12, 2004 4:25 PM > To: Struts Users Mailing List > Subject: RE: webapp deployment > > > If it will run a servlet, it will run struts. No? Something is tickling t

RE: webapp deployment

2004-07-12 Thread Michael McGrady
If it will run a servlet, it will run struts. No? At 04:15 PM 7/12/2004, you wrote: > -Original Message- > From: Michael McGrady [mailto:[EMAIL PROTECTED] > Sent: Monday, July 12, 2004 4:12 PM > To: Struts Users Mailing List > Subject: Re: webapp deployment > > &g

RE: webapp deployment

2004-07-12 Thread Jim Barrows
> -Original Message- > From: Michael McGrady [mailto:[EMAIL PROTECTED] > Sent: Monday, July 12, 2004 4:12 PM > To: Struts Users Mailing List > Subject: Re: webapp deployment > > > Can you provide a bit more information and code? What do you > have for >

Re: webapp deployment

2004-07-12 Thread Michael McGrady
Can you provide a bit more information and code? What do you have for global forwards in your struts-config.xml? Where is the "welcome" forward called? Etc. At 04:08 PM 7/12/2004, you wrote: Hi, I've been developing a struts webapp using tomcat and am now trying to deploy it to my webserve

webapp deployment

2004-07-12 Thread Phyl
Hi, I've been developing a struts webapp using tomcat and am now trying to deploy it to my webserver. I copied every class and jsp manually since there is no .war deployment available on the server. Invoking a simple jsp directly works fine, however, when invoking a *struts' jsp* this exceptio