Virtual Host to Redirect

2003-11-18 Thread Boemio, Neil \(GEI, FGI\)
I have a sever with 2 IPs. One of the IPs (say 1.2.3.4) is going to be used as a redirector to point all our domains to one main domain. Example: Typing in another.name.com will send the browser to my.main.com another.name.com/somepage.jsp will send the browser to my.main.com

RE: Virtual Host to Redirect

2003-11-18 Thread Boemio, Neil \(GEI, FGI\)
of Connect Daily Web Calendar Software http://www.mhsoftware.com/connectdaily.htm Voice: 303 438 9585 -Original Message- From: Boemio, Neil (GEI, FGI) [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 2003 6:26 PM To: Tomcat Users List Subject: Virtual Host to Redirect I have

RE: Set Tomcat to show deprecation warnings

2003-10-15 Thread Boemio, Neil (GEI, FGI)
JspC to precompile your JSPs, then run them through javac -deprecation, and look at the warnings. This can be done completely offline in Ant. You can even fail the build if there are any warnings. Yoav Shapira Millennium ChemInformatics -Original Message- From: Boemio, Neil (GEI, FGI

Set Tomcat to show deprecation warnings

2003-10-14 Thread Boemio, Neil (GEI, FGI)
When I hit a JSP page and there are errors, Tomcat shows a page with all the errors. If there are no errors, but there are deprecated methods being used, Tomcat does not show this. Is there a way I can set it up so that deprecation warnings are shown when I hit a JSP page? Thanks, Neil

RE: preventing directory listings

2003-10-06 Thread Boemio, Neil (GEI, FGI)
In the web.xml under the conf directory, change the listings parameter to false for the default servlet. This is for 4.1.27, don't know if the same applies to 3.3.1a servlet servlet-namedefault/servlet-name servlet-class org.apache.catalina.servlets.DefaultServlet

Apache Authentication with Tomcat

2003-09-30 Thread Boemio, Neil (GEI, FGI)
I'm trying to protect a /downloads url in apache. My webapp in Tomcat is in ROOT. So in the workers2.properties file under apache, I have: # Map the webapp to the Web server uri space [uri:/*] info=my website So my app is working fine requests for /* are passed to Tomcat and things are

RE: Apache Authentication with Tomcat

2003-09-30 Thread Boemio, Neil (GEI, FGI)
, Morgan -Original Message- From: Boemio, Neil (GEI, FGI) [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2003 17:17 To: [EMAIL PROTECTED] Subject: Apache Authentication with Tomcat I'm trying to protect a /downloads url in apache. My webapp in Tomcat is in ROOT. So

RE: Apache Authentication with Tomcat

2003-09-30 Thread Boemio, Neil (GEI, FGI)
=2 -Original Message- From: Boemio, Neil (GEI, FGI) [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2003 11:59 AM To: Tomcat Users List Subject: RE: Apache Authentication with Tomcat Excellent! This did the trick. Thanks! Now I get prompted and I can login but for some

Full Package Names??

2003-09-29 Thread Boemio, Neil (GEI, FGI)
I'm just starting to use Tomcat (4.1.27) and I'm trying to get my existing app to work. It worked fine with JRun, but it seems that Tomcat requires that I specify the full package name for a class whenever I use it?? Is this true? For example, I get, cannot resolve symbol for the following:

RE: Full Package Names??

2003-09-29 Thread Boemio, Neil (GEI, FGI)
Utility(); If so, I don't think that import is doing what you hope for. I think: import com.fgic.Utility; would work better. Larry -Original Message- From: Boemio, Neil (GEI, FGI) [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2003 12:16 PM To: [EMAIL PROTECTED] Subject

RE: Full Package Names??

2003-09-29 Thread Boemio, Neil (GEI, FGI)
OK. Looks like I had some weird stuff going on. This seems to work now. But I was messing around with the OS classpath (in order to compile some other stuff) and it seems this works now when it didn't before. But I was under the impression that Tomcat does not use the OS's classpath