RE: Servlets deployment directory location

2002-10-29 Thread Peter Lee
Hi, Suppose I have this servlet \WEBAPPS\ROOT\WEB-INF\CLASSES\HelloServlet for versions 4.0.6 and before , I could use http://localhost:8080/servlet/HelloServlet; but now under 4.1.12, it is no longer working. It just cannot find it at all. However, normal HTML pages can still be accessed

Re: shared jars amongst web apps.

2002-10-29 Thread Bill Barker
Well, shared/lib is better than common/lib (since it doesn't affect the Tomcat classes). A declared servlet (via servlet in web.xml) will create a new instance of the class for each context that it is used (actually, for each servlet declaration that it is used). This actually holds true for the

RE: Apache 1.3/2 mod_jk connect Tomcat 4.1.12 on redhat7.3 - poor perf

2002-10-29 Thread David Tildesley
No, it isn't. I now strongly suspect this is the penalty when using the JK connector. -Original Message- From: Sexton, George [mailto:gsexton;mhsoftware.com] Sent: Sunday, 27 October 2002 5:25 a.m. To: Tomcat Users List Subject: RE: Apache 1.3/2 mod_jk connect Tomcat 4.1.12 on redhat7.3 -

Re: Ant Deploy Task

2002-10-29 Thread Jacob Kjome
Yep, target name=deploy depends=compile,manager.init description=Deploy web-app war deploy url=${manager.url} username=${manager.username} password=${manager.password} config=${app.ccf} path=${app.path} / /target

AW: Bind Tomcat 3.3 to single Ip

2002-10-29 Thread Ingo Eisenkrämer
-Ursprüngliche Nachricht- Von: news [mailto:news;main.gmane.org]Im Auftrag von Bill Barker Gesendet: Dienstag, 29. Oktober 2002 08:17 An: [EMAIL PROTECTED] Betreff: Re: Bind Tomcat 3.3 to single Ip Works for me. Setting the address attribute on the connector for 3.3.1 causes

Re: tomcat 4.1.12 not starting- exception

2002-10-29 Thread Raj Saini
Hi, jakarta-tomcat-4.1.12-LE-jdk14.exe does not have some librabries which are part of the JDK 1.4.x. Download the jakarta-tomcat-4.1.12.exe as your JDK version is 1.3.x. If you want to use the LE version download and install the JDK 1.4.x. Raj Sexton, George wrote: The LE distribution

RE: where to set CATALINA_OPTS?

2002-10-29 Thread Peng Annie
Hi everyone, Thanks for help. I am using Win2k, JK2, Apache2, and TC4. I have tried every way you recommended. Setting CATALINA_OPTS in system environment variable, or setting it in worker2.properties, or setting it in catalina.bat in $CATALINA_HOME/bin. All failed. One thing came to my mind. I

Re: Security RISK !

2002-10-29 Thread Rodrigo Ruiz
I think the idea of letting Apache directly access to the files into the webapp is interesting. This way there is no need to replicate the static content for Apache, and Apache will be faster serving all static content than Tomcat . But, at least in my experience, static files tend to be

RE: Re[2]: DBCP speed of lookup -vs- stored reference to Datasource?

2002-10-29 Thread Ralph Einfeldt
The best way to avoid the double checke locking issue is just not to use it. Before trying to implement 'double checked locking' right, you have to understand the purpose. The goal was to reduce synchronized access to achieve more performance. (Did you have another rationale ?) In most cases

RE: where to set CATALINA_OPTS?

2002-10-29 Thread David Tildesley
Setting it as a system environment variable is correct and works e.g. CATALINA_OPTS=Dfile.encoding=ISO8859_1 -Original Message- From: Peng Annie [mailto:Annie.Peng;KONE.com] Sent: Tuesday, 29 October 2002 9:28 p.m. To: 'Tomcat Users List' Subject: RE: where to set CATALINA_OPTS? Hi

Re: tomcat 4.1.12 not starting- exception

2002-10-29 Thread Mr. Cristian Romanescu
Actually if you want to use JDK 1.3.1 you need xerces XML parser, which lacks on LS distribution which is part of JDK 1.4.1 so no need to include it in Tomcat also... Raj Saini wrote: Hi, jakarta-tomcat-4.1.12-LE-jdk14.exe does not have some librabries which are part of the JDK 1.4.x. Download

RE: Bind Tomcat 3.3 to single Ip

2002-10-29 Thread Ralph Einfeldt
Maybe this post from last weekend helps you: -Original Message- From: W. Egan [mailto:khayman1122;hotmail.com] Sent: Sunday, October 27, 2002 6:14 PM To: Tomcat Users List; Nathan Phelps Subject: Re: Tomcat 4.1.12 taking IPs or Ports not assigned to it? Its a Microsoft design

Re: tc4.1.12 and Apache2.0.43 mod_jk Root Context not appearing in mod_jk.conf

2002-10-29 Thread Robert L Sowders
You will need to setup a listener in server.xml and then the Include in your httpd.conf will be something like Include /usr/local/tomcat/conf/auto/mod_jk.conf Here is a How To that I refer to from time to time. http://www.johnturner.com/howto/apache2-tomcat4110-jk-howto.html The part you

Re: where to set CATALINA_OPTS?

2002-10-29 Thread Robert L Sowders
If you are using windows you can set all your OPTS in the workers2.properties file in the [vm] section. See the examples there. rls Peng Annie [EMAIL PROTECTED] 10/28/2002 03:57 AM Please respond to Tomcat Users List To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] cc:

Re: Security RISK !

2002-10-29 Thread Nikola Milutinovic
Rodrigo Ruiz wrote: I think the idea of letting Apache directly access to the files into the webapp is interesting. This way there is no need to replicate the static content for Apache, and Apache will be faster serving all static content than Tomcat. True, but bothersome to maintain. But, at

RE: tc4.1.12 and Apache2.0.43 mod_jk Root Context not appearing in mod_jk.conf

2002-10-29 Thread Tref Gare
Thanks Robert, You actually helped me out last week with the same howto.. however in this case we're a step past that. I've got the listeners set up as per the howto and they're doing fine when it comes to setting up the examples context, however they don't seem to want to have anything to do

RE: Apache 1.3/2 mod_jk connect Tomcat 4.1.12 on redhat7.3 - poor perf

2002-10-29 Thread Robert L Sowders
You should try turning off reloadable=true for your web app, the examples have it turned on by default. Also take out everything your not using in server.xml (http) etc. That might pick things up a bit. Are your jsp's precompiled? rls David Tildesley [EMAIL PROTECTED] 10/29/2002 12:02

RE: where to set CATALINA_OPTS?

2002-10-29 Thread Robert L Sowders
What OPTs do you want to set? rls Peng Annie [EMAIL PROTECTED] 10/29/2002 12:27 AM Please respond to Tomcat Users List To: 'Tomcat Users List' [EMAIL PROTECTED] cc: Subject:RE: where to set CATALINA_OPTS? Hi everyone, Thanks for help. I am using

AW: Bind Tomcat 3.3 to single Ip

2002-10-29 Thread Ingo Eisenkrämer
Hello, Socket Pooling (Binding IIS to 0.0.0.0:80) Socket pooling causes Internet Information Services (IIS) 5.0 to listen to all IP addresses, which can present a possible security risk for secure domains with multiple networks. Also, bandwidth throttling and performance

RE: where to set CATALINA_OPTS?

2002-10-29 Thread Peng Annie
I want to set CATALINA_OPTS= -Dorg.omg.CORBA.ORBClass=com.inprise.vbroker.orb.ORB ^ -Dorg.omg.CORBA.ORBSingletonClass=com.inprise.vbroker.orb.ORBSingleton ^ -Djavax.rmi.CORBA.StubClass=com.inprise.vbroker.rmi.CORBA.StubImpl ^ -Djavax.rmi.CORBA.UtilClass=com.inprise.vbroker.rmi.CORBA.UtilImpl ^

Configure JNDI

2002-10-29 Thread Mohan Radhakrishnan
Hi, Is it possible to configure datasources with the admin and have it recognized without stopping the tomcat server? After the runtime configuration, I can iterate over the env context and pick up the new datasources ? bye, Mohan -- To unsubscribe, e-mail:

RE: Apache 1.3/2 mod_jk connect Tomcat 4.1.12 on redhat7.3 - poor perf

2002-10-29 Thread David Tildesley
The JSP's are not precompiled, but the performance test is repetitive over 10 minutes and has a warm-up period. the web stress tool has 100 client threads run, each making variety of requests (exercising the whole app) as fast as the server allows. The problem is not with Tomcat - it performs

another question about system.out.print message?

2002-10-29 Thread Peng Annie
Hi Robert, I have another question about system.out.print. I don't know where I can see these messages when tomcat4 is invoked by JK2(win2K, apache2, TC4). Should I configure somewhere so that I can have a log file? or is it possible for me to get a system moniter window to see the out messages

RE: Servlets deployment directory location

2002-10-29 Thread Robert L Sowders
The release notes for 4.1.12 say the default invoker has been commented out in TOMCAT_HOME/conf/web.xml. You can un-comment that section or map your servlet directly in the \WEBAPPS\ROOT\WEB-INF\web.xml file. Does http://localhost:8080/examples/servlet/HelloWorldExample work? rls Peter

Re: Ant Deploy Task

2002-10-29 Thread Jon Eaves
Jacob Kjome wrote: Yep, target name=deploy depends=compile,manager.init description=Deploy web-app war deploy url=${manager.url} username=${manager.username} password=${manager.password} config=${app.ccf}

RE: where to set CATALINA_OPTS?

2002-10-29 Thread Robert L Sowders
EEk, corba, Not sure if those will work with JSDK 1.3.1. But I know less than most about corba. Perhaps someone else would be better suited. Have you tried setting them in the [vm] section of the workers2.properties file? These look like you're going to need a class path also. You have so

Session lost

2002-10-29 Thread Ingo Eisenkrämer
Hello, maybe we have a problem with the redirector for the IIS 5.0. If a user uses the back button in the browser, the session is lost. Are there any known bugs or tips ? Ingo -- To unsubscribe, e-mail: mailto:tomcat-user-unsubscribe;jakarta.apache.org For additional commands, e-mail:

Re: another question about system.out.print message?

2002-10-29 Thread Robert L Sowders
The Tomcat stderr and stdout logs are in the APACHE_HOME\logs directory. Most of the Tomcat messages and JK2 messages are put into the apache logs access.log and error.log. the TOMCAT_HOME\logs directory contains logs for each of your webapps. There is a windows program called tail.exe that

Re: VerifyError when creating Struts action bean

2002-10-29 Thread Steinar Bang
Steinar Bang [EMAIL PROTECTED]: Platform: Intel PIII, RedHat 7.2, apache 1.3.20, ajp1.3 tomcat 4.1.12, BlackDown Java SDK 1.3.1, Struts 1.1-b2, xerces-j 1.4.4 When I run with tomcat 3.3 my webapp run as expected, but when I try it with tomcat 4.1.12, I get a VerifyError

RE: mod_jk + tomcat on Solaris 8 ( about Turner's HOWTO )

2002-10-29 Thread MURAT BALKAS
Thanks. I've downloaded it from the link below, and followed the other instructions. When I start tomcat I get : mod_jk location: libexec/mod_jk.so Make sure it is installed corectly or set the config location Using ApacheConfig modJk=PATH_TO_MOD_JK.SO_OR_DLL / And If I try to open examples

RE: another question about system.out.print message?

2002-10-29 Thread Peng Annie
Thanks Robert! I got it. -Original Message- From: Robert L Sowders [mailto:rsowders;usgs.gov] Sent: 29 October 2002 12:14 To: Tomcat Users List Subject: Re: another question about system.out.print message? The Tomcat stderr and stdout logs are in the APACHE_HOME\logs directory. Most of

about tail

2002-10-29 Thread Peng Annie
Hi Robert, another question: how to configure tail? I can not see any thing in the dos window Annie -Original Message- From: Robert L Sowders [mailto:rsowders;usgs.gov] Sent: 29 October 2002 12:02 To: Tomcat Users List Subject: RE: where to set CATALINA_OPTS? EEk, corba, Not sure if

BASIC authentication in Tomcat+IIS

2002-10-29 Thread Luca Ventura
Hello everybody! I have the following GREAT problem with basic authentication in Tomcat I have two servers configured as follows: Server 1: Operating system: Windows 2000 Advanced Server Web Server: IIS 5.0 Servlet Container: Tomcat 4.x Server 2: Windows XP Professional Web Server: IIS

BASIC authentication in Tomcat+IIS

2002-10-29 Thread Luca Ventura
Hello everybody! I have the following GREAT problem with basic authentication in Tomcat I have two servers configured as follows: Server 1: Operating system: Windows 2000 Advanced Server Web Server: IIS 5.0 Servlet Container: Tomcat 4.x Server 2: Windows XP Professional Web Server: IIS

Re: tools to monitor a tomcat application

2002-10-29 Thread alabama
Try radar... http://radar.sourceforge.net/ Hope this help. Alberto. On Monday 28 October 2002 10:44 pm, Chakradhar Tallam wrote: hi all, are there any tools available to monitor a tomcat web application? please provide me with few pointers. thanks, - Chakradhar

AJP13 ..You must Read this !

2002-10-29 Thread Sigurður Bjarnason
Hi all I been having a very strange problem with the ajp13 connector.. OK the senario is this.. I have apache configured with ajp13 and mod_jk.so .. Everything is working ok.. and I have Jboss + Tomcat that apache is talking to.. Everything..is working there also.. I am doing ab (

Re: Filters, MVC, ResultSets

2002-10-29 Thread Felipe Schnack
I think a LinkedList would be better performance-wise, wouldn't it? On Mon, 2002-10-28 at 21:01, German Augusto Niebles Alvarez wrote: I suggest you use vectors and beans (collection of beans) to poblate rs and then close de resultset, and use a class to connect to database (jdbchelper

RE: AJP13 ..You must Read this !

2002-10-29 Thread Andy Eastham
It's not something to do with line feeds / carriage returns is it? Andy -Original Message- From: Sigurður Bjarnason [mailto:siggi;betware.com] Sent: 29 October 2002 11:55 To: Tomcat (E-mail) Subject: AJP13 ..You must Read this ! Hi all I been having a very strange problem

Re: Filters, MVC, ResultSets

2002-10-29 Thread V. Cekvenich
Or a disconected rowset, so no copying. Ex:http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/basicportal/basicportal_07/src/basicWebLib/org/commons/DAO/BasicDAOImpl.java?rev=1.2content-type=text/vnd.viewcvs-markup .v Felipe Schnack wrote: I think a LinkedList would be better performance-wise,

Re: VerifyError when creating Struts action bean

2002-10-29 Thread Steinar Bang
Steinar Bang [EMAIL PROTECTED]: Platform: Intel PIII, RedHat 7.2, apache 1.3.20, ajp1.3 tomcat 4.1.12, BlackDown Java SDK 1.3.1, Struts 1.1-b2, xerces-j 1.4.4 When I run with tomcat 3.3 my webapp run as expected, but when I try it with tomcat 4.1.12, I get a VerifyError

accessClassInPackage.org.apache.catalina.realm permission

2002-10-29 Thread Renato
Hi all, One of my users is asking for the following permission in his context java.security.AccessControlException: access denied (java.lang.RuntimePermission accessClassInPackage.org.apache.catalina.realm) He is using the securityfilter.jar library I'm using Tomcat 4.1.12 with

RE: AJP13 ..You must Read this !

2002-10-29 Thread Sigurður Bjarnason
nop.. there is not ! :( siggi -Original Message- From: Andy Eastham [mailto:andy.eastham;gliant.com] Sent: 29. október 2002 12:02 To: Tomcat Users List Subject: RE: AJP13 ..You must Read this ! It's not something to do with line feeds / carriage returns is it? Andy -Original

Tomcat 4.1.12 + FreeBSD 4.7 + Linux-sun-jdk1.4.1

2002-10-29 Thread Nicholas Hemley
Hi, Is anyone else running this configuration successfully since Tomcat will not run as anything other than 'root' due to a HotSpot problem. Cheers, Nic Hemley NHS Lothian Webmaster ** The information contained in this

Charsets and RequestDispatcher

2002-10-29 Thread Holger Brozio
Hello, i have made the following observation: I am using Tomcat 4.1.12 on Windows NT. If i display the jsp page with charset windows-1253 by invoking the page the direct way, the characters are displayed correct. e.g. http://localhost/jsp/enc_test/ch1253.jsp After that i wrote a small

RE: [urgent]Help pleeeeez--context problem--logfiles attached

2002-10-29 Thread Shapira, Yoav
Hi, Without looking at your files, what happens if you don't add your context to the server.xml? What non-default context properties are you using? It would be helpful if you could post only the relevant portions of your configuration, i.e. just your Context entry. A lot of people, including

Differences Coyote/JK2 AJP1.3 vs AJP 1.3 Connector

2002-10-29 Thread Thébault, Médérick
Hello, What is the difference between those two connectors : Connector className=org.apache.coyote.tomcat4.CoyoteConnector port=8009 minProcessors=5 maxProcessors=75 enableLookups=true redirectPort=8443 acceptCount=10 debug=0 connectionTimeout=2

RE: Tomcat losing connection capabilities/not being able to shutdown

2002-10-29 Thread Shapira, Yoav
Hi, able to access MySQL databases from other servers with the servlets that I've programmed. However, after a time, it cannot seem to connect to the Are there any error messages? databases through servlets, yet when I run Java standalone equivalents of the servlets, they connect to the

RE: shared jars amongst web apps.

2002-10-29 Thread Cox, Charlie
sounds like you want each webapp to have its own instance of statics,singletons,etc within your jar. In order to do this, you will need to copy the jar into each WEB-INF/lib where it is needed (and allow each with catalina.policy if applicable) Charlie -Original Message- From: Frank

RE: Differences Coyote/JK2 AJP1.3 vs AJP 1.3 Connector

2002-10-29 Thread Ralph Einfeldt
The difference is the internal structure. Ajp13Connector is the the older, more proven solution but has some architectural problems. CoyoteConnector is an new connector architecture. The CoyoteConnector itself is protocol independend and uses external classes to speak the protocol. The

RE: tools to monitor a tomcat application

2002-10-29 Thread Shapira, Yoav
Hi, Try radar... http://radar.sourceforge.net/ Is Radar still in active development? It says on their site they support Tomcat 3.2, which is old. Whether they are or not in active development, perhaps the folks who helped with Radar could put up their hands and help with the tomcat admin

RE: JDBC driver class 'null' error

2002-10-29 Thread pqin
Rename jdbc driver package to .jar and put in common/lib Regards, Phillip Qin Software Developer Canadian Shareowner 121 Richmond Street W, 7th Floor Toronto, ON M5H 2K1 (416) 595-9600 ext 291 -Original Message- From: Sinclair, Alan (CORP, GEAccess)

RE: DbcpDataSourceFactory: driverClassName is required

2002-10-29 Thread pqin
Rename jdbc to .jar and put in common/lib Regards, Phillip Qin Software Developer Canadian Shareowner 121 Richmond Street W, 7th Floor Toronto, ON M5H 2K1 (416) 595-9600 ext 291 -Original Message- From: John Ruffin [mailto:John.Ruffin;AccredoHealth.com] Sent: October 28, 2002

RE: Where to put Java files/classes

2002-10-29 Thread Michael Schulz
Classes that you develop for use with your .jsp pages are normally placed in the $CATALINA_HOME/webapps/yourwebapp/WEB-INF/classes folder. This is the standard place for classes and this requirement is documented in the Java Servlet Specification Version 2.3, section 9.5, which is available for

Enabling users home directory for applets

2002-10-29 Thread Dan Didier
Hi, I have tomcat4 installed and working with j2sdk-1_4_1_01 I would like to give access to a system user to develop and publish their own servlets. Does anyone know where I can find documentation on this? I have looked throught the documentation, and have not seen an exact match to what

RE: DbcpDataSourceFactory: driverClassName is required

2002-10-29 Thread John Ruffin
msbase.jar, mssqlserver.jar, and msutil.jar are in common/lib. Again, class.forname works but not JNDI. -Original Message- From: [EMAIL PROTECTED] [mailto:pqin;shareowner.com] Sent: Tuesday, October 29, 2002 8:22 AM To: [EMAIL PROTECTED] Subject: RE: DbcpDataSourceFactory:

RE: DbcpDataSourceFactory: driverClassName is required

2002-10-29 Thread pqin
Can you send us the log file? Usually it contains info about when to load jndi, params etc. that might help figuring out what went wrong during jws startup. Regards, Phillip Qin Software Developer Canadian Shareowner 121 Richmond Street W, 7th Floor Toronto, ON M5H 2K1 (416) 595-9600 ext

Re: Tomcat 4.1.12 hanging under stress?

2002-10-29 Thread Ben Ricker
On Mon, 2002-10-28 at 20:24, William Lee wrote: Hmm, it may have something to do with the kernel, I'll try later to see whether this is the case. I don't think the log gives me much though. Anyhow, I've made a weird discovery that I found interesting. After the other info you gave me, I

Re: Configure JNDI

2002-10-29 Thread Garrett Smith
Mohan, By having the configuration inside of your context in server.xml, I don't think it's possible. I tried jocl, but couldn't get it to work with tc. Craig McClanahan advised me to set up a context in server.xml instead to using jocl. This makes it very time consuming to develop webapps, and

RE: Force One page to not use SSL

2002-10-29 Thread Rustad, Aaron
OK, let me explain the real problem then. What I really want to do is download a bunch of jars for an applet, however, doing this over HTTPS is driving my nuts!!! Can I somehow use HTTP to get the jars and still have the page that the applet resides in HTTPS? Thanks again! Aaron. -Original

Autoreload of .war archives on Tomcat 4.0

2002-10-29 Thread Andrea Carpani
Hi all, I've got a standard tomcat layout where I can deploy war applications on the webapps dir. This archive is decompressed and used by tomcat and works fine. What I'd like to do is to change the war file (without removing the expanded directory tree and without restarting tomcat) and have

RE: Autoreload of .war archives on Tomcat 4.0

2002-10-29 Thread Deepa Raja
This is not possible. War will not be deployed if the webapp folder for the war already exist. It does not matter whether the war has been modified or not. For a new war to be deployed the webapp folder for that war (if any exist) is to be removed and tomcat is to be restarted. Also note : Tomcat

Apache/Tomcat and Internationalization

2002-10-29 Thread Bryan Vannortwick
I am trying to use internationalization with an Apache Tomcat configuration am having a problem getting it to work properly. The config is (all machines Win2000): Browser (IE 5.5 - set to Japanese) --- Apache 1.3.26 -- Tomcat 4.0.4 (our application installed running via Tomcat ) I

Compatibility between Windows and Linux tomcat

2002-10-29 Thread Bertus Keyser
Hallo I would like to know if there are any compatibility issues between running Linux Apache with mod_jk and running Tomcat on Windows with the ajp13 protocol. Bertus Keyser IMPRESS SOFTWARE (SA) Peter Place Park Bryanston, Johannesburg Phone +27 11 706-0339 Fax +27 11 706-8753 Mobile

Session start

2002-10-29 Thread Mauro Daniel Ardolino
Hello! I'm confussed about when does a session starts. For example I have a simple servlet that keeps a count of the times it was called session by session. So it uses the HttpSession requesting it to the servlet request. Browsing with netscape on a linux gui, opening 2 browsers, calling the

apache/tomcat multiple hosts

2002-10-29 Thread tamsin
hi, i'm using apache, tomcat 4.1 and mod_jk i have apache configured: VirtualHost 1.2.3.4:80 ServerName www.foo.com DocumentRoot /home/foo JkMount /servlet/* worker1 /VirtualHost and in server.xml: Context path= docBase=/home/foo debug=0 reloadable=false

RE: Force One page to not use SSL

2002-10-29 Thread Srinadh Karumuri
You can probably try forwarding to absolute path, with the JSESSIONID value. Since you are using IIS as secure server, it shouldn't matter to Tomcat. For example: In a servlet you can forward control from https://my.domain.com/myapp/jsp/mypage1.jsp to

Re[4]: DBCP speed of lookup -vs- stored reference to Datasource?

2002-10-29 Thread Jacob Kjome
Hello Ralph, Well, supposedly, everything slowed down in the j2sdk1.4.0 release. The j2sdk1.4.1 release fixed a *ton* of performance regressions that occurred between jdk1.3.x and j2sdk1.4.0. So, I think the jury is still out on whether ThreadLocal is still slow in j2sdk1.4.1. And yes, the goal

Run Tomcat 4.1.2 on Novell

2002-10-29 Thread Jordi Guijarro
Hi, How can I run Tomcat 4.1.2 on Novell Netware 5.1 ¿? Nowadays I’ve a script (ncf file) to start catalina in Tomcat 4.0.4 version. This script is not included in Tomcat 4.1.2. Someone knows about it ? Thank you, Jordi

[TC v4.1.12] Integrating with BouncyCastle on JDK v1.4.1_01

2002-10-29 Thread Pae Choi
Forst of all, my applogies if this has been asked and solved. If anyone has integrated TC v4.1.12 with BC-jdk14-115 on JDK 1.4.1_01 using PKCS12 key store, not JKS keystore, would you please share with me whether it's feasible or not. To wit, without modifying the TC source code. Any suggestions

MOD_JK.SO

2002-10-29 Thread Mehdi . Nejad
Hi, We are trying to get Tomcat 4.1.12 and Apache 1 3 26 working together using mod_jk.so. We are receiving the followitng error : Starting httpd: Syntax error on line 224 of /etc/httpd/conf/httpd.conf: Cannot load /usr/local/apache/libexec/mod_jk.so into server:

Tomcat standalone speed versus Tomcat/Apache

2002-10-29 Thread Andy Wickson
Hi all, Has anyone done any comparisons of the above? Are there any rules of thumb regarding this e.g., percentage of static versus dynamic content/site popularity etc. Just wondering whether Tomcat will cut it on its own for my modest site. Regards Andy Wickson

RE: JDBC driver class 'null' error

2002-10-29 Thread Sinclair, Alan (CORP, GEAccess)
Thanks, I discovered that yesterday. -Original Message- From: [EMAIL PROTECTED] [mailto:pqin;shareowner.com] Sent: Tuesday, October 29, 2002 7:21 AM To: [EMAIL PROTECTED] Subject: RE: JDBC driver class 'null' error Rename jdbc driver package to .jar and put in common/lib Regards,

RE: Tomcat standalone speed versus Tomcat/Apache

2002-10-29 Thread David Tildesley
Tests we did with tomcat 4.1.12 showed it is defintely in order of magnitudes faster by itself than connected with apache with mod_jk. But why don't you run your own tests and let us compare notes. -Original Message- From: Andy Wickson [mailto:andy;awtech.co.uk] Sent: Wednesday, 30

Re: MOD_JK.SO

2002-10-29 Thread Ben Ricker
I got this on Apache 1.3.27. I assume you downloaded the binary mod_jk.so. Make sure that you got that fits your use or non-use of SSL in the server. Not sure where you got the binary, but there is a note on the jakarta connector download page that lists which binary is for which. I myself just

Re: MOD_JK.SO

2002-10-29 Thread Mehdi . Nejad
according to this : http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/connectors.html i should need mod_jk2 and not mod_jk (well, mod_jk may also work, but hey,..) - and its enabled by default on the appserver im using.. If by any chance i am right, can someone tell me why I cant find a

JAR Files needed

2002-10-29 Thread Brookwell Brookwell
This is the first time I've tried getting a servlet running under Linux. We're using TOmcat and I'd like to know what JAR files are needed tocompile the servlet. Brian Brookwell -- To unsubscribe, e-mail: mailto:tomcat-user-unsubscribe;jakarta.apache.org For additional commands, e-mail:

Re[5]: DBCP speed of lookup -vs- stored reference to Datasource?

2002-10-29 Thread Jacob Kjome
Whooops. I had read the following: RE (This article also states that ThreadLocal works even slower RE before JDK 1.4) as This article also states that ThreadLocal works even slower [than] before [in] JDK 1.4. So, I thought you were saying that the implementation of ThreadLocal was slower in

Re: MOD_JK.SO

2002-10-29 Thread Ben Ricker
On Tue, 2002-10-29 at 12:22, [EMAIL PROTECTED] wrote: according to this : http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/connectors.html i should need mod_jk2 and not mod_jk (well, mod_jk may also work, but hey,..) - and its enabled by default on the appserver im using.. I use

Re: Error when attempting to start Tomcat 4.1.12 on NT system runningJDK 1.2.2

2002-10-29 Thread Robert Christenson
All, Thanks to Gunter D'Hondt, I've set an environment variable called JAVA_COMPILER to the value NONE and now Tomcat 4.1.12 starts up correctly using jdk1.2.2. Question, does anybody know if this would adversely affect compilation of JSPs etc.? And, where is this documented? I looked in

Is CLASSPATH ignored ?

2002-10-29 Thread Sinclair, Alan (CORP, GEAccess)
All, Does the UNIX Tomcat implementation ignore the CLASSPATH environment variable ? For example, in order to make DBCP pooling work, I placed the Oracle JAR file in $CATALINA_HOME/common/lib Does this mean that all application JAR files must be installed in ../common/lib ? Thanks -- To

RE: Is CLASSPATH ignored ?

2002-10-29 Thread Cox, Charlie
yes, classpath is ignored. you must put them in /WEB-INF/lib for each application or in /common/lib if you want to share them between apps. database jars need to be in /common/lib to be visible to tomcat's classes and also your webapps. Charlie -Original Message- From: Sinclair, Alan

Re: about tail

2002-10-29 Thread Robert L Sowders
You must always provide the information that I cannot see. What version of tail did you get? CYG-WIN, or the windows program? rls Peng Annie [EMAIL PROTECTED] 10/29/2002 02:40 AM Please respond to Tomcat Users List To: 'Tomcat Users List' [EMAIL PROTECTED] cc:

Re: about tail

2002-10-29 Thread Robert L Sowders
If you are using tail from cygwin it would be tail -f name_of_file. The windows program has a GUI to work from. rls Peng Annie [EMAIL PROTECTED] 10/29/2002 02:40 AM Please respond to Tomcat Users List To: 'Tomcat Users List' [EMAIL PROTECTED] cc: Subject:

RE: Is CLASSPATH ignored ?

2002-10-29 Thread Sinclair, Alan (CORP, GEAccess)
Okay, thanks -Original Message- From: Cox, Charlie [mailto:ccox;cincom.com] Sent: Tuesday, October 29, 2002 1:13 PM To: 'Tomcat Users List' Subject: RE: Is CLASSPATH ignored ? yes, classpath is ignored. you must put them in /WEB-INF/lib for each application or in /common/lib if you

RE: JAR Files needed

2002-10-29 Thread Julius Davies
Brian Brookwell, Officially, you need J2EE (Java 2, Enterprise Edition). Go to http://java.sun.com to download it. After installing J2EE you'll find a jar file called j2ee.jar which contains everything you need to compile servlets. Personally, I just dip into $TOMCAT/common/lib and use the

RE: mod_jk + tomcat on Solaris 8 ( about Turner's HOWTO )

2002-10-29 Thread Tref Gare
Where is your mod_jk.so installed? And secondly what does your mod_jk.conf look like (CATALINA_HOME/conf/auto/mod_jk.conf) I'd say between those two we'll find the culprit. cheers -- Tref Gare Development Consultant Areeba Level 19/114

RE: JAR Files needed

2002-10-29 Thread Garrett Smith
Add servlet.jar to your classpath: CATALINA_HOME/common/lib/servlet.jar You do this with an Ant task if you're using Ant. Garrett --- Julius Davies [EMAIL PROTECTED] wrote: Brian Brookwell, Officially, you need J2EE (Java 2, Enterprise Edition). Go to http://java.sun.com to download

Tomcat gives servlets thru Apache but only for localhost

2002-10-29 Thread Whyatt, Marie V
Apologies if I haven't found this answered in the archives... From the same system Apache and Tomcat are running on (toucan), I can see Tomcat's HelloWorldExample servlet if I use either of the URLs: http://localhost/examples/servlets/HelloWorldExample or

Re: Is CLASSPATH ignored ?

2002-10-29 Thread Craig R. McClanahan
On Tue, 29 Oct 2002, Sinclair, Alan (CORP, GEAccess) wrote: Date: Tue, 29 Oct 2002 13:01:06 -0700 From: Sinclair, Alan (CORP, GEAccess) [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List (E-mail) [EMAIL PROTECTED] Subject: Is CLASSPATH ignored ? All,

Tomcat 4.1 memory leak with Coyote connectors

2002-10-29 Thread Iain Sanderson
Hi, Has anyone else seen a memory leak using Tomcat 4.1/JDK 1.4.1 and a Struts web application? I was using the Coyote Http 1.1 connectors on port 8080 and 443 ( for SSL) in Server XML, and found my web app died after 24 hours or so with an OutOfMemoryException. I suspected a memory leak and

RE: DBCP Woes!

2002-10-29 Thread neal
Still having DBCP problems. I ensured that all my connections, statements, and resulset objects are being properly released when using DBCP for connection pooling. I've enabled recoverAbandoned. It seems that yes I did have some connection pool leaking, but that has since been resolved. But I

RE: DBCP Woes!

2002-10-29 Thread neal
Now I have some other strange error related to accessing my database. Ever since I started messing with thsi stuff my conneciton to my dB has been flakey at best. Sometimes it works ... sometimes it doesn't. javax.naming.NamingException: Exception creating DataSource: org.hsql.jdbcDriver I

RE: mod_jk + tomcat on Solaris 8 ( about Turner's HOWTO )

2002-10-29 Thread MURAT BALKAS
My mod_jk.so is at the default location with other modules : /usr/apache/libexec/mod_jk.so All of my configuration files are attached with comments. If I go over them I realised that I'm really confused about a) ports ( Should both of them bind to same port? How? ) Now, my apache listens

RE: DBCP Woes!

2002-10-29 Thread Mike Jackson
Poolman works nicely, I have little to no problems with it. Then again I haven't used DBCP. But you'd still have had the exhasted connections problem with poolman. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: neal [mailto:nealcabage;yahoo.com] Sent:

Re: Force One page to not use SSL

2002-10-29 Thread Nicholas Pappas
Why not break up your applet into two - one applet on an HTTP page that just handles the jar downloads? Rustad, Aaron wrote: OK, let me explain the real problem then. What I really want to do is download a bunch of jars for an applet, however, doing this over HTTPS is driving my nuts!!! Can

localization in Tomcat V4

2002-10-29 Thread Shyam Aramkuni
Hi, Can we achive the localized web-resources by putting in a filter?or is there an in built support for localization in Tomcat V4? Thanks Shyam

Re: coyote connector and SSL generates exception for every GET request - Tomcat 4.1.12

2002-10-29 Thread Sara Wilken
I found out about it by being the one that patched it. :) I just forgot to update the release notes afterwards. - Original Message - From: HAVENS,PETER (HP-Cupertino,ex3) [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, October 28, 2002

RE: DBCP Woes!

2002-10-29 Thread neal
I considered poolman but it doesn't look like its supported or even available from the website to download anymore. Is this the case? I have heard good things about it. Don't suppose you understand this JDBC conext binding error, do you? Thanks. Neal -Original Message- From: Mike

RE: DBCP Woes!

2002-10-29 Thread Mike Jackson
I don't think anyone's actively working on it anymore, but it's rock solid (tm). At least with the way that I'm using it. As for the JDBC thing, it looks like it's the underlying JDBC driver. I don't know how DBCP works, but I'd imagine that it's not too different from Poolman. The point is that

RE: DBCP Woes!

2002-10-29 Thread neal
Interesting. Yeah, this error occassionally pops up and ocassionally goes away. When its flaring up I can't get any connections via DBCP. But, I still can through regular (non-pooled) JDBC. Uuugh. Maybe I should look at Poolman. Where can you download it from? Are there many people out

  1   2   >