N00b Installation Question

2008-04-02 Thread Lizard Lizard
Greetings! I am trying to setup/configure Tomcat 6.0 under Vista. I am mostly following the examples in the Eclipse Cookbook. Tomcat is running; I get the appropriate startup page when I go to localhost:8080 However, I cannot get my first example to work properly. Here's all of the relevant

Re: N00b Installation Question

2008-04-02 Thread David Smith
I'll give you a hint ... case matters. Take a really close look at what you've setup in your web.xml and what you've named your servlet. extenXLSTestbed != ExtenXLSTestbed. --David Lizard Lizard wrote: Greetings! I am trying to setup/configure Tomcat 6.0 under Vista. I am mostly following

RE: N00b Installation Question

2008-04-02 Thread Caldarale, Charles R
From: Lizard Lizard [mailto:[EMAIL PROTECTED] Subject: N00b Installation Question The class is in package ExtenXLSTestbed. servlet-classextenXLSTestbed.ServletClass/servlet-class Case matters. I have tried several variants on the URL, including http://localhost:8080

Re: N00b Installation Question

2008-04-02 Thread Lizard Lizard
On Wed, Apr 2, 2008 at 12:06 PM, David Smith [EMAIL PROTECTED] wrote: I'll give you a hint ... case matters. Take a really close look at what you've setup in your web.xml and what you've named your servlet. extenXLSTestbed != ExtenXLSTestbed. Gack. I kept looking for case errors -- I know it

Re: N00b Installation Question

2008-04-02 Thread Lizard Lizard
On Wed, Apr 2, 2008 at 12:06 PM, David Smith [EMAIL PROTECTED] wrote: I'll give you a hint ... case matters. Take a really close look at what you've setup in your web.xml and what you've named your servlet. extenXLSTestbed != ExtenXLSTestbed. I double-checked; the typo was in my post to this

Re: N00b Installation Question

2008-04-02 Thread Lizard Lizard
I have solved the problem. Norton was blocking connections. :) Looking at the logs helped. Thanks for that suggestion. I have unblocked it in Norton. Now I need to research the security issues more; I do not want a public server, I want it to only accept connections from localhost. Are there

Re: N00b Installation Question

2008-04-02 Thread David Smith
In that case, you'll have to take a look at your logs for clues to what's happening. Can you post relevant parts of your logs for when your webapp was started and when you tried to request the servlet? --David Lizard Lizard wrote: On Wed, Apr 2, 2008 at 12:06 PM, David Smith [EMAIL

RE: N00b Installation Question

2008-04-02 Thread Caldarale, Charles R
From: Lizard Lizard [mailto:[EMAIL PROTECTED] Subject: Re: N00b Installation Question I do not want a public server, I want it to only accept connections from localhost. RTFM: http://tomcat.apache.org/tomcat-6.0-doc/config/http.html Set the address attribute of whatever Connector elements

Re: N00b Installation Question

2008-04-02 Thread Lizard Lizard
On Wed, Apr 2, 2008 at 1:10 PM, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Lizard Lizard [mailto:[EMAIL PROTECTED] Subject: Re: N00b Installation Question I do not want a public server, I want it to only accept connections from localhost. RTFM: http://tomcat.apache.org