Re: tomcat oracle jdbc pooling

2004-10-11 Thread Bj
No, I don't want to. I want to use an OracleDatasource object but to manipulate an simple Datasource in my code. So my OracleDatasource has to be pre-configured at the loading. I thought Tomcat was giving a Map of parameters to the datasource and the datasource search in the Map for correspondi

RE: [Possible bug?] Context configurations and .WAR deployment

2004-10-11 Thread raiden
Never mind... this was my mistake. It is working just fine. Thanks again, for the help! -Raiden Johnson On Mon, 11 Oct 2004 [EMAIL PROTECTED] wrote: > Actually, I spoke too soon... about it working in production. > > While it's true that the application does load in Tomcat, and everything >

Re: Where is Catalina.out?

2004-10-11 Thread Hassan Schroeder
Sng Wee Jim wrote: Correct me if I am wrong, Catalina.out is only created when tomcat is running on unix. OK, you're corrected :-) I see catalina.out created on W2K as well as Mac OS X, Linux... -- Hassan Schroeder - [EMAIL PROTECTED] Webtuitive Design === (+1) 408-938-

RE: Where is Catalina.out?

2004-10-11 Thread Fred Yu
Thanks Jim I have tried on linux (Redhat) and can not find Catalina.out under logs directory, that was the reason I tried that on windows 2000. Cheers Fred -Original Message- From: Sng Wee Jim [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 12, 2004 4:23 PM To: Fred Yu; [EMAIL PROTECTED

RE: Where is Catalina.out?

2004-10-11 Thread Sng Wee Jim
On windows the logs will go to /log directory. It will appear in file localhost_log.-MM-dd.txt Correct me if I am wrong, Catalina.out is only created when tomcat is running on unix. - Jim -Original Message- From: Fred Yu [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 12, 2004 10:49

Re: multiple tomcat instance and log4j

2004-10-11 Thread QM
On Mon, Oct 11, 2004 at 06:31:46PM -0400, Simon Zeng wrote: : 1. Would it be better to keep one log for each tomcat instance or all share : the same log? That depends: if all apps are running in the same container (same JVM), then it's helpful to see everything in one place. You can play Cause-an

Re: reloading JSP files without reloading classes/beans

2004-10-11 Thread QM
On Mon, Oct 11, 2004 at 05:27:05PM -0500, Jonathan Wilson wrote: : New Question (While I've got ya :): Given that I can use a WAR file : to "deploy," would you advise using Tomcat 5.x as my test server, : creating a WAR and then deploying that to a production 3.3.1 server? : This would kinda

Re: Blocking access to static content

2004-10-11 Thread QM
On Mon, Oct 11, 2004 at 01:27:14PM -0600, Robert Harper wrote: : I tried filters but my filters were not always called. It may be helpful to get to the root of why the filters weren't called. What happened? What was in web.xml? Better yet, just define security-constraints in web.xml and limit ac

Where is Catalina.out?

2004-10-11 Thread Fred Yu
Hi I just downloaded and unpacked tomcat 5.0.28 to window 2000 machine. I deployed my web war file and am able to run it through window explorer. But I can not find Catalina.out file under logs directory. The tomcat is in default configuration. Can anyone tell me why? Cheers Fred -

Re: Performance issue

2004-10-11 Thread Faisal Abdullah
Hi, thanks for the insights. I've done what you suggested, and the load does look better, but still sluggish. The machine's are not swapping, simply JVM's max memory is 2GB. Our RAM is 4GB. Any attempt to assign larger max memory to java, will cause failure in starting tomcat. A friend has tried d

JNDI Authentication...

2004-10-11 Thread Ross Rankin
I am using JNDI and Tomcat 4.1 for form-based authentication on a OpenLDAP 2.1 server. The OS is Fedora Core 2. This is a new server I am setting up to replace an exisiting one... Upgraded hardware / software... Anyway, authentication works for the user but doesn't find the user in the grou

Re: Tomcat5 and Debian Sarge

2004-10-11 Thread Ben Souther
Did you try hitting it with a browser to see if it is running? http://localhost:8080 Your logs should be in /logs On Mon, 2004-10-11 at 18:28, Kai Neubecker wrote: > I try to start Tomcat 5 first time. > > /usr/local/tomcat/bin/startup.sh > Using CATALINA_BASE: /usr/local/tomcat > Using CATA

Running tomcat 5.0 as a service in Windows OS

2004-10-11 Thread Pramod Jain
I have searched thru the mailing list and not found a solution, I am sure it is there ... Please point me to it I am able to start tomcat5.0 as a service with tomcat_home\conf\server.xml, but unable to specify start up configuration parameters like "start -config "abc\my_server.xml" Here is wha

Does unpackWARs setting work?

2004-10-11 Thread Larry Meadors
OK, here is my config: When I start tomcat, I see everything unpacked into my work directory. What's up with that? Am I missing something here? Does unpackWARs="false" mean something else? Larry - To unsubscribe, e-mail:

Tomcat5 and Debian Sarge

2004-10-11 Thread Kai Neubecker
I try to start Tomcat 5 first time. /usr/local/tomcat/bin/startup.sh Using CATALINA_BASE: /usr/local/tomcat Using CATALINA_HOME: /usr/local/tomcat Using CATALINA_TMPDIR: /usr/local/tomcat/temp Using JAVA_HOME: /usr/local/java the server do not start. I can't find a logfile or a error i

Re: reloading JSP files without reloading classes/beans

2004-10-11 Thread Jonathan Wilson
Bob, You just answered my follow up to your previous email :) Hmm, so I run a concurrent version of my production app(being careful not to impact the databases) either on a different instance of Tomcat or just a different context within the same instance of Tomcat. Then when I'm ready I pa

multiple tomcat instance and log4j

2004-10-11 Thread Simon Zeng
Hello, I have a question here. Our application is running under multiple tomcat intance. We have our own plan logging mechanism. We are moving to use log4j to replace in-house one. 1. Would it be better to keep one log for each tomcat instance or all share the same log? a. If former, how can we c

Re: reloading JSP files without reloading classes/beans

2004-10-11 Thread Robert Bateman
The best advice I can give you is to investigate running your "test" application in a different context on the server. That way, you can recompile / alter the JSP files and everything else to your hearts content. IF that isn't possible, Tomcat runs quite nicely on my development machine where I c

Re: Ideas on deploying a web-app piece-meal

2004-10-11 Thread Robert Bateman
We use Web Archives (WAR files). I find this the most comprehensive method of deployment. Everything that is needed for the particular application is included in one file for upload. Bob On Mon, 2004-10-11 at 17:37, Jonathan Wilson wrote: > I need some advice/HOW-TO's on developing and then dep

Ideas on deploying a web-app piece-meal

2004-10-11 Thread Jonathan Wilson
I need some advice/HOW-TO's on developing and then deploying web-apps to a production server. I've yet to find anything comprehensive and that details the pros/cons of each method. Ideas/links? Thanks, JW - To unsubscribe, e-

Re: Forum instead of mailist!!

2004-10-11 Thread Shankar Unni
Andoni wrote: That's excellent. If I unsubscribe can I still read these? Can I reply? Yes, you can reply. The first time you try to reply, gmane.org will send you an autoreply. You have to reply to the auto-reply to authenticate your mail address, and then you're up and running. That's how I'm p

Re: Weird Red Hat Enterprise Startup

2004-10-11 Thread Shankar Unni
Shapira, Yoav wrote: Any JVM switch to make an internal JVM crash "disappear" is cruising for a bruising. Fully understood. Most likely, it's missing OS-level patches for your system. True, except that for the Linux case, we are running on one of the supported OSes (RH EL 3.0WS, stock), and ther

reloading JSP files without reloading classes/beans

2004-10-11 Thread Jonathan Wilson
Hello, I'm running 3.3.1 (and yes, I'll be upgrading to 5.x in the next few weeks as time allows) and want to reload JSP files, but not any class files. The root of the problem is that during beta testing I'm making lots of changes quickly(to JSP and classes/beans), but my system is in use.

Re: JK2 configuration

2004-10-11 Thread Debra Bartling
At 04:03 PM 10/10/2004 -0700, Daxin Zuo wrote: MY system is UNIX (Sparc) tomcat 5.0.28, Apache2.0.43. when I start the apache, I get the error in the apache error_log file. [Sun Oct 10 15:12:24 2004] [error] jk2_init() Can't find child 6351 in scoreboard [Sun Oct 10 15:12:24 2004] [error] mod_jk

Katja Handtusch/268/DCAG/DCX ist außer Haus.

2004-10-11 Thread katja . handtusch
Ich werde ab 11.10.2004 nicht im Büro sein. Ich kehre zurück am 22.10.2004. Ich werde Ihre Nachricht nach meiner Rückkehr beantworten. Bei dringenden Angelegenheiten wenden Sie sich bitte an meine Vertretung Alexandra Pürschel (Tel.: 5463). --

RE: Blocking access to static content

2004-10-11 Thread Arnaud HERITIER
You can put all your resources (images, jsp, ..) under the WEB-INF directory. Arnaud. > -Message d'origine- > De : Robert Harper [mailto:[EMAIL PROTECTED] > Envoyé : lundi 11 octobre 2004 21:27 > À : 'Tomcat Users List' > Objet : RE: Blocking access to static content > > I tried filters

RE: allowTrace noSuchMethodException in Multiple Instace Admin TC 4.1.30

2004-10-11 Thread Larry Isaacs
See Bug 27648. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=27648 Cheers, Larry > -Original Message- > From: Montz, James C. (James Tower) [mailto:[EMAIL PROTECTED] > Sent: Monday, October 11, 2004 3:25 PM > To: [EMAIL PROTECTED] > Subject: allowTrace noSuchMethodException in Multi

RE: Blocking access to static content

2004-10-11 Thread Robert Harper
I tried filters but my filters were not always called. Robert S. Harper 801.265.8800 ex. 255 > -Original Message- > From: QM [mailto:[EMAIL PROTECTED] > Sent: Monday, October 11, 2004 12:57 PM > To: Tomcat Users List > Subject: Re: Blocking access to static content > > On Mon, Oct 11, 20

allowTrace noSuchMethodException in Multiple Instace Admin TC 4.1.30

2004-10-11 Thread Montz, James C. (James Tower)
In a Multiple Instance Tomcat 4.1.30 deployment, receiving the following error when attempting to view the 'Connector' through TC admin; Page reports; HTTP Status 500 - Error retrieving attribute allowTrace type Stat

Re: Blocking access to static content

2004-10-11 Thread QM
On Mon, Oct 11, 2004 at 12:39:13PM -0600, Robert Harper wrote: : I have turned the listings off in the default servlet. Now how do I keep users : from directly accessing anything outside of the defined servlets and JSP pages : even if the user knows the path to the file? Filters, filters, filters.

RE: [Possible bug?] Context configurations and .WAR deployment

2004-10-11 Thread raiden
Actually, I spoke too soon... about it working in production. While it's true that the application does load in Tomcat, and everything is initialized correctly, I can no longer access my application from Apache via jk2. All requests are still making it to Tomcat, but the "/" address space no long

RE: versions 2.3 and 2.4 of web.xml

2004-10-11 Thread Steve Kirk
Yoav, I have recreated my example. I deleted my installation and reinstalled 5.0.27 from scratch (on win2k / JDK 1.4.2_05). I then added a simple webapp called "test" by adding these three files under the webapps folder: test\index.jsp test\prelude.jspf test\WEB-INF\web.xml The file contents are

Re: Blocking access to static content

2004-10-11 Thread Tim Funk
The best way is to place all protected content under WEB-INF. -Tim Robert Harper wrote: I have turned the listings off in the default servlet. Now how do I keep users from directly accessing anything outside of the defined servlets and JSP pages even if the user knows the path to the file?

Blocking access to static content

2004-10-11 Thread Robert Harper
I have turned the listings off in the default servlet. Now how do I keep users from directly accessing anything outside of the defined servlets and JSP pages even if the user knows the path to the file? Robert S. Harper Senior Engineer 1100 East 6600 South, Suite 300 Salt Lake City, UT 84121

RE: [Possible bug?] Context configurations and .WAR deployment

2004-10-11 Thread raiden
Ok, sounds good. One thing I noticed with the context.xml, is that it only seems to work when it's packaged in a .war file. However, in development, I am actually deploying a whole ROOT directory directly, instead of a packaged .war file. I noticed that when I just copied a context.xml into weba

OFF TOPIC- Starting a servlet

2004-10-11 Thread phil campaigne
Thanks Hassan, That's what I needed. Pretty basic huh? Phil - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [Possible bug?] Context configurations and .WAR deployment

2004-10-11 Thread D'Alessandro, Arthur
You only need to get rid of the cached version if you made changes to it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Mon Oct 11 14:05:58 2004 To: Tomcat Users List Subject:RE: [Possible bug?] Context configurations and .WAR deployment Bingo

RE: [Possible bug?] Context configurations and .WAR deployment

2004-10-11 Thread raiden
Bingo! That worked. Thank you! However, you brought up something that makes a lot more sense to me. I always thought it was strange that I had to have a ROOT.xml outside of the webapp .war file. It makes a whole lot more sense to me to include ROOT.xml in the webapp .war file (under META-INF),

Adding DataSources to a specific webapp context using MBeanServer

2004-10-11 Thread Jérôme BATON
Hi all, My goal is to dynamically add DataSources to the context of a specific webapp. To do this, I wrote a struts plugin which reads a properties file. I've looked at the admin webapp for the JMX/MBeanServer code, I used the code in class SaveDataSourceAction. And it works fine _only if_

Re: OFF TOPIC-Starting a servlet

2004-10-11 Thread Hassan Schroeder
phil campaigne wrote: I want to start my application from a start servlet called by the submit button and action tag in an html page. When I press the submit button the url uncludes parameters such as, StartServlet?=&Run=START which my servlet is not expecting. Is there a way to start my servle

RE: [Possible bug?] Context configurations and .WAR deployment

2004-10-11 Thread D'Alessandro, Arthur
Try changing the docbase from ROOT TO ROOT.war. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Mon Oct 11 13:39:17 2004 To: Tomcat Users List Subject:RE: [Possible bug?] Context configurations and .WAR deployment Hello, I will try including wh

Fw: Realm for Admin tool?

2004-10-11 Thread Andoni
Hello, I have just changed over from Tocmat 4.0.4 to Tomcat 4.1.24 and now I want to get the Admin tool working. The error message I am getting is "No Realm has been configured to authenticate against" but there is no Realm in my Windows version of Admin tool either and it seems to work fine!

Re: Undefined hosts being directed to localhost

2004-10-11 Thread David Smith
Or as I've seen, kiddies on the internet are looking for an open proxy to hide their tracks or get past firewall rules. I just make sure my server is properly configured not to proxy and ignore it. What they really get from a properly configured server is either (a) a 404 if the requested res

Re: Forum instead of mailist!!

2004-10-11 Thread Andoni
That's excellent. If I unsubscribe can I still read these? Can I reply? Andoni. - Original Message - From: "QM" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Monday, October 11, 2004 5:20 PM Subject: Re: Forum instead of mailist!! > On Mon, Oct 11, 2004 at 05:13:

RE: [Possible bug?] Context configurations and .WAR deployment

2004-10-11 Thread raiden
Hello, I will try including what I have in ROOT.xml as context.xml in META-INF, and then remove the ROOT.xml each time I remove the webapps/ROOT tree to copy in a new ROOT.war into webapps. However, here is what is in my ROOT.xml right now (that is causing the problem of ROOT.war not being expand

Re: Forum instead of mailist!!

2004-10-11 Thread Michael McGrady
-1 if I had a vote. Somethings need to stay the same to work on important things. Michael Ben Souther wrote: -1 This comes up every so often and goes nowhere. The auto replies are a minor annoyance but easy enough to delete. On Mon, 2004-10-11 at 11:13, Bernhard Slominski wrote: These autore

Re: Forum instead of mailist!!

2004-10-11 Thread Robert F. Hall
Ben Souther wrote: -1 This comes up every so often and goes nowhere. The auto replies are a minor annoyance but easy enough to delete. Or you can set up (depending on your email client) a Junk filter to handle them. BTW, is "-1" a thread weighting ?

OFF TOPIC-Starting a servlet

2004-10-11 Thread phil campaigne
I want to start my application from a start servlet called by the submit button and action tag in an html page. When I press the submit button the url uncludes parameters such as, StartServlet?=&Run=START which my servlet is not expecting. Is there a way to start my servlet from an html button

Re: Forum instead of mailist!!

2004-10-11 Thread Ben Souther
-1 This comes up every so often and goes nowhere. The auto replies are a minor annoyance but easy enough to delete. On Mon, 2004-10-11 at 11:13, Bernhard Slominski wrote: > These autoreply is really annoying, but it can easily happen if you forget > to unsubscribe, before leaving on holiday >

AS/400 DB2

2004-10-11 Thread sudip shrestha
Hi ! I am trying to connect to an AS/400 DB2 via IBM DataDirect JDBC DriverWondering if anybody has any experience with this. You have to specify a location and collectionId attribute. My url connection string looks like this: "jdbc:datadirect:db2://serverName:5;Location=nameOfDatabase;C

RE: Forum instead of mailist!!

2004-10-11 Thread Caldarale, Charles R
> From: QM [mailto:[EMAIL PROTECTED] > Subject: Re: Forum instead of mailist!! > > On Mon, Oct 11, 2004 at 05:13:46PM +0200, Bernhard Slominski wrote: >> : That's why I vote for a forum instead of a mailist! >> >> Forum-like: http://news.gmane.org/gmane.comp.jakarta.tomcat.user >> >> NNTP: nntp:

RE: tomcat oracle jdbc pooling

2004-10-11 Thread David Short
Are you reading and setting the parameter values in your code before you create the connection pool? e.g. int MaxStatements = Integer.parseInt(application.getInitParameter("maxStatements")); -Original Message- From: Bj [mailto:[EMAIL PROTECTED] Sent: Monday, October 11, 2004 9:30 AM To: T

Re: tomcat oracle jdbc pooling

2004-10-11 Thread Bj
hi, I'm using simple OracleDatasource and I want to activate OracleDataSource.setMaxStatements() and OracleDataSource.setImplicitCachingEnabled() through tomcat server.xml or application web.xml. For tomcat 5.0.19, when I add parameters in web.xml or server.xml it doesn't work. I've tried in

Re: Forum instead of mailist!!

2004-10-11 Thread QM
On Mon, Oct 11, 2004 at 05:13:46PM +0200, Bernhard Slominski wrote: : That's why I vote for a forum instead of a mailist! Forum-like: http://news.gmane.org/gmane.comp.jakarta.tomcat.user NNTP: nntp://news.gmane.org/gmane.comp.jakarta.tomcat.user : Does anyone agree? Not I ;) -QM -- softw

Re: How to get rid of 'null' in forms

2004-10-11 Thread Ben Souther
This is the expected behavior. See: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25241 for more details. On Mon, 2004-10-11 at 11:40, Michael Truman wrote: > I am attempting to move a web application from Tomcat 4.0.6 to 5.0.27. > But I am having a problem - in 5.0.27 when a JSP display

Katja Handtusch/268/DCAG/DCX ist außer Haus.

2004-10-11 Thread katja . handtusch
Ich werde ab 11.10.2004 nicht im Büro sein. Ich kehre zurück am 22.10.2004. Ich werde Ihre Nachricht nach meiner Rückkehr beantworten. Bei dringenden Angelegenheiten wenden Sie sich bitte an meine Vertretung Alexandra Pürschel (Tel.: 5463). --

2 way SSL with Axis and Tomcat as a Service

2004-10-11 Thread Hubble, Christopher
Welp, after much trial and tribulation, I finally got axis using 2 way ssl. This required me to custom set up tomcat as a service, and I finally got that working. Once I get my code all cleaned up, I'll post the relavent details. Chris

Re: Undefined hosts being directed to localhost

2004-10-11 Thread Hassan Schroeder
Robert Hunt wrote: Okay, I should have remembered about the defaultHost attr of the node. (duh Rob!) However, I'd like to redirect/stop spurious requests that have nothing to do with my hosts; I've gotten a couple requests with "www.yahoo.com" as the requested host. Anyone already got a (or c

Re: Custom configuration tags

2004-10-11 Thread Filip Hanik - Dev
yes, in web.xml, and then you can read the parameter from the ServletContext object Filip - Original Message - From: "Hubble, Christopher" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 11, 2004 10:38 AM Subject: Custom configuration tags Is there a way to define cus

Custom configuration tags

2004-10-11 Thread Hubble, Christopher
Is there a way to define custom configurations in tomcat? I have a servlet that I want to save in a user definable directory. Right now I have a simple config file that I read in from the servlet and get the path from. Is there some way to define this in server.xml or web.xml instead? Chris ---

How to get rid of 'null' in forms

2004-10-11 Thread Michael Truman
I am attempting to move a web application from Tomcat 4.0.6 to 5.0.27. But I am having a problem - in 5.0.27 when a JSP displays a form backed by a javabean the uninitialized properties of the bean are displayed as 'null' rather than as a blank string as was done in 4.0.6. I know some other app

RE: Tomcat 4 as an NT Service

2004-10-11 Thread Hubble, Christopher
If it were just one machine, that wouldn't be a problem. However, I need to set this up so that any user can install it. I think I finally got it working, however, it doesn't seem to want to stop. Anyone have any suggestions? Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EM

RE: Forum instead of mailist!!

2004-10-11 Thread Dale, Matt
This isn't the same as an out of office which can easily be set up to only respond to each address once. You shouldnt be signing up to a list like this using an address with any kind of auto-responder. I prefer this way of working to a forum as do most on here. -Original Message- From:

RE: tomcat oracle jdbc pooling

2004-10-11 Thread David Short
Take a look here to get the skinny on what's available (http://www.exciton.cs.rice.edu/JavaResources/Oracle/oracle/jdbc/pool/Oracle ConnectionCacheImpl.html). Also, I set the "Setters" in my web.xml file. is set in either your server.xml or your /tomcat/conf/catalina/localhost/webapp.xml file, d

RE: Tomcat 4 as an NT Service

2004-10-11 Thread khanaz
I see.. Why don't you try to modify the registry key directly. Head over to HKLM\SYSTEM\CurrentControlSet\Services\[your tomcat service]\ Look for the "ImagePath" key.. You should be able to update that value to whatever you want. Thanks, Azam Khan Network Data Support Center Verizon Wireless

Re: Forum instead of mailist!!

2004-10-11 Thread Andoni
I don't see why we just can't use NNTP and have a proper newsgroup. Andoni. - Original Message - From: "Bernhard Slominski" <[EMAIL PROTECTED]> To: "'Tomcat Users List'" <[EMAIL PROTECTED]> Sent: Monday, October 11, 2004 4:13 PM Subject: Forum instead of mailist!! > These autoreply is

Re: Forum instead of mailist!!

2004-10-11 Thread devenderb
absolutly, I just registerd and have more than 50 mails to delete in just 4 hours. any way this will be my last mail. I am oing to unscribe Quoting Bernhard Slominski <[EMAIL PROTECTED]>: > These autoreply is really annoying, but it can easily happen if you forget > to unsubscribe, before leavin

Forum instead of mailist!!

2004-10-11 Thread Bernhard Slominski
These autoreply is really annoying, but it can easily happen if you forget to unsubscribe, before leaving on holiday That's why I vote for a forum instead of a mailist! Does anyone agree? Cheers Bernhard -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Gesendet:

RE: Tomcat 4 as an NT Service

2004-10-11 Thread Hubble, Christopher
I'm doing client auth and need to provide the server with a truststore. Your method only works for one initial run of tomcat. As soon as you stop the service, the parameter goes away, and upon starting again, it's back to the default. Chris -Original Message- From: [EMAIL PROTECTED] [ma

RE: Tomcat 4 as an NT Service

2004-10-11 Thread khanaz
Hello Chris: If you don't mind me asking, what args do you need to pass to enable SSL? My implementation of SSL is all done through my {CATALINA_HOME}\conf\server.xml file... In either case, if you wish to pass arguments to the Apache Tomcat service, just go into computer management (right click

AutoReply: Tomcat 4 as an NT Service

2004-10-11 Thread tester
Hello "Tomcat Users List" <[EMAIL PROTECTED]>, This refers to your mail with subject as "Tomcat 4 as an NT Service". Thank you for sending your CV and registering with A.S. Consultancy Services. Our team will review your CV and match it against current requirements. If your profile matches wi

Tomcat 4 as an NT Service

2004-10-11 Thread Hubble, Christopher
I'm trying to install tomcat 4 as a service. I can't use the exe as I need to pass in jvm args for SSL. I've tried multiple different args to tomcat.exe. I've seen several posts mentioning that the jvm's are different. I tried the one in java_home\jre\bin\server and the one in client. They bot

Re: AutoReply: ***

2004-10-11 Thread Bj
I'm not the owner of this list but I've already wrote to this address. By the way, I didn't found any moderator or owner address for the mailing lists on the Jakarta site. Bj Andoni a écrit : Can the owner of the list maybe write to [EMAIL PROTECTED] and ask them to fix this problem? Andoni.

Re: AutoReply: ***

2004-10-11 Thread Andoni
Can the owner of the list maybe write to [EMAIL PROTECTED] and ask them to fix this problem? Andoni. - Original Message - From: <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Monday, October 11, 2004 2:48 PM Subject: AutoReply: Re: tomcat oracle jdbc pooling > >

AutoReply: Re: tomcat oracle jdbc pooling

2004-10-11 Thread tester
Hello "Tomcat Users List" <[EMAIL PROTECTED]>, This refers to your mail with subject as "Re: tomcat oracle jdbc pooling". Thank you for sending your CV and registering with A.S. Consultancy Services. Our team will review your CV and match it against current requirements. If your profile match

Re: tomcat oracle jdbc pooling

2004-10-11 Thread Bj
I've tried but I didn't manage to set these parameters in the server.xml tomcat file. I can do this in the java code but it increases oracle dependancy and I would like to avoid that. Bj David Smith a écrit : I'll go on a limb here. I just started actually reading the fantastic docs on JDBC.

AutoReply: Re: Undefined hosts being directed to localhost

2004-10-11 Thread tester
Hello "Tomcat Users List" <[EMAIL PROTECTED]>, This refers to your mail with subject as "Re: Undefined hosts being directed to localhost". Thank you for sending your CV and registering with A.S. Consultancy Services. Our team will review your CV and match it against current requirements. If y

Re: Undefined hosts being directed to localhost

2004-10-11 Thread Robert Hunt
Okay, I should have remembered about the defaultHost attr of the node. (duh Rob!) However, I'd like to redirect/stop spurious requests that have nothing to do with my hosts; I've gotten a couple requests with "www.yahoo.com" as the requested host. Anyone already got a (or cleverly configured

AutoReply: Re: euro sign tomcat 4 -> 5

2004-10-11 Thread tester
Hello "Tomcat Users List" <[EMAIL PROTECTED]>, This refers to your mail with subject as "Re: euro sign tomcat 4 -> 5". Thank you for sending your CV and registering with A.S. Consultancy Services. Our team will review your CV and match it against current requirements. If your profile matches

Re: euro sign tomcat 4 -> 5

2004-10-11 Thread Andoni
If the same web-app worked perfectly in Tomcat 4 and now doesn't that would suggest the problem is with Tomcat, but if you never made the change to UTF-8 in Tomcat4 then that would suggest the problem is with your webapp!! Anyway, to change Tomcat to use UTF-8 you have to tell this to the JVM as i

AutoReply: Re: tomcat oracle jdbc pooling

2004-10-11 Thread tester
Hello "Tomcat Users List" <[EMAIL PROTECTED]>, This refers to your mail with subject as "Re: tomcat oracle jdbc pooling". Thank you for sending your CV and registering with A.S. Consultancy Services. Our team will review your CV and match it against current requirements. If your profile match

Re: tomcat oracle jdbc pooling

2004-10-11 Thread David Smith
I'll go on a limb here. I just started actually reading the fantastic docs on JDBC. Been using databases essentially by example for a couple years now. It looks like you're replacing the DBCP datasource with the Oracle pooling datasource. In that case you should take a look at the setters f

AutoReply: Re: euro sign tomcat 4 -> 5

2004-10-11 Thread tester
Hello "Tomcat Users List" <[EMAIL PROTECTED]>, This refers to your mail with subject as "Re: euro sign tomcat 4 -> 5". Thank you for sending your CV and registering with A.S. Consultancy Services. Our team will review your CV and match it against current requirements. If your profile matches

Re: euro sign tomcat 4 -> 5

2004-10-11 Thread Michiel Toneman
IIRC you need 8859-15 for the EURO symbol if you are using the 8859 family of encodings. Better would be to use UTF-8. I'm guessing you were using UTF-8 before? Regards, Michiel Dale, Matt wrote: Sounds like your character set is set to 8859-1 instead of 8859-2. I'm not sure how or where to cha

AutoReply: RE: euro sign tomcat 4 -> 5

2004-10-11 Thread tester
Hello "Tomcat Users List" <[EMAIL PROTECTED]>, This refers to your mail with subject as "RE: euro sign tomcat 4 -> 5". Thank you for sending your CV and registering with A.S. Consultancy Services. Our team will review your CV and match it against current requirements. If your profile matches

RE: euro sign tomcat 4 -> 5

2004-10-11 Thread Dale, Matt
Sounds like your character set is set to 8859-1 instead of 8859-2. I'm not sure how or where to change this though. -Original Message- From: Xavier Frisaye [mailto:[EMAIL PROTECTED] Sent: 11 October 2004 13:50 To: Tomcat Users List Subject: euro sign tomcat 4 -> 5 Hi all, I've ugraded

SSL connection

2004-10-11 Thread Edouard Dalla-Costa
Hi, I have a question of configuration. I am trying to use SSL connection with tomcat 5.0.28. But it does not work, I am having a FileNotFound exception when I am adding the className SSLServerSocketFactory to the server.xml file. If I don't add the className variable, the Secure connection looks

AutoReply: euro sign tomcat 4 -> 5

2004-10-11 Thread tester
Hello "Tomcat Users List" <[EMAIL PROTECTED]>, This refers to your mail with subject as "euro sign tomcat 4 -> 5". Thank you for sending your CV and registering with A.S. Consultancy Services. Our team will review your CV and match it against current requirements. If your profile matches with

euro sign tomcat 4 -> 5

2004-10-11 Thread Xavier Frisaye
Hi all, I've ugraded from Tomcat 4.1.24 to 5.0.28 and i'm encountering problem with euro sign when i try to write it from a servlet : it appears as ? instead of â, certainly charset problem. Is there any change made to tomcat 5 wich could explain this problem? (It works perfectly with Tomcat 4.

Re: AutoReply: tomcat oracle jdbc pooling

2004-10-11 Thread Renan Galang
Hello, I'm really sorry but I think i speak for everybody when I say this AutoReplying address is getting really annoying. Can't the owner of this address please unregister? - Original Message - From: <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Monday, Octo

AutoReply: tomcat oracle jdbc pooling

2004-10-11 Thread tester
Hello "Tomcat Users List" <[EMAIL PROTECTED]>, This refers to your mail with subject as "tomcat oracle jdbc pooling". Thank you for sending your CV and registering with A.S. Consultancy Services. Our team will review your CV and match it against current requirements. If your profile matches w

tomcat oracle jdbc pooling

2004-10-11 Thread Bj
Hi, I'm using tomcat jdbc connection pooling through dbcp datasourceFactory and it works well. Now, I want to use oracle.jdbc.pool.OracleDataSourceFactory to instanciate oracle.jdbc.pool.OracleDataSource. It seems to work, but I'm wondering is there's some specific parameters to add ? I also wa

AutoReply: Katja Handtusch/268/DCAG/DCX ist außer Haus.

2004-10-11 Thread tester
Hello "Tomcat Users List" <[EMAIL PROTECTED]>, This refers to your mail with subject as "Katja Handtusch/268/DCAG/DCX ist =?ISO-8859-1?Q?au=DFer_Haus=2E?=". Thank you for sending your CV and registering with A.S. Consultancy Services. Our team will review your CV and match it against current

Katja Handtusch/268/DCAG/DCX ist außer Haus.

2004-10-11 Thread katja . handtusch
Ich werde ab 11.10.2004 nicht im Büro sein. Ich kehre zurück am 22.10.2004. Ich werde Ihre Nachricht nach meiner Rückkehr beantworten. Bei dringenden Angelegenheiten wenden Sie sich bitte an meine Vertretung Alexandra Pürschel (Tel.: 5463). --

AutoReply: RE: Tomcat 4.1 random crashes

2004-10-11 Thread tester
Hello "Tomcat Users List" <[EMAIL PROTECTED]>, This refers to your mail with subject as "RE: Tomcat 4.1 random crashes". Thank you for sending your CV and registering with A.S. Consultancy Services. Our team will review your CV and match it against current requirements. If your profile matche

RE: Tomcat 4.1 random crashes

2004-10-11 Thread Dale, Matt
I can't see anything in there that would cause Tomcat to crash but you have a whole host of errors to look at. Permission denied while accessing some files, a jar not loaded, unknown host for a start plus more. I'd take these errors one at a time and try to correct them and it will hopefully lea

Tomcat 5 & SunONE Identity Server

2004-10-11 Thread Simon Coles
Hi, Does anyone have experience of using the SunONE Identity Server for Single Sign On with Tomcat 5.x? e.g. once the user logs into another site which uses the Identity Server for authentication, they are logged into all applications/servers - including ours. The Sun site has a "Policy Agent" (e

AutoReply: Re: Tomcat 4.1 random crashes

2004-10-11 Thread tester
Hello "Tomcat Users List" <[EMAIL PROTECTED]>, This refers to your mail with subject as "Re: Tomcat 4.1 random crashes". Thank you for sending your CV and registering with A.S. Consultancy Services. Our team will review your CV and match it against current requirements. If your profile matche

Re: Tomcat 4.1 random crashes

2004-10-11 Thread Richard Lewis
OK here's my $CATALINA_HOME/logs/catalina.out file from about 09:30 this morning (BST). At this point the server wasn't working and I did a restart: 11 Oct 2004 09:26:04,292 [Thread-14] DEBUG (BrokerPool.java [sync]:334) - syncing buffers to disk 11 Oct 2004 09:26:04,293 [Thread-14] INFO (

AutoReply: RE: Tomcat 4.1 random crashes

2004-10-11 Thread tester
Hello "Tomcat Users List" <[EMAIL PROTECTED]>, This refers to your mail with subject as "RE: Tomcat 4.1 random crashes". Thank you for sending your CV and registering with A.S. Consultancy Services. Our team will review your CV and match it against current requirements. If your profile matche

  1   2   >