AW: howto avoid overuse of session object?

2002-08-02 Thread Ralph Einfeldt
Just to throw in anothe opion :) I agree with you. As I understand you want to exchange object between two requests of the same session. If you have information that has a scope that is below a session, I don't see any reason to store it with a scope that is above the session (application or

RE: Apache/Tomcat Connectors List

2002-08-02 Thread Heligon Sandra
Thanks for your help. Could you say if I had well understood ? It is the port that we specify in the URI (expl:http//localhost:8080) that defines what connector is used and so if we used Tomcat standalone or Tomcat with Apache ? I read the AJP documentation and it is noted that the AJP

RE: Tomcat 4 Suse 8

2002-08-02 Thread Gunter D'Hondt
Same here Tomcat 4.01 works with Suse 8.0 although I'm having problems using the mod_webapp connector with Apache 1.3.23 but standalone Tomcat is working perfect! Gunter -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jay Gardner Sent: vrijdag 2

RE: howto avoid overuse of session object?

2002-08-02 Thread Jacob Hookom
I agree, stick to the session itself for purposes of scaling later, just be smart about the objects you put in there, IE, use singletons and factories for instances, etc. There's no need to write your own session handler. Jacob Hookom Comprehensive Computer Science University of Wisconsin,

Start/shut down Tomcat/Apache automatically

2002-08-02 Thread Heligon Sandra
Hi, I would like to know if it is possible to start Apache and Tomcat without asking to the client (consumer) to do it. At the first request (http://localhost/toto) if the web server isn't launched then a program start it. But I don't want to

Standalone Tomcat on port 80 without root privileges

2002-08-02 Thread Leos Urban
Hello, How to run tomcat JSPs and servlets on Linux on port 80 without root privileges? I want to run Tomcat4 without Apache on my Redhat 7.3 Linux server. Tomcat 4 is installed from rpm and run as tomcat4 user. I changed port setting to port 80 (http) and 443 (https) in server.xml to listen on

AW: Apache/Tomcat Connectors List

2002-08-02 Thread Ralph Einfeldt
You missunderstood something: - There are two main kinds of ports: - One that is used to talk HTTP. That is the port that is seen be the outer world as the webserver. The default port for a client application (like a browser) for a web server is 80. That means that

Setting certificates file with Tomcat / SOAP

2002-08-02 Thread Ashley.Bryett
Hello everyone, Our application runs under Tomcat 3.3.1 using in-process IIS and uses SOAP 2.3. It initiates client B2B communications with an external vendor server using SSL (J2SE 1.4) and SOAP. My problem is that I cannot load our certificates file by setting a default SSLSocketFactory,

AW: Start/shut down Tomcat/Apache automatically

2002-08-02 Thread Ralph Einfeldt
I think that you have the wrong design to achieve this. I would recommend following approach: - Start tomcat at systemstart - Request the connection to the backend server at the first request to the site and store the connection with application scope. - Write a SessionListener that keeps

Oracle 8.1.7 JDBC classes

2002-08-02 Thread Roland Carlsson
Hi! Last night we upgraded our Oracledatabase from 8.1.5 to 8.1.7 in an attempt to avoid a bug. The installation went fine but when I tried to get Tomcat to access the database through the new drivers it said that it couldn't find the driver. I renamed them to .jar from .zip like I did with

please reply to this

2002-08-02 Thread Richard Diaz
I'd like to verify my messages are being posted, please send me an email at [EMAIL PROTECTED] if you see this message, thanks in advance. = __ Do You Yahoo!? Yahoo! Health - Feel better, live better http://health.yahoo.com -- To

JDBC Realm redirect problem

2002-08-02 Thread Polly Poon
Hi all, My configuration is Tomcat: 3.2.4 JDK: 1.3.01 Linux Red Hat7.3 MySQL3.2.3 I was using JDBC Realm for security. But for some reason even when the user have the correct password and username to authenticate it still end up redirect to the error page. Would any one give me a pointer?

RE: Oracle 8.1.7 JDBC classes

2002-08-02 Thread Charles Trader
CMIIW, I think it's supposed to be in %catalina_home%/common/lib? Regards, Charles -Original Message- From: Roland Carlsson [mailto:[EMAIL PROTECTED]] Sent: Friday, 2 August 2002 16:14 To: [EMAIL PROTECTED] Subject: Oracle 8.1.7 JDBC classes Hi! Last night we upgraded our

AW: Standalone Tomcat on port 80 without root privileges

2002-08-02 Thread Ralph Einfeldt
Some ideas: - Use a proxy that redirects all requests on port 80 to 8080. - Use nat and map port 80 to 8080 (port forwarding) -Ursprngliche Nachricht- Von: Leos Urban [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 2. August 2002 09:53 An: [EMAIL PROTECTED] Betreff: Standalone Tomcat

RE: JDBC Realm redirect problem

2002-08-02 Thread Tathagat (London)
My guess would be that the roles being returned are not the correct ones. -Original Message- From: Polly Poon [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 10:20 To: Tomcat Users List Subject: JDBC Realm redirect problem Hi all, My configuration is Tomcat: 3.2.4 JDK: 1.3.01

Re: Oracle 8.1.7 JDBC classes

2002-08-02 Thread Roland Carlsson
What is the difference? It works with the 8.1.5 driver in %catalina_home%/lib ?? But I'm going to try and move it. Thanks Roland ps: could you spell out the abrivation CMIIW, i don't recogice it. - Original Message - From: Charles Trader [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL

urgent help please!

2002-08-02 Thread Richard Diaz
I hope this is formated well for this list-serv... problem: application scope objects launched by web.xml In my Tomcat boot sequence (web.xml file) I am launching a servlet called InitTwc. This servlet creates and sets the values for an application scope object called TwcMaxes. I have

RE: Standalone Tomcat on port 80 without root privileges

2002-08-02 Thread andre . powroznik
Use Windows, especially Millenium :-) Seriously, why not use Apache with a connector... Andr -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] Sent: 02 August 2002 10:25 To: Tomcat Users List Subject: AW: Standalone Tomcat on port 80 without root privileges Some

AW: urgent help please!

2002-08-02 Thread Ralph Einfeldt
I just can provide some suggestions that might help to identify the problem. - compare the hashcode of the object that is stored as attribute between your servlet and the jsp. - allow the setting of iMaxBookmarks only through an accessor. Log each access through the accessor. How does

RE: Oracle 8.1.7 JDBC classes

2002-08-02 Thread Charles Trader
I'm not sure what the difference is, from what I know (and implement), I should put the additional jars there. Anyone have a better explanation? ps:CMIIW = correct me if i'm wrong -Original Message- From: Roland Carlsson [mailto:[EMAIL PROTECTED]] Sent: Friday, 2 August 2002 16:34

problems using tomcat/apache with htdig and German Umlaute

2002-08-02 Thread Bührle, Martin, FCI1
Hi List! We have a problem using a tomcat-servlet together with apache / mod_webapp-WARP-Connector and htdig-integration. Everything works well, but when we are using german Umlaute (ä, ü, ...) in a search-request and have several result-pages we cannot change from page 1 to page

AW: problems using tomcat/apache with htdig and German Umlaute

2002-08-02 Thread Ralph Einfeldt
Who is responsible for the creation of the link to the second page ? (probably the opencms component. If this is true it's more a problem for this component, as it isn't legal to create such an url) We are using htdig in complete different environment (jserv, gnujsp, htsearch.jar) so I can't

AW: problems using tomcat/apache with htdig and German Umlaute

2002-08-02 Thread Ralph Einfeldt
At a first glance would suspect the error in opencms/modules/searchhtdig/src/com/opencms/modules/search/htdig/CmsHtdi g.java in the method read() there is this block: (wrapped by me for better readability) if (page == null) { query = restrict= + restrict + config= + conf +

Apache 2 and Tomcat 4

2002-08-02 Thread Stephen . Thompson
Hello All, I am trying to find a configuration that will allow apache 2 and tomcat 4 to talk to each other on a windows platform. Does anyone have any pointers on where to look? Thanks. Stephen. ---

Re: AW: Embedded Tomcat and manage requests and responses at theconnectorlevel

2002-08-02 Thread Eriam Schaffter
Hello I was trying this for performance reasons. Now for sure the fact that it would not be possible to use it in recent versions made me change my mind. I 'm trying to understand what you mean by filter, would it be to design a new valve element and then to declare it in the config ? Would a

AW: AW: Embedded Tomcat and manage requests and responses at theconnectorlevel

2002-08-02 Thread Ralph Einfeldt
A filter from the servlet spec 2.3 is the equivalent to a Valve and is portable across all servlet containers that implement this spec. (e.g. tomcat 4.*) Have a look at: http://www.javaworld.com/javaworld/jw-06-2001/jw-0622-filters.html -Ursprüngliche Nachricht- Von: Eriam Schaffter

Re: Oracle 8.1.7 JDBC classes

2002-08-02 Thread Roland Carlsson
I have tride to put the 8.1.7 version of the jdbcdriver (witch includes the driver) in the %catalina_home%/common/lib/ but i still get a ClassNotFoundException. When putting the old 8.1.5 version there it works like a charm Anyone, more suggestions of what may cause this behavior. I'm very

AW: Oracle 8.1.7 JDBC classes

2002-08-02 Thread Ralph Einfeldt
Which tomcat version do you use. as far as I can remember at least one tomcat version ignored any jar in the tomcat directories that contained certain classes (java.sql.* I believe). Compare the contents of the two oracle jars to see if something changed in this respect. -Ursprüngliche

RE: Apache/Tomcat Connectors List

2002-08-02 Thread Heligon Sandra
Thanks a lot for your explanations there are very easy understood and very good. Even so I have questions: - What interest is it to have multiple HttpConnectors ? In the server.xml file we find - non-SSL HTTP/1.1 Connector on port 8080 - an SSL HTTP/1.1 Connector on port 8443 why not I

Re: Oracle 8.1.7 JDBC classes

2002-08-02 Thread Roland Carlsson
I'm using Tomcat 4.0.3. If it's ignoring javax.sql then we have found the problem and I have to upgrade. Is it possible to verify that 4.0.3 should have this problem? Thanks Roland - Original Message - From: Ralph Einfeldt [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent:

Tomcat in a multiuser webhost environment

2002-08-02 Thread Hans Kaiser
Hello all! Is this list a closed one? I tried to post a message to the list, without being subscribed, but that failed (I think so, I couldn´t see the mail on the archives) I will go on directly to my problems: I am running an Apache 1.3.x and I have all my virtual hosts under

RE: Apache/Tomcat Connectors List

2002-08-02 Thread Turner, John
Basically, server.xml as the default install has 3 connectors defined: the HTTP connector, the AJP connector, and the WARP connector. - the HTTP connector allows tomcat to act as a stand-alone webserver. You can configure this connector to listen on any port you wish. The default is 8080.

RE: Start/shut down Tomcat/Apache automatically

2002-08-02 Thread Turner, John
If neither is started, what service is listening on port 80 to receive the first request? John Turner [EMAIL PROTECTED] -Original Message- From: Heligon Sandra [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 3:53 AM To: '[EMAIL PROTECTED]' Subject: Start/shut down

AW: Apache/Tomcat Connectors List

2002-08-02 Thread Ralph Einfeldt
I guess you have to ask the person who configured this. This doesn't look like a standard configuration of tomcat. If you want to run tomcat behind apache you should remove all HttpConnectors. (Unless the person that has configured this doesn't have a special reason.) The AJP connector is

RE: Apache/Tomcat Connectors List

2002-08-02 Thread Turner, John
Tomcat is not a webserver. It is not built to be a webserver, it is not designed to be a webserver, and as a webserver it does a fairly poor job compared to applications that are specifically designed and built to be webservers, like apache. That is why you have connectors. In production

AW: Oracle 8.1.7 JDBC classes

2002-08-02 Thread Ralph Einfeldt
You also can unjar the jar, and rejar it without the classes. For the rest of your question: There was a discussion in this list a while back. But that is hard to find as to many messages in this list contain oracle and java.sql. -Ursprüngliche Nachricht- Von: Roland Carlsson

Re: AW: AW: Embedded Tomcat and manage requests and responses attheconnectorlevel

2002-08-02 Thread Eriam Schaffter
Thanks Ralph. It helps. However I'm now wondering if it's possible to create a filter with the org.apache.catalina classes because as I've mentionned it I'm using tomcat in embedded mode. So do you know if there is an object that represents a filter ? Eriam Ralph Einfeldt wrote: A filter

RE: Apache 2 and Tomcat 4

2002-08-02 Thread Turner, John
http://www.cnr.berkeley.edu/~salazar/apache_tomcat.html John Turner [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 6:53 AM To: [EMAIL PROTECTED] Subject: Apache 2 and Tomcat 4 Hello All, I am trying to find a

AW: AW: AW: Embedded Tomcat and manage requests and responses attheconnectorlevel

2002-08-02 Thread Ralph Einfeldt
See below: -Ursprüngliche Nachricht- Von: Eriam Schaffter [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 2. August 2002 14:10 An: Tomcat Users List Betreff: Re: AW: AW: Embedded Tomcat and manage requests and responses attheconnectorlevel However I'm now wondering if it's

Re: Tomcat 4 Suse 8

2002-08-02 Thread Steve Russell
Gunter D'Hondt wrote: Same here Tomcat 4.01 works with Suse 8.0 although I'm having problems using the mod_webapp connector with Apache 1.3.23 but standalone Tomcat is working perfect! Thanks everyone. I feel better about buying a new Suse now that I know that the tomcat4

RE: Apache-tomcat integration

2002-08-02 Thread Turner, John
I don't know what to tell you. I built a tomcat 4 + apache 1.3 + mod_jk installation on Tuesday, and my server.xml has no definition for port 8109 at all. Period. Note that I don't use RPMs or any other sort of packages if I can help it. I built apache from source, mod_jk from source, and

Re: Tomcat 4 Suse 8

2002-08-02 Thread Hans Kaiser
Hi Gunter, what are the compatibility issues on SuSE 7.2? I have to use SuSE 7.2 and a actual Tomcat 4.0.x. Could you please explain the problems? Gunter D'Hondt wrote: Thanks everyone. I feel better about buying a new Suse now that I know that the tomcat4 compatibility issues with suse

security filter Realm class file location

2002-08-02 Thread @Basebeans.com
Subject: security filter Realm class file location From: Torgeir Veimo [EMAIL PROTECTED] === I'm working on a security filter that takes a tomcat Realm definition exactly as in server.xml. However, I'm facing the problem that the Realm RealmBase classes (which most realms subclass) is

RE: Oracle 8.1.7 JDBC classes

2002-08-02 Thread Michael Remijan
users, This may sound stupid but did the classname of the driver change? like in the previous version it was com.oracle.sql.Driver and in the new version it's COM.oracle.sql.OracleDriver? I highly doubt it but it's another idea. mike/ -Original Message- From: Ralph Einfeldt

Re: Tomcat 4 Suse 8

2002-08-02 Thread Steve
Hans Kaiser wrote: Hi Gunter, what are the compatibility issues on SuSE 7.2? I have to use SuSE 7.2 and a actual Tomcat 4.0.x. Could you please explain the problems? I actually don't remember, I just couldn't get it to work. I was trying tomcat 4.0 with suse 7.2. I ran a search on google

apache + tomcat 4.1.7

2002-08-02 Thread Michael Remijan
I've seen tons of posts about apache2 and tomcat 4.0.x. what about tomcat 4.1.7? will the same techniques apply? mike/ -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Tomcat 4.1.8 is not finding jar files

2002-08-02 Thread Luiz Ricardo
Hi, I am trying to run the admin webapp and I am catching an IOException telling me that it can not find my jar files in /WEB-INF/lib but the files are there. The same problem is occurring when I try to run the Struts webapps. Does someone know why this is happening?! I am using Tomcat

Multiple instances of Tomcat

2002-08-02 Thread Frank Diakovasilis
I have come across this topic many times in this mailing list, but never paid attention since I never needed to but I now need to run multiple instances of Tomcat on a single server (IIS). The only docs I came across say to set a CATALINA_BASE variable, and that is all they say. What steps

Re: web.xml security-constraint bug?

2002-08-02 Thread Tony_Chao
Is this something that's planned to be fixed in Tomcat 3.3? I'd be willing to help work on a fix if necessary. -Tony On Thu, 1 Aug 2002 [EMAIL PROTECTED] wrote: Date: Thu, 1 Aug 2002 18:15:17 -0400 From: [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL

Database access through JDBC-SERVLET

2002-08-02 Thread khozaima shakir
I am a student and new user of tomcat, and am working on a project that involves accessing database through servlet. The code that i have written compiles and when i run it on tomcat 4.0.4, the statment till the try{... gets executed, but the connection to the database is not made. I would

Re: Apache/Tomcat Connectors List

2002-08-02 Thread David Mossakowski
I think this is a very nice description. The only thing I would add is that there may be a confusion as to why a connector seems to be in two places (in Tomcat and in cases of AJP and WARP in Apache). The confusion can be simply cleared by saying that Tomcat has the _receiving_ ends of

RE: SOAP and web service involving DB2??? HELP Plzz

2002-08-02 Thread Sullivan, Mark E
The web service in its simplest form is just a regular java class. The SOAP server itself basically provides a mapping between the client call and a method in your class. Therefore, you can deploy any regular class and access it as a web service. Check out xml.apache.org/axis for a good SOAP

AW: Multiple instances of Tomcat

2002-08-02 Thread Ralph Einfeldt
Although the following is for unix and tomcat standalone, this should give you the right direction. We have a structure like this: /www/online/site /log dirctory for the log file /conf web.xml server.xml and other files that contain the site specific setup for tomcat

RE: Multiple instances of Tomcat

2002-08-02 Thread Frank Diakovasilis
Thank you Ralph, this should get me started. -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 10:31 AM To: Tomcat Users List Subject: AW: Multiple instances of Tomcat Although the following is for unix and tomcat standalone, this should

RE: SOAP and web service involving DB2??? HELP Plzz

2002-08-02 Thread Nishant_Awasthi
Thanks Mark...Just now I successfully run my first SOAP-DB2 service... Nishant Awasthi Corporate Systems Development Progressive Insurance

Umlaut

2002-08-02 Thread Etienne, Ingo (Goetzfried AG)
Hi, my config is Tomcat 4.0.4 on Windows NT with JDK 1.4. When I'm using german umlaut characters, Tomcat doesn't display them correctly. Neither in the generated HTML Source, nor when I'm recieving a submitted form text field that has a value with those special characters. Has anyone else

Re: Multiple instances of Tomcat

2002-08-02 Thread David Mossakowski
You need to go through the server.xml file and for whatever connectors that use ports that you have uncommente the following fashion: item original port tomcat 1tomcat 2 -- server 8005

RE: Multiple instances of Tomcat

2002-08-02 Thread Frank Diakovasilis
thanks -Original Message- From: David Mossakowski [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 1:45 PM To: Tomcat Users List Subject: Re: Multiple instances of Tomcat You need to go through the server.xml file and for whatever connectors that use ports that you have

SSL over apache

2002-08-02 Thread Andrew Judge
anyone know where a tutorial is on how to get SSL signed certs to work over apache and tomcat? I can get tomcat to work with apache using mod_jk.so and see the webpage on 8443, but when I go to https://localhost/examples, it states that examples can't be found. I assume it has to do with the

RE: Apache 2 and Tomcat 4

2002-08-02 Thread Stephen . Thompson
Thanks, Apart from a few typo's on the page it worked wonderfully. -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: 02 August 2002 13:15 To: 'Tomcat Users List' Subject: RE: Apache 2 and Tomcat 4 http://www.cnr.berkeley.edu/~salazar/apache_tomcat.html John

RE: security filter Realm class file location

2002-08-02 Thread Tathagat (London)
Put the new REALM you make in server/lib (if jar) or in server/classes. -Original Message- From: Jakarta Tomcat Newsgroup [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 14:40 To: [EMAIL PROTECTED] Subject: security filter Realm class file location Subject: security filter

JDBC Connection Pools

2002-08-02 Thread Chris Ruegger
Just a sanity check question: It looks like Tomcat does not inherently support JDBC Data Source and/or connection pools - with Weblogic I can set one up in the config.xml file. Am I correct in this assumption? Do people write their own connection pool manager for JDBC connections when using

Re[2]: Oracle 8.1.7 JDBC classes

2002-08-02 Thread Jacob Kjome
Hello Charles, The difference between putting your Oracle driver .jar in $TOMCAT_HOME/lib and $TOMCAT_HOME/common/lib is that in common/lib, both the container and your webapps see the driver where as in plain old lib (shared/lib in Tomcat-4.1.x), only your apps see the driver library. If you

RE: SSL over apache

2002-08-02 Thread Sullivan, Mark E
Did you place JkMount statements inside the ssl virtual host? Remember that JkMount statements are in relation to the virtual host in which they are placed. Any JkMount statements not in a specific host will only apply to the default virtual host. Therefore, the ssl host needs it's own JkMount

RE: Umlaut

2002-08-02 Thread Shapira, Yoav
Hi, This is probably the first thing you checked, but just in case: are you sure you are specifying the correct encoding (charset) all the way around? For example the HTML page, any string reading you're doing to get the form values, etc? Yoav Shapira Millennium ChemInformatics -Original

RE: JDBC Connection Pools

2002-08-02 Thread Turner, John
Most folks use open source connection pool managers. DBCP, from the Jakarta Commons project is one: http://jakarta.apache.org/commons/index.html Here is a post about using DBCP: http://marc.theaimsgroup.com/?l=tomcat-userm=102225547106556w=2 Others I have seen mentioned include poolman, and

Re: JDBC Connection Pools

2002-08-02 Thread Jacob Kjome
Hello Chris, You really need to read the Tomcat documentation before asking a question like this: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-resources-howto.html#JDBC%20Data%20Sources http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples-howto.html Oh, one thing.

webapp startup problem w Tomcat4.1.7

2002-08-02 Thread Michael Remijan
users, I've started developing with tomcat-4.1.7 with jdk1.4.1b14 on windows2000. i'm deployed in this directory: C:\apps\Tomcat\jakarta-tomcat-4.1.7\webapps\diary. Tomcat outputs to it's log file the following error when trying to deploy a webapp. Anyone have an idea about this one?

RE: webapp startup problem w Tomcat4.1.7

2002-08-02 Thread Shapira, Yoav
Hi, Are you sure you have the proper permissions set on the work directories tomcat uses? It needs to be able to write there. Also, is the jar (MossLibrary.jar) actually there? Can you jar tvf to see its contents? Yoav Shapira Millennium ChemInformatics -Original Message- From:

Re: JDBC Connection Pools

2002-08-02 Thread Peter Mutsaers
Chris == Chris Ruegger [EMAIL PROTECTED] writes: Chris It looks like Tomcat does not inherently support JDBC Data Chris Source and/or connection pools - with Weblogic I can set Chris one up in the config.xml file. Chris Am I correct in this assumption? Do people write their own

RE: Oracle 8.1.7 JDBC classes

2002-08-02 Thread Mike Jackson
I run the 8.1.7 drivers with UnixWare 7.1.1 and with tomcat 3.x (forget which version, fairly recent but not the most recent). I don't have any problems with the jar not loading, and I've used the jar in the $TOMCAT_HOME/lib subfolder (under apps) and in the WEB-INF/lib directories. You might

RE: JDBC Connection Pools

2002-08-02 Thread Durham David Cntr 805CSS/SCBE
some drivers ship with support for connection pooling. e.g. Oracles latest jdbc drivers -Original Message- From: Peter Mutsaers [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 10:39 AM To: Tomcat Users List Subject: Re: JDBC Connection Pools Chris == Chris Ruegger

RE: JDBC Connection Pools

2002-08-02 Thread Mike Jackson
It didn't when I started doing things, so I started using poolman (on sourceforge). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Chris Ruegger [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 8:02 AM To: Tomcat Users List Subject: JDBC Connection

RE: Umlaut

2002-08-02 Thread Etienne, Ingo (Goetzfried AG)
Thanks for your hint, I was using meta http-equiv=Content-Type content=text/html; charset=utf-8 / but charset iso-8859-1 was correct. Thanks again. Ingo -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED]] Sent: Freitag, 2. August 2002 17:01 To: Tomcat Users List

Error in MOD_JK

2002-08-02 Thread Ashish Kulkarni
Hi, I am using tomcat4.0.4 and apache2.0.39 I am using mod_jk for connecting them, every thing seems fine when working and i never get any error on screen , but my mod_jk.log file keeps getting this error [Wed Jul 31 12:12:36 2002] [jk_connect.c (151)]: jk_open_socket, connect() failed errno =

JSP getting submited twice

2002-08-02 Thread Ashish Kulkarni
Hi, I am using tomcat4.0.4 and apache2.0.39, I am developing a web application and some jsp, but the problem is all the jsp are getting submitted twice, so how do i debug and find why??? here is some sample code i use to request other jsp, i use javascript and onclick event of a button function

important help

2002-08-02 Thread Anil Garg
please see the following error..and tell me on what lines should i start thinking. This error is coming on a particular users machine ..and doesnt come at other locations: Error: 500 Location: /servlet/NROptions Internal Servlet Error: java.lang.OutOfMemoryError: at

Re: important help

2002-08-02 Thread Anil Garg
i would like to add more... i am not able to reproduce the errorhow can i reproduce it.. if i dint provide the sufficinet information u need plz tell me. regards anil - Original Message - From: Anil Garg [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 02, 2002 12:26 PM

Re: important help

2002-08-02 Thread Michael Locasto
This is more of a problem with the way your application is architected, rather than Tomcat. The java.lang.OutOfMemoryError occurs when the JVM cannot allocate any space for a new object, and the garbage collector cannot collect any unused heap space. That's is the low-level reason the

Re: JSPC Precompiling Issues and a handy utility

2002-08-02 Thread Irina Lishchenko
Anyway, when I use jspc to precompile I get all the .java files in , but no class files. Does jspc only generate the servlet java files? The whole point of precompiling was to prevent javac from being called to compile those servlets to work around the javac memory leak and speed up page

Re: AW: Apache + mod_jk + Tomcat + Internet

2002-08-02 Thread Carrie Salazar
there is an excellent tutorial on running Cygwin's OpenSSH SSH2 here: http://tech.erdelynet.com/cygwin-sshd.asp i have it running beautifully on my win2k/apache2.0.39/tomcat4.0.4 machine. cygwin is VERY cool if you are originally used to working on UNIX but forced on a window$ machine. --

Apache + Tomcat sometimes pegs CPU

2002-08-02 Thread Jeff Larsen
I'm running Apache 1.3.23/Tomcat 4.0.3 (jdk1.3.1) on Solaris 7 connected with mod_jk. Sometimes I I find that the CPU on the web server box is pegged at 100%. It's a dedicated server and I am bouncing Apache and Tomcat once a week to help alleviate the problem. If I didn't restart every week,

Re: Apache + Tomcat sometimes pegs CPU

2002-08-02 Thread Jeff Larsen
I forgot to mention... Even when the CPU is pegged, the site functions normally. Jeff - Original Message - From: Jeff Larsen [EMAIL PROTECTED] To: tomcat-user [EMAIL PROTECTED] Sent: Friday, August 02, 2002 12:02 PM Subject: Apache + Tomcat sometimes pegs CPU I'm running Apache

Re: important help

2002-08-02 Thread Anil Garg
thanx for ur mail.. could u plz tell me: If you are unable to re-architect your application to consume less memory or free memory up, you can try upgrading to JDK 1.4.x (which has a better garbage collector) How to check which version of jdk is on my machine.(i hope you wont mind questions

Re: Apache + Tomcat sometimes pegs CPU

2002-08-02 Thread Tim Funk
Upgrade to 4.0.4. Earlier (4.0.X) versions have a problems with POST requests when the browser terminates before sending enough data. This caused an infinite loop between apache and tomcat. Here is the simple way to reproduce, (and watch your cpu go way up):

RE: important help

2002-08-02 Thread Shapira, Yoav
Hi, Try java -X to see all the java pseudo-unsupported options ;) The default heap is 64M. You want to add -XmxNm where N is the maximum number of megabytes you need, e.g. -Xmx512m for 512MB. For tomcat, you will want to add this as a JAVA_OPTS setting. See the

Re: DB2/servlet error....Help need please

2002-08-02 Thread Nishant_Awasthi
Can anyone help me Please !!! Thanks Nishant Awasthi Nishant_Awasthi@progr

Re: important help

2002-08-02 Thread Will Hartung
Either way, you want to take a HARD look at what you're doing where this code explodes. Make sure it's doing what you want to do. This isn't either a Tomcat or even a JVM problem. It's a big alert that something is basically wrong here. If this is easily reproducible with a single request, then

Re: Tomcat 4 Suse 8

2002-08-02 Thread Irina Lishchenko
On Thursday 01 August 2002 19:38, you wrote: I gave up on trying to get Tomcat 4 to work with Suse 7.2 Has anyone gotten tomcat 4.* to work on suse 8? Steve I run Tomcat 4.0.4 on SuSE Linux 7.3 (if this helps;) ilis -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

Re: DB2/servlet error....Help need please

2002-08-02 Thread Denis Haskin
Can you run the same code outside of a servlet context? If so then it sounds like classpath problems. If not, can you re-install DB2? Sounds like your installation might be bad or you might be missing some components. dwh [EMAIL PROTECTED] wrote: (Thu Aug 01 15:52:50 2002) pid= 2192

Re: DB2/servlet error....Help need please

2002-08-02 Thread Nishant_Awasthi
Hello Denis Thanks for your suggestions... I tried reinstalling DB2 but the same problem is coming... If you look here it asks for someFixPack 2 or later. http://www-3.ibm.com/software/data/db2/udb/ad/v7/abg/db2ax44.htm I am using IBM DB2 Version 7.2 FixPack 3. and IBM WebSphere Application -

Re: Apache + Tomcat sometimes pegs CPU

2002-08-02 Thread Jeff Larsen
Thanks, I figured that I wasn't the first one to see this. Is my current mod_jk going to need upgrading also? Jeff - Original Message - From: Tim Funk [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, August 02, 2002 12:28 PM Subject: Re: Apache + Tomcat sometimes

RE: DB2/servlet error....Help need please

2002-08-02 Thread Turner, John
Wait, you're not even using tomcat?!?!?!?! :( John Turner [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 2:32 PM To: Tomcat Users List Subject: Re: DB2/servlet errorHelp need please Hello Denis Thanks for

RE: DB2/servlet error....Help need please

2002-08-02 Thread Nishant_Awasthi
I am trying to access servlet via Tomcat as well as WebSphere... If it runs with one it will run with other too... Nishant Awasthi Corporate Systems Development Progressive Insurance

failed to enable SSL on Tomcat using a cert signed by using OpenSSL

2002-08-02 Thread @Basebeans.com
Subject: failed to enable SSL on Tomcat using a cert signed by using OpenSSL From: tom [EMAIL PROTECTED] === I successfully enabled SSL on Tomcat 4.04 with using a Trail cert signed by the Verisign. Descrptions of the steps: 1. use c:\j2sdk1.4.0\bin\keytool to generate a key and a .keystore file

Re: Apache + Tomcat sometimes pegs CPU

2002-08-02 Thread Tim Funk
No. It was a bug in the connector. (Not checking eof) Jeff Larsen wrote: Thanks, I figured that I wasn't the first one to see this. Is my current mod_jk going to need upgrading also? Jeff - Original Message - From: Tim Funk [EMAIL PROTECTED] To: Tomcat Users List [EMAIL

Re: Apache + Tomcat sometimes pegs CPU

2002-08-02 Thread steve Burrus
Hello there, I need the file--mod_jk.dll--to be able to smoothly connect the Tomcat 4.0.* Server with the Apache HTTP Server!!! Does anyone out there have the download link to access and then install this file WHICH I STILL DON'T HAVE! I am getting sick and tired of seeing other members of the

RE: STEVE BURRUS (was: Apache + Tomcat sometimes pegs CPU)

2002-08-02 Thread Turner, John
And we are getting sick (or at least I am) of you posting messages like this Hijacking threads to make your demands is not polite! Learn some manners. Your question has been answered numerous times. I have answered it twice myself! This will make the third time. This is the last time I

Does Tomcat 4.0.3 work on Windows98

2002-08-02 Thread Steve
Hi Everyone, I have a very quick question. Does anyone know if Tomcat 4.0.3 works on Windows 98? Thank you!!! __ Do You Yahoo!? Yahoo! Health - Feel better, live better http://health.yahoo.com -- To unsubscribe, e-mail: mailto:[EMAIL

Re: JSPC Precompiling Issues and a handy utility

2002-08-02 Thread adam kramer
On Fri, 2 Aug 2002, Irina Lishchenko wrote: This is not the answer but most likely a question, which came in my head while I was reading. AFAIK a running server (and server which does not serve developers' needs) compiling is made only one time when the server gets the request for a certain

  1   2   >