Virtual Hosting with Appache/Tomcat

2002-04-13 Thread Huang Hai - ES/BJ
Dear Sir, Stupid question from me, I am using Apache 1.3.20 and Tomcat 3.2.3. It can work without virtual hosting or just apache virtual hosting.( I am using same IP, different port), but I can not config Tomcat hosting. Please note my application is not put under TOMCAT_HOME/webapps, but

Tomcat:Port 8080 or 8007?

2002-04-13 Thread Layer111
I installed Tomcat 3.3.1 on win 98.There is no problem on running it.Writing http:localhost:8080 returns nothing.But using port 8007 keeps on loading for long and then shows 'the page cannot be displayed' page.It also cannot connect to my simple jsp page.Is this the problem of using proper

Static conent and WARP connector

2002-04-13 Thread Sebastian Pyszkowski
Hi, I am having a problem with serving static content of my webapp. I am using Tomcat 4.0.3 together with Apache 1.3.22 and WARP connector. In my environment I need multiple instances of Tomcat and thus I am setting CATALINA_BASE variable before starting Tomcat. This however seems to be

JSP/JDBC/POSTGRESQL

2002-04-13 Thread Dave Anders
I'm trying to access my new PostgreSQL database using Tomcat 4.0.3 and JDBC. I'm receiving an Internal Server Error. exception : javax.servlet.ServletException: WEB-INF/lib/jdbc7.1-1.2.jar/org/postgresql/Driver root cause : java.lang.ClassNotFoundException:

javax.servlet.ServletException: InvocationTargetException: javax.security.cert.CertificateException: X.509 not found

2002-04-13 Thread Jordan C N Chong
Dear all, I am using Tomcat 4.0, Maverick 2.0, IAIK JCE 3.0 signed version and also SunJCE. I wish to make a servlet that read in an X509 certificate, and extracting the information from the certificate by the following procedures: FileInputStream certin = new FileInputStream(example.crt);

Re: Unable to locate classes not in package

2002-04-13 Thread hatem zanaty
Include the .; in the classpath environment variable then restart and try again Patricia Doyle [EMAIL PROTECTED] wrote: Tomcat is unable to locate the class files which are not part of any package. It can find the other classes which are placed with these classes and are in a package. Does

RE: IIS configuraion with tomcat

2002-04-13 Thread Kareem Gad
Just to followup on this email ... i can't see my application's root from IIS that is it is deployed correctly at the startup of tomcat and if i call the application from the tomcat port it is seen .. but from IIS it is not .. unlike with examples .. it's seen directly. hope to hear from you

Building mod_webapp from sources with Apache 2

2002-04-13 Thread Fredrik Westermarck
Hi! I have been browsing around all of the Jakarta-site (including the CVS) for instructions on how to build mod_webapp (jakarta-tomcat-connectors-4.0.2-01) from source with Apache 2.0.x. All of the documentation I have found so far only covers how to build mod_webapp with Apache 1.3.x. Are

IIS configuraion with tomcat

2002-04-13 Thread Kareem Gad
Dear Sir/Madam, I know my question would sound a little lame because i'm sure this issue has been addressed a million times before I onlycame to use tomcat just recently .. i have been using Orion Application server for development for like over a year now so i am experienced with webservers.

Re: JSP/JDBC/POSTGRESQL

2002-04-13 Thread Jeffrey Bonevich
Dave Anders wrote: I'm trying to access my new PostgreSQL database using Tomcat 4.0.3 and JDBC. I'm receiving an Internal Server Error. exception : javax.servlet.ServletException: WEB-INF/lib/jdbc7.1-1.2.jar/org/postgresql/Driver root cause : java.lang.ClassNotFoundException:

Re: Tomcat:Port 8080 or 8007?

2002-04-13 Thread Ken Anderson
If you have all the examples installed, and tomcat is starting okay, you should see content at http://localhost:8080 The apj12 connector (and port 8007) is for apache; you can ignore it, unless you are running tomcat with apache You need full jsdk to run jsp, not just jre. Ken [EMAIL

[Coyote] Coyote 1.0 Beta 7 available

2002-04-13 Thread Remy Maucherat
Coyote 1.0 Beta 7 is now available, and includes: - HTTP/1.1 protocol handler - JK 2 protocol handler, with support for the AJP 1.4 protocol - An adapter for Tomcat 3.3.x - An adapter for Tomcat 4.x Changes over Beta 5 include: - Protocol abstraction. - Support for the AJP 1.4 protocol.

Re: JSP/JDBC/POSTGRESQL

2002-04-13 Thread Dave Anders
Dave Anders wrote: I'm trying to access my new PostgreSQL database using Tomcat 4.0.3 and JDBC. I'm receiving an Internal Server Error. exception : javax.servlet.ServletException: WEB-INF/lib/jdbc7.1-1.2.jar/org/postgresql/Driver root cause :

Re: Tomcat:Port 8080 or 8007?

2002-04-13 Thread devel
[EMAIL PROTECTED] wrote: I installed Tomcat 3.3.1 on win 98.There is no problem on running it.Writing http:localhost:8080 returns nothing. Not to nitpick but did you try http://localhost:8080? snip P.

Re: How many SSL certificates are needed for Tomcat with IIS?

2002-04-13 Thread Hugh Brien
What was the error? Did you search for the error code to see if anyone had the same problem? Certs are based on 509 however there are extensions that different vendors support. r, Hugh - Original Message - From: Hawkins, Keith (Keith) [EMAIL PROTECTED] To: tomcat-user [EMAIL PROTECTED]

Re: IIS and Tomcat 4.0

2002-04-13 Thread Hugh Brien
I am running basically the same setup and I don't have this problem. It may be a database connection getting stale. Check out the lifetime of an Oracle connection or check the settings on your connection pool r, Hugh - Original Message - From: Tore Skogly [EMAIL PROTECTED] To: [EMAIL

Re: JSP/JDBC/POSTGRESQL

2002-04-13 Thread Hugh Brien
if you are using Tomcat's connection pool you may have to include the jar in the classpath in the catalina.bat(.sh) script. Try to add your driver to this line in the catalina.bat file set CLASSPATH=%CLASSPATH%;%CATALINA_HOME%\bin\bootstrap.jar; this solved a problem I was having with JDBC

Session Tacking across hostnames?

2002-04-13 Thread Neil Aggarwal
Hello: I am using Apache 1.3 and Tomcat 4.0.3. For an application we are building, we are using a shared SSL certificate so the hostname has to be different for http and https. For example, public pages are loaded from http://www.futurescope.com/fscope/myPage.jsp and private pages are loaded

Re: Session Tacking across hostnames?

2002-04-13 Thread Aditya
Hi Neil, cookies are bound to the server name, so you can't use cookies (the default method with Tomcat) to track sessions. If you are not doing form-based realm authentication, you can use URL rewriting to track the session by setting: cookies=false for the contexts you are serving (you could

RE: Session Tacking across hostnames?

2002-04-13 Thread Neil Aggarwal
Adi: I tried this, but the problem is that the session id is not encoded into URLs that are not on the same hostname. Neil. -- Neil Aggarwal JAMM Consulting, Inc.(972) 612-6056, http://www.JAMMConsulting.com Custom Internet DevelopmentWebsites, Ecommerce, Java, databases

Re: Re: Tomcat:Port 8080 or 8007?

2002-04-13 Thread Layer111
Yes I tried with http://localhost:8080 and 8007.But nothing comes out. -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

IIS 5.0 + TC 4.0.3

2002-04-13 Thread Tomcat Huang
Hi, I setup the isapi_redirector.dll, got the green arror on IIS 5.0. Tomcat 4.0.3 itself is running fine (from port 8080). But if I access a jsp through IIS, I got this Apache Tomcat/4.0.3 - HTTP Status 404 - /jakarta/isapi_redirector.dll - type Status