Re: Getting a project deployed

2007-04-19 Thread John Calsbeek
Yeah, this isn't my webserver. I'm not excited about pulling out an existing Apache setup... On 4/18/07, Rashmi Rubdi [EMAIL PROTECTED] wrote: It is most likely that the project is not configured properly. We can fix the 404 error by properly configuring your project for Tomcat alone. For

Re: Getting a project deployed

2007-04-19 Thread John Calsbeek
On 4/19/07, Rashmi Rubdi [EMAIL PROTECTED] wrote: Check the configuration of the above aliasing. Normally URL Rewriting is done in a sequence, the first matching path pattern is applied, so it helps to check all patterns and see which is the first one that's being applied. The alias looks like

Re: Getting a project deployed

2007-04-18 Thread John Calsbeek
On 4/18/07, Rashmi Rubdi [EMAIL PROTECTED] wrote: That's it, you can then start Tomcat with startup.sh and access it at http://localhost:8080/ by default, and remember to shut it down with shutdown.sh and not CtrlC Then, to see a simple JSP application, create a new folder under Tomcat's

Re: Getting a project deployed

2007-04-18 Thread John Calsbeek
On 4/18/07, Rashmi Rubdi [EMAIL PROTECTED] wrote: I personally haven't worked with mod_jk , I'm sure there's someone on this list who could help you with mod_jk config. A lot of info is available in the docs also: http://tomcat.apache.org/connectors-doc/index.html But simply running JSPs

Getting a project deployed

2007-04-17 Thread John Calsbeek
I'm trying to manually deploy a JSP website that I didn't make on a web server that I didn't set up, so I'm kind of in strange territory here (first time using Tomcat). Here's what I have/know: Linux webserver using Apache 2 and Tomcat 5, mod_jk. Tomcat is working—the default base URL of

Re: Getting a project deployed

2007-04-17 Thread John Calsbeek
If I was in this situation, I would first try to run a webapp with a JSP on a standalone Tomcat (independent of any IDEs) and without mod_jk. The simple setup eliminates a lot of confusion :-) I've never done this before. I haven't the first idea how to go about that. :)