Re: *.properties files

2001-08-01 Thread Jim Cheesman
At 10:56 PM 31/07/01, you wrote: Where does tomcat expect to find the *.properties files. I've got a class that fails with it's ResourceBundle call to a properties file. I've tried it in the WEB-INF and WEB-INF/classes directories for the specific web app. In tomcat 4.0b6 on Win2000 I'm

RE: Oracle JDBCRealm

2001-08-01 Thread Ignacio J. Ortega
The first problem : You need to add your JDBC jars to the wrapper.properties file serach for the place where the classpath of the JVM is constructed and add your jar there.. Second Problem: Is known bug of 3.2.2 VErsion of JDBCRealm go for 3.2.3 AFAIK it corrected in that version.., but has

RE: please help

2001-08-01 Thread HGhoreishi
Hi everybody In my servlet i have import statement as follow. import com.oreilly.servlet.RemoteDaemonHttpServlet; downloaded unzipped the jar file from http://www.servlets.com/con/index.html in to c:\hhgg in my servlet i am using import statement as follow import

Context isolation

2001-08-01 Thread Sankaranarayanan Ganapathy
Hi All, I see that when you run tomcat in a out of procee mode you can do things like context isolation (i.e running contexts in a different VMs) etc. Is it possible to do such things when tomcat is run in stand alone mode? Thanx Ganesh

Need help with isapi_redirect.dll on W2KSP2/IIS5

2001-08-01 Thread Pedro R. Jimenez
I've tried everything I could think of. I followed the directions to the letter, but I couldn't get that little green arrow pointing up in the ISAPI filters tab in the web site properties in the inetmgr.exe. I then tried building Tomcat. Then I tried building the isapi_redirect. The .dsp and

Re: Tomcat 4 / Apache connecter (Was: Tomcat 4.0 stability, etc.)

2001-08-01 Thread chris brown
I'd like to move over to Tomcat 4, but I'm waiting for two things to become available: 1. Apache webapp connecter 2. Possibility to run Tomcat as an NT Service As I understand it, Pier might be able to give an idea of when this connector will be stable (shouldn't have anything to do with

Beyond Tomcat 4..?

2001-08-01 Thread chris brown
Just wondering what's being planned for the future of Tomcat beyond the 4.0 release (if anyone knows...). For example, are there plans to make a release that uses JDK 1.4's scalable I/O features? (as both products are currently in beta, I imagine that could be some way off!) - Original

RE: Need help with isapi_redirect.dll on W2KSP2/IIS5

2001-08-01 Thread Navarro, Jose
Pedro, I know, this my seem rather stupid, but I solved this problem removing the ajp13 connector from the workers.list line in TOMCAT_HOME/conf/workers.properties. That is, the original file you get includes a line like this: worker.list=ajp12, ajp13 Just remove , ajp13 I did some other

RE: Installing Tomcat on HPUX (Problem #1)

2001-08-01 Thread Michael Weissenbacher
because tomcat is written in java, you don't have to recompile it. so why are you bothering with that? just start it with bin/startup.sh! -Original Message- From: mysql fan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 10:25 AM To: [EMAIL PROTECTED] Subject: Installing

Re: Installing Tomcat on HPUX (Problem #1)

2001-08-01 Thread [EMAIL PROTECTED]
SOLVED. Adding: CLASSPATH=/opt/java/lib/classes.zip - This mail was sent through Eoffice: http://www.eoffice.dk

UnsatisfiedLinkError : ocijdbc8 in shared Library path.

2001-08-01 Thread Mehul S Dave
ello i am getting this unsatisfied error whenever i use servlet in my servlet i am using JDBC for connecting to Oracle. i need to know the solution for this please do let me know . Also do i need to know the JDBC re-alm set-up in Tomcat

Who should use JDBC realm

2001-08-01 Thread Mehul S Dave
Hi I wanna know about JDBC realm. Who should use it Y. Please let me know Thanks. * Mehul S Dave Scientific Officer, (STCS Dept.), Tata Institute of Fundamental Research Phone - 2152971 Extn - 2372 Mumbai . webpage:-

RE: Servlets

2001-08-01 Thread Andrew Inggs
I tried as suggested to run servlets fronm the test directory . I have inserted the follwoing lines in web.xml of the test/web-inf/ directory servlet servlet-name Courses /servlet-name servlet-class Courses /servlet-class

RE: please help

2001-08-01 Thread Emir Alikadic (ADNOC IST)
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 11:11 AM To: [EMAIL PROTECTED] Subject: RE: please help Hi everybody In my servlet i have import statement as follow. import

RE: IIS - HTTPS - Tomcat

2001-08-01 Thread zze-messager FTM balr002
Hello, I'm working with Tomcat and IIS using the redirector ispi_redirect.dll (worker used = ajp12). (Windows 2000 server) It's works very well for the requests in HTTP. Now, I need to securise the site with HTTPS. How can I do ? May I use the ajp13 worker ? In this case, how to declare it in

packaged (jar) servlets

2001-08-01 Thread Sahin Türeyenler
Hi, i'm running tomcat 3.2.3 as a standalone server on Win 2K OS. i have some trouble in deploying packaged (.jar) servlet's. there's no problem by running the examples can anyone outline me the necessary steps/configurations to run packaged servlets. please help ;-) Thanx in advance Sahin

RE: Query

2001-08-01 Thread Loïc Lefèvre
Of course, try: http://jakarta.apache.org/tomcat/tomcat-3.2-doc/tomcat-apache-howto.html and the links too ;) Loïc Lefèvre -Message d'origine- De : Al Hatf [mailto:[EMAIL PROTECTED]] Envoyé : mercredi 1 août 2001 12:34 À : [EMAIL PROTECTED] Objet : Query Hey There, Can u direct me

making URL of html pages published in tomcat case insensitive

2001-08-01 Thread Sibi Joseph
hi all I would like to know how i could make the url of html pages published in tomcat case insensitive.. ie i want http://myhome:8080/page/index.html and http://myhome:8080/page/INDEX.HTML to point so the same page.. Pls note i use tomcat 3.1 on win 2000 Thanking you in advance sibi

RE: PROBLEM with...

2001-08-01 Thread Loïc Lefèvre
Hem sorry, I should have say more: When the server receive the log request, a session is created (with true) and a redirection is made to an other page, in this page, the following code is executed: HttpSession session = req.getSession(false); and it return null :( So now I can ask: WHY?

Re: making URL of html pages published in tomcat case insensitive

2001-08-01 Thread Hari
From the Tomcat readme file: 6.6 URL's are now case sensitive on all operating systems As of Tomcat 3.2, URL's are case sensitive for all operating systems, including operating systems which have case insensitive file systems, such as Windows. This represents a change from

RE: Strange bug - XSLT filter on Tomcat 4.0 b6

2001-08-01 Thread HEBBRON,TOM (HP-UnitedKingdom,ex2)
Also, to follow up - there is another filter, this time from IBM devworks - could someone please try this and tell me I'm not going mad - there is a bug here? Code from http://www-106.ibm.com/developerworks/library/j-tomcat/index.html Ok - so set up the filter (DO NOT USE THE IE FILTER - this

Re: PROBLEM with...

2001-08-01 Thread Ludovic Maitre
Loïc Lefèvre wrote: Hem sorry, I should have say more: When the server receive the log request, a session is created (with true) and a redirection is made to an other page, in this page, the following code is executed: HttpSession session = req.getSession(false); and it return null

RE: Who should use JDBC realm

2001-08-01 Thread Michael Wentzel
Hi I wanna know about JDBC realm. Who should use it Y. Please let me know Thanks. JDBCRealm is a method for securing you webapp. In my opinion two of the guidelines for choosing to go with a JDBCRealm is if you want a security system which is fully portable to any OS and

RE: Tomcat-IIS

2001-08-01 Thread Randy Layman
Even without your actual entries, I can tell you that your problem is probably due to you adding the filter to the wrong IIS instance or that you don't have your uriworkermap.properites set up correctly. For the first one, the filter only works on the server that you add the

RE: build mod_jk.so on solaris

2001-08-01 Thread Andrew Inggs
Robert Parker wrote: Im trying to build mod_jk.so on solaris. Ive dowloaded the source 3.2.3 and tried using the following command... $APACHE_HOME/bin/apxs -o mod_jk.so -DSOLARIS -I../jk -I/usr/java/include -I/usr/java/include/solaris -c *.c ../jk/*.c This worked for me (note

Apache / Tomcat v3.3b1

2001-08-01 Thread Mark Muffett
I've just moved from Tomcat v3.3m4 to v3.3b1. It's clear that there are some (a lot) changes in the auto-generated mod-jk.conf. The setup before worked fine, but I can't get Apache to redirect to Tomcat for the new release, regardless of whether I use the old or new autogenerated files. Any

Re: PROBLEM with...

2001-08-01 Thread Dmitri Colebatch
Hi, On Wed, 1 Aug 2001, Ludovic Maitre wrote: HttpSession session = req.getSession(false); That will _always_ return true, unless some time before its call there has been a call: HttpSession session = req.getSession(true); This is how you create a session. You mention logging, I'm not

RE: PROBLEM with...

2001-08-01 Thread Loïc Lefèvre
Hemm, look at the last answer to this question ;) -Message d'origine- De : Dmitri Colebatch [mailto:[EMAIL PROTECTED]] Envoyé : mercredi 1 août 2001 14:28 À : [EMAIL PROTECTED] Objet : Re: PROBLEM with... Hi, On Wed, 1 Aug 2001, Ludovic Maitre wrote: HttpSession session =

tomcat 3.3b1 performance

2001-08-01 Thread Aaron Cooper
Hello I am using tomcat 3.3b1 .. Despite the fact that i have precompiled my JSP pages and have appended ?jsp_compile=true to my URLs, I am still experiencing about a minute of lag time before the page loads. This is quite annoying, considering when using an earlier version ( tomcat 3.1)

Windows Versus Linux

2001-08-01 Thread Chad Wray
I am new to the mailing list, so sorry if this question has been asked before. I have been doing most my development on a Windows 98 box and setting up Apache, Tomcat and Mysql was a snap, but I am trying to setup a Linux server and it has been a pain so far. I know my way around the Linux

Re: 403: forbidden error

2001-08-01 Thread David Smith
I know I've responded to this before without being much help, but I'm willing to volunteer hopefully a more constructive answer this time. I have Cocoon running successfully after doing a lot of hunting on the web for answers to different problems (and one or two hacks). Could you post the

Re: Windows Versus Linux

2001-08-01 Thread Jacek Prucia
[...] I was wondering if there is any big benefit to running Apache, Tomcat and Mysql on Linux over Windows NT server. If you are running Apache 1.3.x on WindowsNT then yes. Apache 1.3.x on Linux (and Unix systems) is *much* more faster and stable than on any Windows platform. Things will

RE: Windows Versus Linux

2001-08-01 Thread Michael Wentzel
I am new to the mailing list, so sorry if this question has been asked before. I have been doing most my development on a Windows 98 box and setting up Apache, Tomcat and Mysql was a snap, but I am trying to setup a Linux server and it has been a pain so far. I know my way around the

Re: Windows Versus Linux

2001-08-01 Thread Falk
hello, what do I have to do in order to prevent tomcat 3.2 from serving certain file types. For example I don't want tomcat to serve files ending with .pwd Instead tomcat should send an error message. Thanks a lot Falk

[X-server simulator] image resize

2001-08-01 Thread SongDongsheng
Where can I download X-server simulator ? And If I use XFree86,I have to login X-server for add host names to the list allowed to make connections to the X server, is there somingthing simple method ? Thanks You can do this the the Java Advanced Imaging library. Beware though when running

Connector for IIS Tomcat 4?

2001-08-01 Thread hische
Hi, Does anybody know whether the Tomcat redirector plugin for IIS will work with Tomcat 4.X as well? If so are there any special configuration options i have to consider? Thanks, Wilko Hische

Re: Running Tomcat stanalone without the port number?

2001-08-01 Thread BillWorker 2i Development Team
If you are doing this on Linux. You will need to run tomcat as root as only root is allowed to use ports below 1024. I generally prefer to run Tomcat as nobody. -- BillWorker 2i Development Team, Infocom Solutions Pvt. Ltd.

How to send a XML Document with a request POST ?

2001-08-01 Thread zze-messager FTM balr002
How to send a XML Document with a request POST ? Delphine

Http and Https for the same servlet ?

2001-08-01 Thread zze-messager FTM balr002
Is it possible for one servlet to receive some HTTP request and some HTTPS requests ? Delphine

Re: Application Scope

2001-08-01 Thread BillWorker 2i Development Team
Hi Beans are created only if it does not already exist. So declaring does not recreate it. It only references the bean with the same id. Ashish Shrestha http://headlines.sourceforge.net

Can anyone send me mod_jk.so for Redhat 7.0 / Apache 1.3.14? / Tomcat 3.2.1

2001-08-01 Thread Navarro, Jose
Hi, I've been trying to install Tomcat 3.2.1 in a Redhat 7.0 box running Apache 1.3.14 for a few days. As many people report in many cases, Tomcat works nice standalone (as well as Apache) but cannot integrate them to work together. Well, this is not exactly true; the apache's logs say that

SLOW response time

2001-08-01 Thread Brandon Cruz
I have a setup with Apache 1.3.x, tomcat 3.2.1. On some random occasions, the response times will be veeerrryyy slow. So slow that it takes almost two minutes before the pages will even switch. Does anyone know what may be causing this, or has anyone had a similar experience? Any info would

Re: Apache / Tomcat v3.3b1

2001-08-01 Thread Curtis Polk
I had a quirky problem like this running on Netware. I saved my server.xml and mod_jk.conf, and blew it away. When I reinstalled, I copied back my server.xml and mod_jk.conf. Then, in the Apache httpd.conf, my include line was /modules/mod_jk.conf, which correctly pointed to mod_jk.nlm, not

The server startup failed

2001-08-01 Thread Rene Berger
Hi your description to install a NT-service to startup the tomcat webserver doesn' t work. I'm using jakarta-tomcat-3.2.3 and jdk1.3 with WinNT4 SP6. The startup fails with error 2140. What can I do? René

Problems when connecting JSP and Oracle

2001-08-01 Thread [EMAIL PROTECTED]
Hi! I am trying to publish this page: // html body %@ page import=java.sql.* % % String url = jdbc:pool:oracle:thin:@localhost:1521:MY_DB; String username=user_xx; String password=xxx; Connection conn = DriverManager.getConnection(url, username, password); Statement

RE: The server startup failed

2001-08-01 Thread Jockel, Jeff
your tomcat may not be starting because your NT is set to NOT read DOS 8.3. There is registry setting that can disable the NT box from reading DO8.3 names. The mappings in your wrapper.properties are short form (with ~) Heres the problem: the service set up can only read 8.3, NT can only read

RE: Can anyone send me mod_jk.so for Redhat 7.0 / Apache 1.3.14? / To mcat 3.2.1

2001-08-01 Thread Jan Labanowski
On Wed, 1 Aug 2001, Navarro, Jose wrote: Jan, first of all, thanks for your quick help. And my congratulations for your page! No, I hadn't checked it. Now I've read the relevant parts. In one of the documents you've got there I have found a link to jakarta.apache.org... but it's dead.

RE: Problems when connecting JSP and Oracle

2001-08-01 Thread Cory Powers
enclose the username and password variables in quotes String username=user_xx; String password=xxx; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 11:24 AM To: [EMAIL PROTECTED] Subject: Problems when connecting JSP and Oracle

Re: Problems when connecting JSP and Oracle

2001-08-01 Thread Pier P. Fumagalli
[EMAIL PROTECTED] at [EMAIL PROTECTED] wrote: Hi! I am trying to publish this page: // html body %@ page import=java.sql.* % % String url = jdbc:pool:oracle:thin:@localhost:1521:MY_DB; String username=user_xx; String password=xxx; Connection conn =

Re: Problems when connecting JSP and Oracle

2001-08-01 Thread Luis Olivares
When using Strings you must enclose the value with double quotes (). Something like this: String username=user_xx; String password=xxx; In the code you shown, what you are doing is trying to assign the value of a Variable called user_xx to username, not the word user_xx. - Original

apxs:Break: Command failed with rc=16777215

2001-08-01 Thread Mickael Guillet
apxs:Break: Command failed with rc=16777215 Has anyone a solution to this problem? Any help would be greatly appreciated ! Regards, Am using: Red Hat Linux release 7.1 Kernel 2.4.2-2 i586 apache-1.3.19 jdk1.3.1 tomcat3.2.3 /usr/local/apache/bin/apxs -c -o mod_jserv.so *.c gcc

Problems when connecting JSP and Oracle

2001-08-01 Thread [EMAIL PROTECTED]
Hi! Thank you, Cory. I've got another problem after enclosing the variables in quotes: ---//- Internal Servlet Error: javax.servlet.ServletException: No suitable driver at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageCont

BUGjsessionid/BUG

2001-08-01 Thread Loïc Lefèvre
Hemm, -1- Did you encounter problems using Session under Tomcat? -2- If yes, did you resolve it? -3- If yes, how? -4- What should I do when using Session? -5- What should I take care of? -6- ... Configuration: - Apache 1.3.12 - Tomcat 3.2.3 - mod_jk.so 1.24 I'm very very confused about

Re: making URL of html pages published in tomcat case insensitive

2001-08-01 Thread Sibi Joseph
Hi hari Thank you very much. that was really helpful.. reagards sibi - Original Message - From: Hari [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 01, 2001 4:37 PM Subject: Re: making URL of html pages published in tomcat case insensitive From the Tomcat

RE: tomcat 3.3b1 performance

2001-08-01 Thread Aaron Cooper
Hi Yes , on first access. After precompiling my JSPs, there is still lag time when I first access the page. However, whenever I make changes to my JSP page and recompile it, the lag time is still there. Have you experienced something similar? Cheers Aaron Ignacio J. Ortega [EMAIL

No suitable driver

2001-08-01 Thread [EMAIL PROTECTED]
Hi! Thank you, Cory. I've got another problem after enclosing the variables in quotes: ---//- Internal Servlet Error: javax.servlet.ServletException: No suitable driver at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageCont

charector encoding Problem while running servlet in tomcat

2001-08-01 Thread Sibi Joseph
hi all I have a servlet which outputs some chinese content to the browser. The webserver i used is Tomcat3.2.3. if i try browsing chinese sites with chinese char encoding on a english version of windows 2000 the pages comes well without specifying any encoding. When i used the same servlet

Re: How to send a XML Document with a request POST ?

2001-08-01 Thread Nils O. Selåsdal
On Wednesday 01 August 2001 03:05 pm, zze-messager FTM balr002 wrote: How to send a XML Document with a request POST ? If you use Xerces, you can use the org.apache.xml.serialize.Serializer class and simply serialize it to the outputstream you get. (e.g. request.getOutputStream() in a servlet)

Re: How to send a XML Document with a request POST ?

2001-08-01 Thread German Alvarado
Read this http://forums.java.sun.com/thread.jsp?forum=45thread=79142 Good luck, German - Original Message - From: zze-messager FTM balr002 [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 01, 2001 9:05 AM Subject: How to send a XML Document with a request POST ? How

RE: No suitable driver

2001-08-01 Thread Randy Layman
Option 1: Search the mailing list archives and discover that this is an EXTREMELY common question. The benefit of this is that you don't have to put up with people like me telling you to go look at a place you should have thought to look before you sent your question. Option

Default Servlet prevents loading of static resources.

2001-08-01 Thread Miles Daffin
Hi There TC Peeps, I have added a default servlet to a little test webapp (servlet-mapping//servlet-mapping). After I did this I can no longer access static resources (html, images etc.) in the app. All requests, apart from those to other (mapped) servlets are picked up by the default.

Tomcat breaking down on HP-UX

2001-08-01 Thread Brugge, John
We're trying to run Tomcat on HP-UX v11.00, and it will silently and mysteriously die at times, in circumstances that we can't reproduce reliably. I saw a message here from January where someone had a similar experience, but I didn't see any followup on it.

HTTP 404 Error

2001-08-01 Thread Jeff Rancier
Hello, I'm stumped. I have the following directory structure/files: c:/tomcat/webapps/ServletTest/WEB-INF/web.xml c:/tomcat/webapps/ServletTest/WEB-INF/classes/ServletTest.class I added the following to my server.xml file: Context path=/ServletTest docBase=webapps/ServletTest

Loadbalancing and logs

2001-08-01 Thread Maureen Fisher
Hi -- I have set up loadblancing btwn 2 machines. I have their lbfactor both set to 1. If I pound on the same servlet with about 4 windows open, I can see I am hitting both machines, but every once in a while the browser returns Document contains no data errors. Does the lb'ing get written to

RE: HTTP 404 Error

2001-08-01 Thread Michael Wentzel
I'm stumped. I have the following directory structure/files: c:/tomcat/webapps/ServletTest/WEB-INF/web.xml c:/tomcat/webapps/ServletTest/WEB-INF/classes/ServletTest.class I added the following to my server.xml file: Context path=/ServletTest docBase=webapps/ServletTest

RE: HTTP 404 Error

2001-08-01 Thread William Kaufman
1) Tomcat, by default, connects on port 8080. If you want to change that, edit your server.xml. 2) It sounds like your HTML is malformed or empty. Use the View source menu in the browser to see what you're spitting out. -- Bill K. -Original

RE: HTTP 404 Error

2001-08-01 Thread Jeff Rancier
Thanks. I got it. I forgot to mention I was running with IIS 5.0. The addition of the following: /ServletTest/*=ajp12 to my uriworkermap.properties file did the trick. Jeff -Original Message- From: Michael Wentzel [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 12:46 PM

Internal error thrown by tomcat

2001-08-01 Thread Cox, Charlie
I am running TC 3.2.1 w/IIS5 on Win2k SP2 I have a request that causes tomcat to throw the following error: java.lang.NumberFormatException: 3569 at java.lang.Integer.parseInt(Integer.java, Compiled Code) at java.lang.Integer.parseInt(Integer.java, Compiled Code) at

Tomcat3.2.1 SSL

2001-08-01 Thread Sankaranarayanan Ganapathy
Hi All, Does tomcat3.2.1 support SSL? Also does running tomcat in ssl mode just involve changing the configuration files or is there a seperate binary? Thanx Ganesh

Re: Tomcat 4.05b - recompile required for SSL?

2001-08-01 Thread Craig R. McClanahan
On 31 Jul 2001, Lloyd Llewellyn wrote: It is drop-in in the sense that any app that works under b5 should work unchanged under b6. However, I would never ever ever ever :-) try to install Tomcat or any other package on top of an existing directory containing a different version.

RE: Tomcat3.2.1 SSL

2001-08-01 Thread Randy Layman
It does. See your server.xml for directions on how to configure your existing server for SSL. (I did it today in under 10 minutes with a self-signed certificate.) Randy -Original Message- From: Sankaranarayanan Ganapathy [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

Re: *.properties files

2001-08-01 Thread Craig R. McClanahan
On Wed, 1 Aug 2001, Jim Cheesman wrote: At 10:56 PM 31/07/01, you wrote: Where does tomcat expect to find the *.properties files. I've got a class that fails with it's ResourceBundle call to a properties file. I've tried it in the WEB-INF and WEB-INF/classes directories for the

Re: Beyond Tomcat 4..?

2001-08-01 Thread Craig R. McClanahan
On Wed, 1 Aug 2001, chris brown wrote: Just wondering what's being planned for the future of Tomcat beyond the 4.0 release (if anyone knows...). For example, are there plans to make a release that uses JDK 1.4's scalable I/O features? (as both products are currently in beta, I imagine

RE: Beyond Tomcat 4..?

2001-08-01 Thread Curtis Dougherty
YES... integration with IIS5 and Win2K... Documentation for same... :P -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 1:18 PM To: [EMAIL PROTECTED] Subject: Re: Beyond Tomcat 4..? On Wed, 1 Aug 2001, chris brown wrote:

Tomcat and Apache, very newbie question !

2001-08-01 Thread Gustavo Mejia
Hello, Could some one, give a brief explanation about why to use Apache and Tomcat Together ?? what is the main difference between them ? Thanks in advance! -- Gustavo Mejía Mora INFOTEC Tel: 5624 28 00 Ext: 253

Tomcat-Solaris-JSP doesn't work.

2001-08-01 Thread Bokin, Vadim D.
Hi! Posted this yesterday, and no hits. PLease please help me out. I can elaborate more about the problem if it's confusing. Here's my system: Solaris 8, Tomcat 3.2.3. Trying to get a simple JSP page to work (tomcat examples, or my own). What happens is when I click to go to a JSP

Re: Strange bug - XSLT filter on Tomcat 4.0 b6

2001-08-01 Thread Craig R. McClanahan
On Wed, 1 Aug 2001, HEBBRON,TOM (HP-UnitedKingdom,ex2) wrote: Hi - I've been writing an XSLT filter using the servlet 2.3 filter mechanism, and have come across this bug several times, including in the example xslt filter at suns JDC

RE: Strange bug - XSLT filter on Tomcat 4.0 b6

2001-08-01 Thread Craig R. McClanahan
On Wed, 1 Aug 2001, HEBBRON,TOM (HP-UnitedKingdom,ex2) wrote: Also, to follow up - there is another filter, this time from IBM devworks - could someone please try this and tell me I'm not going mad - there is a bug here? Code from

Re: Default Servlet prevents loading of static resources.

2001-08-01 Thread Craig R. McClanahan
On Wed, 1 Aug 2001, Miles Daffin wrote: Hi There TC Peeps, I have added a default servlet to a little test webapp (servlet-mapping//servlet-mapping). After I did this I can no longer access static resources (html, images etc.) in the app. All requests, apart from those to other

RE: Tomcat and Apache, very newbie question !

2001-08-01 Thread Jeff Rancier
Apache is an HTTPD, where Tomcat is a servlet container (engine). -Original Message- From: Gustavo Mejia [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 2:31 PM To: [EMAIL PROTECTED] Subject: Tomcat and Apache, very newbie question ! Hello, Could some one, give a brief

RE: Tomcat and Apache, very newbie question !

2001-08-01 Thread Michael Wentzel
Apache is an HTTPD, where Tomcat is a servlet container (engine). Actually, Tomcat is also a httpd although not quite a effecient of a daemon as Apache, hence why it can also serve static content. Could some one, give a brief explanation about why to use Apache and Tomcat Together ?? what

RE: tomcat specifics

2001-08-01 Thread Bryan Rood
Gary, The tomcat docs that are great for that kind of a thing. Just download a recent version of tomcat and read the docs. it's easier if you point the doc dir to a web server, so you can view the html. particularly pay attention to the mod_jk-howto.html or something like that file. It asks most

RE: Can anyone send me mod_jk.so for Redhat 7.0 / Apache 1.3.14? / To mcat 3.2.1

2001-08-01 Thread Navarro, Jose
Jan, first of all, thanks for your quick help. And my congratulations for your page! No, I hadn't checked it. Now I've read the relevant parts. In one of the documents you've got there I have found a link to jakarta.apache.org... but it's dead. There's nothing related to 3.2.1 there. That's why

Problem with encodeRedirectURL

2001-08-01 Thread Curtis Polk
When I try this with cookies disabled, I get a 404 from either Netscape 4 or IE 5, with this message:the requested URL /2.html;jsessionid=bx4wqcd1y1 was not found on this server. Isn't it supposed to append a question mark to the URL, then the session ID, and not a semicolon?

do callbacks to engine exist?

2001-08-01 Thread Grobe, Gary
After reading the Tomcat architecure docs, I have a question. Is there anyway to call the invoke method of a container from the webserver whenever needed. i.e. If I wanted to get the time it takes for the web server to process a request, could the server engine be invoke()'d to startTime and

tomcat dies with segmentation fault

2001-08-01 Thread Neelakshi
I am using tomcat 3.2.3 and trying to send multiple simultaneous requests to my servlet. I have put 100msec delay between starting of the threads on the client side. Each thread sends a connection request to the servlet. If the number of threads I start is less than 43(magic number??), everything

SV: installing Tomcat on Apache 1.3.20 /win2000

2001-08-01 Thread Ellis Teer
I get the same error in the event log (any module not compiled with EAPI gives the error) but Apache so far seems to run fine if you ignore it. Is your module compiled against the proper Apache version? Using modules compiled for versions before 1.3.20 may not work. As of versions greater

Re: Beyond Tomcat 4..?

2001-08-01 Thread Ellis Teer
Just had to say that Tomcat is a fine piece of work. I am looking forward to the mod_webapp Apache-Tomcat connector. Although it may be before its time or another project entirely...an expanded web based webapp management interface (additional information, more functions, etc.) would be very

Virtual Host Confusion

2001-08-01 Thread Robert Schmid
I swear I've read the documentation! I have Virtual Hosts Contexts defined; Server.xml Host name=www.raptor.net Context path= docBase=/home/net/foobar/htdocs debug=0/ /Host Host name=www.blackgryphongraphics.com Context path= docBase=/home/com/barfoo/htdocs

Unable to attach to target VM

2001-08-01 Thread Steve Knight
Hello, I'm trying to set up a test server for remote servlet debugging, its config: win2K server, sp2 iis 5 jdk1.3.1 tomcat 3.2.2 (run as an nt service, and with a connector to iis) (Tomcat is running my servlets like a champ.) I've found several config suggestions for the remote debugging of

Java Error in Tomcat.jar With RedHat 7.1

2001-08-01 Thread Tyson McDowell
Hi All, Using Linux Red Hat 7.1, Java 1.3.1, tomcat 3.2.3. JAVA installed and runs ... sample apps work fine. TOMCAT_HOME=/usr/java/jakarta-tomcat-3.2.3 JAVA_HOME=/usr/java/jdk1.3.1 PATH=/usr/java/jdk1.3.1/bin:/usr/java/jakarta-tomcat-3.2.3 CLASSPATH (tomcat start)

tomcat and jakarta-servletapi

2001-08-01 Thread alexus
i'm trying to install tomcat and from readme i read that i need * Download and install the Servletapi distribution (subproject jakarta-servletapi) into a subdirectory named where do i find jakarta-serve anyway?

Re: Beyond Tomcat 4..?

2001-08-01 Thread Pier P. Fumagalli
Curtis Dougherty at [EMAIL PROTECTED] wrote: YES... integration with IIS5 and Win2K... HELP! :) :) :) :) Documentation for same... RE-HELP! :) :) :) :) Pier

Re: Beyond Tomcat 4..?

2001-08-01 Thread Pier P. Fumagalli
Ellis Teer at [EMAIL PROTECTED] wrote: Just had to say that Tomcat is a fine piece of work. I am looking forward to the mod_webapp Apache-Tomcat connector. It's working great under Unix :) Although it may be before its time or another project entirely...an expanded web based webapp

Aliasing a servlet on Tomcat or Apache

2001-08-01 Thread Dominic Nagar
Is there a way in Tomcat to alias a servlet? For example, if I have a servlet called 'blah', how can I configure tomcat such that I don't have to say servlet/blah in my URL. All I want to access is 'blah'. -- Dominic Nagar Release Engineer NOVO Relationship Architects for e-Business

Why doesn't Jasper 3.3 builds fail on errors like release 3.2 does?

2001-08-01 Thread Peter Luttrell
I am attempting to get Jasper to compile my jsp files. From the command line, i am doing this: java -classpath ..everything.. org.apache.jasper.JspC -die -d src/jsp/WEB-INF/jsp -webapp src/jsp Where my jsp files are nested beginning from src/jsp. I've noticed this problem on multiple files,

RE: Can anyone send me mod_jk.so for Redhat 7.0 / Apache 1.3.14? / To mcat 3.2.1

2001-08-01 Thread Navarro, Jose
By the way, I leave my office today for 30 days (holidays!!!) so if any of you is going to send me mod_jk.so, please send it also to my email account (I think that this list does not allow attachments!). My email address is [EMAIL PROTECTED] Thanks! Jose. -Mensaje original- De: Jan

RE: How to increase HTTP timeout?

2001-08-01 Thread Nils O. Selåsdal
On Wednesday 01 August 2001 04:10 am, Andrew Jarman wrote: Sorry, I should have been more clear. I am not having problem with my *session* timing out, I am having problems with the actual connection timing out. Here's the scenario: 1. Client does a POST, sending in an XML document (using

Re: Aliasing a servlet on Tomcat or Apache

2001-08-01 Thread Jason Koeninger
It's done in web.xml. You can use a url-mapping statement in the file. That may not be exactly right, but it's close. I think there's an example in the sample webapps included in Tomcat. If not, check the latest servlet documentation from Sun. Best Regards, Jason Koeninger JJ Computer

Re: do callbacks to engine exist?

2001-08-01 Thread Craig R. McClanahan
I presume from the questions that you're talking about Tomcat 4, so I will answer on that basis. On Wed, 1 Aug 2001, Grobe, Gary wrote: After reading the Tomcat architecure docs, I have a question. Is there anyway to call the invoke method of a container from the webserver whenever

  1   2   >