RE: https from client to web server, http from web server proxy to tomcat,

2005-09-27 Thread Wick, Daniel
LB, We currently use SSL at the Sun One Web Server front end, then standard http from the proxy connection to tomcat. I believe you should have this type of setup: Client -https-Sun WS -http-Tomcat (proxy) Client -https-Sun WS -http-Tomcat (reverse proxy) The application has 5

logging and tomcat

2005-09-20 Thread daniel steel
hi, ours is a simple jsp / bean classes rendered over tomcat. we still still in tomcat 3.xx version, in the process of migrating to tomcat 5 ( which is a long project) and would have a handle to all the calls. so at the moment, i have to log what users are doing and i was thinking a non

RE: SSL 8443

2005-09-15 Thread Wick, Daniel
If you use port 443, you won't be required to specify the port in the browser. The browser will auto-request on 443 because you've specified ssl. If you don't want ssl, use port 80. --Dan -Original Message- From: Lalit Batra [mailto:[EMAIL PROTECTED] Sent: Thursday, September 15,

Re: Logging (Log4J) with Tomcat 4.1.x

2005-07-05 Thread Daniel Fanjul
No, you have to put each application log4j.xml in each WEB-INF/classes or WEB-INF/lib (in a jar) The first time you declare a Logger in your app, log4j.xml is searched in the ClassLoader; but, I don´t know why (maybe some log4j initialization static code), some log4j class is loaded by the

Re: Apache Jakarta-Tomcat using very slow

2005-07-04 Thread Daniel Fanjul
It sounds a garbage collection problem. What VM are you using? What is the max memory assigned to the heap of the VM? What are the free/total memory? 2005/7/4, Lars Nielsen Lind [EMAIL PROTECTED]: It is the whole machine that hangs - it runs very slowly - and so does all of the webpages.

Re: Logging (Log4J) with Tomcat 4.1.x

2005-07-04 Thread Daniel Fanjul
log4j lib must bin in the Tomcat's common/lib 2005/7/4, Anoop kumar V [EMAIL PROTECTED]: A log4j mailing list might give u a more effective answer Try and change the appender to be ConsoleAppender (please check the name) - see if the output displays on the tomcat console.Then u can

threads in tomcat

2005-06-16 Thread Daniel Molina \(Inter-Media\)
Hello, If I use threads, through the Thread class, how can I can finish them whenever Tomcat reloads the application that created them. Thanks. Regards. Daniel Molina Wegener - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: tomcat windows / mysql linux

2005-06-09 Thread daniel steel
[EMAIL PROTECTED] wrote: daniel steel wrote: hi all, i have an interesting problem. our app server(tomcat 5.5) on windows 2003 communicates with mySQl database on linux box. our client application is very slow each time we log in. when we moved the database to windows box, the application is super

tomcat windows / mysql linux

2005-06-08 Thread daniel steel
hi all, i have an interesting problem. our app server(tomcat 5.5) on windows 2003 communicates with mySQl database on linux box. our client application is very slow each time we log in. when we moved the database to windows box, the application is super fast. does anybody have thoughts on

Different Authentication Requirements Based On Connector, Port or Protocol?

2005-05-25 Thread Daniel Rigal
a reasonably easy way to do this? At first I was thinking that I could just put a url-pattern inside a security-constraint in web.xml but I realised that this does not operate on the full URL so I could not filter by port number or protocol here. Thanks, Daniel. -- Daniel Rigal MSc. Systems

RE: Different Authentication Requirements Based On Connector, Por t or Protocol?

2005-05-25 Thread Wick, Daniel
to do the authentication that way too. Just my 2 cents. --Dan -Original Message- From: Daniel Rigal [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 25, 2005 9:09 AM To: tomcat-user@jakarta.apache.org Subject: Different Authentication Requirements Based On Connector, Port or Protocol? Hi

Tomcat using endorsed xalan stuff conflicts with java 1.5's renamed xalan impl

2005-05-16 Thread Daniel Sun
the end users hand clean as much as possible. Thanks in advance for clearing this up for me. Regards, Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Does Tomcat support URL containing CHINESE characters?

2005-05-11 Thread Daniel Sun
Hi Mark, Thanks heaps for the help. URIEncoding=UTF-8 works for me. Cheers, Daniel -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 4:00 AM To: Tomcat Users List Subject: Re: Does Tomcat support URL containing CHINESE characters

Does Tomcat support URL containing CHINESE characters?

2005-05-10 Thread Daniel Sun
Hi all, I have the following settings. WinXP Prof CHINESE SIMPLIFIED w/ SPK2 Tomcat 5.0.28 JDK 1.5..0.3 I have a folder, whose name contains CHINESE characters (eg. ? new folder), under the [CATALINA_HOME]\webapps\jsp-example. When I browse to it in IE with URL

Re: dynamic reference to files on server

2005-05-09 Thread Daniel Watrous
-- in particular, Sections 9.4 and 9.6.. Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: trouble with Font objects in Tomcat

2005-05-09 Thread Daniel Watrous
provided they mention a better way to catch possible exceptions related to this. Since I don't have graphics support on my server I must set this option. Thanks, Daniel On 5/7/05, farhad [EMAIL PROTECTED] wrote: Look at this link: http://java.sun.com/j2se/1.4.2/docs/guide/awt/AWTChanges.html

Re: trouble with Font objects in Tomcat

2005-05-07 Thread Daniel Watrous
Is there at least someone that could tell me where to find more information about the option JAVA_OPTS=-Djava.awt.headless=true? What exactly is its purpose? Thanks in advance. Daniel On 5/6/05, Daniel Watrous [EMAIL PROTECTED] wrote: Hello, I have a web application that uses java.awt.Font

trouble with Font objects in Tomcat

2005-05-06 Thread Daniel Watrous
com.words2walls.customquote.exceptions.FontNotFoundException; /** * Type safe enumeration of available fonts * * @author Daniel Watrous */ public class QuoteFontType { private static final String pathToWebapp = C:\\Program Files\\Apache Software Foundation\\Tomcat 5.0\\webapps\\words2walls

dynamic reference to files on server

2005-05-06 Thread Daniel Watrous
tried unsuccessfully to use the class loader, but this might just be my ineptitude. Can someone suggest a way for me to reference these font files dynamically so that I can more easily deploy it in different locations? Thanks! Daniel

context path question

2005-04-25 Thread Daniel Watrous
Hello, I am have written some filters for a shopcart application. I intend for parts of this applicaiton to be reused in other web applications by including it as a JAR file. For authentication I have the file AdministratorAuthFilter, which checks for a session value indicating that the user

Re: context path question

2005-04-25 Thread Daniel Watrous
Thanks. That did the trick! DW On 4/25/05, Tim Funk [EMAIL PROTECTED] wrote: Use HttpServeletRequest.getContextPath() to get the context path. -Tim Daniel Watrous wrote: Hello, I am have written some filters for a shopcart application. I intend for parts of this applicaiton

I want to install Apache+Tomcat

2005-04-06 Thread Victor Daniel Diaz Suarez
-- ## Víctor Daniel Díaz Suárez Centro de Tecnología Médica-Universidad de Las Palmas de G.C. ## - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: I want to install Apache+Tomcat

2005-04-06 Thread Victor Daniel Diaz Suarez
to install/run the service. Viorel Dragomir . .. --- - Original Message - From: Victor Daniel Diaz Suarez To: tomcat-user@jakarta.apache.org Sent: Wednesday, April 06, 2005 14:30 Subject: I want to install Apache+Tomcat Hello

Re: mod_jk2 connection

2005-04-06 Thread Victor Daniel Diaz Suarez
] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- ## Víctor Daniel Díaz Suárez Centro de Tecnología Médica-Universidad de Las Palmas de G.C

RE: Tomcat behind IIS

2005-03-18 Thread SANTOS, DANIEL \(SBCSI\)
sure, just go into your server.xml and remove the web connector Connector port=8080 / I'm using the minimal server.xml (slightly modified) so there may be more parameters in yours. This element is contained with in the Service tag which is in the Server tag. Daniel -Original Message

Windows service shutdown not invoking destroy()?

2005-03-04 Thread Daniel Rabe
I'm running Tomcat 5.0.28 on Windows XP Pro as a Windows service. If I use shutdown.bat to stop Tomcat, then the destroy() method of my servlet is invoked. If I simply stop the Windows service, destroy() apparently is NOT called. The behavior is not consistent; I've seen it work on one machine,

301 permanent redirects in Tomcat - how to achieve

2005-02-11 Thread Daniel Rhoden
\samefilename.jsp needs to be redirected to: mydomain\newfolder\samefilename.jsp Thanks, Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: HTMLArea and SpellCheck plugin

2005-02-11 Thread Daniel Rhoden
Check out OpenCMS (http://www.opencms.org) because it integrates HTMLArea very nicely, even with Mozilla support (in the version 6 release, still in Alpha). Kelly, Steve wrote: Anybody successfully implemented a tomcat webapp that uses the HTMLArea editor and the SpellChecker plugin (both free

xml file correspondence

2005-01-10 Thread Daniel Watrous
Hello All, As I am getting familiar with Tomcat it helps to find a correspondence between tomcat and something that I am already familiar with. It would appear that the server.xml in tomcat file corresponds to the httpd.conf in apache. Can someone verify this? Thanks in advance! Daniel

RE: Out of Memory when compiling JSP (Struts app on Tomcat 4.1.27)

2005-01-06 Thread SANTOS, DANIEL \(SBCSI\)
or 1.3 and up). But the -Xverbosegc works all the way back to 1.1 if I'm correct. Daniel -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, January 06, 2005 8:25 AM To: tomcat-user@jakarta.apache.org Subject: Out of Memory when compiling JSP (Struts app

Re: [OT]web development fee

2005-01-05 Thread Daniel Watrous
be that you could work out an arrangement with your employer to accomplish option 3 above, and that your employer will give you a license at a significant savings to you. As far as contracts go, you should probably consult with a lawyer for that. Daniel - Original Message - From

Re: [OT]web development fee

2005-01-05 Thread Daniel Watrous
generalization about hourly rate... Daniel - Original Message - From: epyonne [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Wednesday, January 05, 2005 10:30 AM Subject: Re: [OT]web development fee Daniel, Thanks for the response. No, what I develop for my employer

Re: Want to know better way of deploying

2004-12-22 Thread Daniel Watrous
Manisha, I have also had this occur when using Tomcat on Windows, but never with Tomcat running on Linux. Maybe this is a bug related to Tomcat on Windows... Are you using Windows? Daniel - Original Message - From: Manisha Sathe [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday

Re: How to run servlet for every 30 minutes in Tomcat 4.1.30

2004-12-21 Thread Daniel Watrous
it J2EE style. I'm not sure if this will work in Tomcat, but I suspect that it will. Daniel - Original Message - From: Dwayne Ghant [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, December 21, 2004 9:24 PM Subject: Re: How to run servlet for every 30 minutes

Re: Admin for TC 5.5.4 on Linux SUSE 9

2004-12-18 Thread Daniel Watrous
Use firefox and open the Java Console. This should list out any errors. Daniel - Original Message - From: Lars Ohlén [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, December 18, 2004 11:44 AM Subject: Admin for TC 5.5.4 on Linux SUSE 9 Hi, The Admin application behavious strange

Re: Commercial Tomcat Support?

2004-12-17 Thread Daniel Watrous
I have never used commercial support (yet), but I think that is what JBoss does. They also seem to be quite dedicated to Tomcat development in general. Daniel - Original Message - From: Steven J. Owens [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 16, 2004 3:21 PM

Re: Virtual Hosts and SSL

2004-12-17 Thread Daniel Watrous
I know that in apache, and I suspect that it is a general rule, an SSL (HTTPS) connection requires a unique IP address. In other words, virtual hosts do not work with SSL. Daniel - Original Message - From: Mike Kennedy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 17

Re: Strange memory behavior in tomcat-5.0.27

2004-12-15 Thread Daniel Watrous
I have used Apache Jmeter (http://jakarta.apache.org/jmeter/). This is a great tool, but sometimes a bit slow at sending the concurrent requests. I think they have a networking option to send many concurrent requests from different hosts. Hope this helps... Daniel - Original Message

WAR files and Eclipse

2004-12-13 Thread Daniel Watrous
, but in the process the directory structure is altered. Maybe you even know about a better IDE than eclipse for working with web-based projects. THANKS in advance. Daniel

Tomcat serving the wrong app

2004-12-11 Thread Charles Daniel
I suspect this is a Tomcat configuration issue. I use Tomcat 4 as the servlet container for my Apache2 web server. Apache's DocumentRoot is $CATALINA_HOME/webapps. The application I want to serve over my LAN and the www is organized as follows: Let's call my domain www.my-domain.com for

RE: Apache locks up

2004-12-09 Thread Wick, Daniel
Reboot your windows machine switch to Linux, BSD, or commercial unix.hee hee hee! Seriously though, what's in the error log? -Original Message- From: Dola Woolfe [mailto:[EMAIL PROTECTED] Sent: Thursday, December 09, 2004 11:05 AM To: Tomcat Users List Subject: Re: Apache locks up

RE: Apache locks up

2004-12-09 Thread Wick, Daniel
Whoops! Sorry Dola, I accused you of using Apache on windows. I sincerely apoligize! -Original Message- From: Dola Woolfe [mailto:[EMAIL PROTECTED] Sent: Thursday, December 09, 2004 11:12 AM To: Tomcat Users List Subject: RE: Apache locks up This was a reply to a previous thread. I

RE: HP-UX misbehaving AGAIN

2004-12-06 Thread Wick, Daniel
Wendy, There are also a number of HP recommended tunes you can do the kernal of HP-UX to improve performance for tomcat apache httpd - provided you have a busy system. Some easy ones are: maxuprc default=75, recommend 3500 nproc default=(20+8*MAXUSERS), recommend (20+32*MAXUSERS)

RE: Where do I get mod_jk

2004-12-03 Thread Wick, Daniel
Where are you reading about a configure script? Maybe you're seeing the compiling information. As in: ./configure ./make ./make install Also, I would highly recommend using the proxy pass, proxy pass reverse method of connecting to Tomcat. It works well. --Dan -Original Message-

Re: SSL and form-based login

2004-11-24 Thread Charles Daniel
From: [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: SSL and form-based login Date: Wed, 24 Nov 2004 01:11:11 -0600 On Tue, Nov 23, 2004 at 01:20:16PM -0800, footh wrote: However, if the original page is http and the login form is

RE: Tomcat and Servlets - DESPERATE for help

2004-11-24 Thread Wick, Daniel
Mike, What is your question? We are happy to help, but need some detail. --Dan -Original Message- From: Michael McQuade [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 24, 2004 9:31 AM To: Tomcat Users List Subject: Tomcat and Servlets - DESPERATE for help Hi folks, I

JAVA_OPTS for multiple apps running under 1 tomcat

2004-11-19 Thread Wick, Daniel
Hi! I have 3 virtual hosts in tomcat, each with it's own java app/context (total of 3 apps). When I set JAVA_OPTS=-Xmx 512m, in the bin/setenv.sh on UNIX, does this max out 512m for each context, or does it set it for everthing that runs under tomcat? --Dan

RE: JAVA_OPTS for multiple apps running under 1 tomcat

2004-11-19 Thread Wick, Daniel
I guess I could have deduced that from seeing only 1 java process...but I'm happy to have the validation of the group! Many thanks! -Original Message- From: Larry Meadors [mailto:[EMAIL PROTECTED] Sent: Friday, November 19, 2004 10:35 AM To: [EMAIL PROTECTED] Subject: Re:

RE: Tomcat JRE vs JDK Issue

2004-11-16 Thread Wick, Daniel
Chris, JSP pages get compiled into bytecode (as Yoav just said) as they are requested. So, the server requires the SDK, including javac to do the compiling. --Dan -Original Message- From: Hubble, Christopher [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 16, 2004 9:20 AM To:

RE: JAVA_OPTS

2004-11-15 Thread Wick, Daniel
Hi. I understand why you would set a max amount of memory that Java will use (-Xmx 512m), but why do you set a minimum (-Xms128m)? Doesn't it just use what it needs until it hits the max? --Dan -Original Message- From: Shankar Unni [mailto:[EMAIL PROTECTED] Sent: Monday, November 15,

Jasper and Axis

2004-11-15 Thread Daniel Herbison
I'm using Axis to connect to some soap services but when I try to instantiate the locator from a JSP I get the exception: // Axis locator call CoiDWACLApiServiceLocator coiDWLocator = new CoiDWACLApiServiceLocator(); I get: org.apache.jasper.JasperException at

Binding Address Problem

2004-11-02 Thread Wick, Daniel
I have a similar problem. I have two Tomcat instances installed on the same server. I want them each to bind to a specific IP address and use port 8080. See config snippets below. Even though I specify an address, they clobber each other. Whichever one starts first wins. Anyone know what I'm

RE: Binding Address Problem

2004-11-02 Thread Wick, Daniel
instance. Tomcat uses several ports for it's operation. Notice your exception is throwing 8005. This is the port that Tomcat listens for shutdown requests. Change it to a different value in one of the server.xml config files. Ed Wick, Daniel wrote: I have a similar problem. I

RE: problem redeploying war files on tomcat 4.x

2004-10-06 Thread Wick, Daniel
a packed WAR? Yoav Shapira Millennium Research Informatics -Original Message- From: Wick, Daniel [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 9:12 PM To: '[EMAIL PROTECTED]' Subject: problem redeploying war files on tomcat 4.x Hi. I have an existing application deployed

RE: problem redeploying war files on tomcat 4.x

2004-10-06 Thread Wick, Daniel
around for the duration of the application, and need not survive a server restart, you can write them to your context's tempdir. Yoav Shapira Millennium Research Informatics -Original Message- From: Wick, Daniel [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 06, 2004 9:13 AM

problem redeploying war files on tomcat 4.x

2004-10-05 Thread Wick, Daniel
Hi. I have an existing application deployed as a war file. When I update the war file, stop and start tomcat again, the war file is not re-expanding over the old deployment. I have set the permissions to 777 so it should not be a permissions issue. It works if I delete the existing directory

not display Tomcat Console

2004-09-25 Thread Daniel Snchez Gmez
Hi, I'm worried because when I start up my Tomcat5 in the Tomcat console appear nothing. It's clear. Before, It Appeared with initalize messages. I don´t know if I've any configuration... How can It be possible? Can I restore it? Thank you! --- Regards, Dani

Tomcat + mysql + axis

2004-09-21 Thread Daniel Snchez Gmez
if it is identical to a simple webservice -- Regars, Daniel mailto:[EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

help to deploy to dir other than webapps

2004-09-20 Thread Wick, Daniel
Hi. I'm a newbie to the list! I have a .war file that deploys fine if I put it into the default webapps directory. If I add this (below) xml file to the webapps directory specifying a different spot than webapps, then it doesn't work. It partially deploys, but the app can't get some of it's

Re: Tomcat 5 SSL problem

2004-08-27 Thread Daniel Snchez Gmez
PROTECTED] -- Saludos, Danielmailto:[EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Problem deploying WAR with META-INF/context.xml file (probably a bug) with Tomcat 5 (for W2K)

2004-08-26 Thread Daniel CAMPI
Hi, I'm just discovering Tomcat 5, and I've been spending almost all day trying to find a solution to deploy a WAR packaged servlet that has to connect itself to a global data source resource (ORACLE database). To set up the connections, I first did the things manually. From within the web

Web Service (Axis+Tomcat 5+SSL)

2004-08-26 Thread Daniel Snchez Gmez
Hi, I'm looking for information about how to make a secure WebService. To be exact I would like use SSL in my application, but I don´t know how to configure all the necessary to do it. I have see axis and tomcat web pages, but I'm a bit confused. My first objective is that the client of my web

Re: Problem deploying WAR with META-INF/context.xml file (probably a bug) with Tomcat 5 (for W2K)

2004-08-26 Thread Daniel CAMPI
Informatics -Original Message- From: Daniel CAMPI [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26, 2004 5:03 AM To: [EMAIL PROTECTED] Subject: Problem deploying WAR with META-INF/context.xml file (probably a bug) with Tomcat 5 (for W2K) Hi, I'm just discovering Tomcat 5, and I've been

RE: adding root context with admin webapp

2004-08-26 Thread SANTOS, DANIEL \(SBCSI\)
. Alternately, you can just delete the damn ROOT app. Sorry for the long explanation, I think it's cleaner to explicitly declare your app personally with the whole Context thing. Daniel -Original Message- From: Matt Bathje [mailto:[EMAIL PROTECTED] Sent: Thursday, August 26, 2004 5:05 PM

client authentification to my web service

2004-08-25 Thread Daniel Snchez Gmez
I'am using Tomcat 5.0 + Axis 1.1 How can I configure my Tomcat 5.0 to request client authentification. My server.xml is: Connector className=org.apache.coyote.tomcat5.CoyoteConnector port=8443 minProcessors=5 maxProcessors=75 enableLookups=true

Re: ssl certs

2004-08-24 Thread Charles Daniel
While Tomcat can be used as a web server, it is more commonly used as a servlet container behind a more robust web server like Apache. I use the Apache + Tomcat combination for my site development. My SSL is configured on Apace. Consequently, I never installed SSL on Tomcat. However, the

Buffer overflow: what could cause this?

2004-08-23 Thread Daniel Gibby
catalina.out file. I'm using tomcat 4.1.30. How do I interpret a message like this and what can I do about it? I've googled a bit to figure this out, but I only see posts without replies. -- Thanks, Daniel Gibby - To unsubscribe, e-mail

Re: Update virtual hosts when server is running

2004-07-21 Thread Daniel J. Obregon
If you are running on linux/unix systems, find the pid for the parent server process and send it a kill -USR1. This will force the parent server to reread the configuration file without actually shutting down or forcefully killing its children. - Dan Obregon - Hi. How do I update the lists

Re: Setting up mod_jk for Tomcat 5.0.27 under Apache 1.3.x

2004-07-21 Thread Daniel J. Obregon
I have been able to get the following to work too: Solaris 5.6 + Apache 1.3.x + mod_jk + Tomcat Had to search everywhere for the binaries that would run on Solaris, since I had no luck building them myself. So far, they work just fine - Dan Obregon - On Tue, Jul 20, 2004 at 04:55:36PM

Re: Tomcat and openSSL

2004-07-20 Thread Daniel J. Obregon
I would recommend using Apache to handle the ssl connections for you. I've been using apache as the ssl connection point in our production environment and using mod_jk to send things on to tomcat. I had tried using the ssl connector bundled with tomcat, but after awhile, it just seemed to reach

Re: Tomcat 5: how do you set up logging as a stand-alone webserver?

2004-07-19 Thread Daniel J. Obregon
Add a line similar to the following to your application Context. Logger className=org.apache.catalina.logger.FileLogger debug=0 directory=logs prefix=MyOwnLogFile. suffix=.log timestamp=true verbosity=1/ - Dan - I would like to use Tomcat 5 as a

Re: CPU spike problems on 5.0.19

2004-07-19 Thread Daniel Gibby
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Thanks, Daniel Gibby Director of Technology eDirect Publishing, LLC (310) 649 6400 ext. 224 - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: CPU spike problems on 5.0.19

2004-07-19 Thread Daniel Gibby
to do. Sunitha Kumar wrote: Daniel: thanks, if there are many webapps deployed, is there a way to determine which webapp is causing the spike? thanks, -sunitha Daniel Gibby wrote: I just fixed an infinite loop condition in my webapp that definitely caused CPU spikes and eventually tomcat crashes

Re: Wildcard virtual hosts help

2004-07-16 Thread Daniel J. Obregon
- On Thu, 2004-07-15 at 13:15, Daniel J. Obregon wrote: Have you considered using apache/mod_jk? If you are mapping thousands of domains to a few webapps, it might be better to use apache. Then, *worst* case you can write a script to generate and/or maintain a set of virtual hosts

Re: How to set JVM Max Memory

2004-07-16 Thread Daniel J. Obregon
Add one or both of the following to your start up scripts as java command line options: -mx1024M (or -Xmx1024M) to set the max to 1024 Mb -ms256M (or -Xms256M) to set the min to 256 Mb in my startup script I use this line: setenv JAVA_OPTS -ms256M -mx1024M -Djava.awt.headless=true - Dan

Re: Memory settings and thread management

2004-07-15 Thread Daniel J. Obregon
Jim, How are you doing mail? If you are not shelling out to do email, you can probably disregard this email, though it may be of use later If you are shelling out from java to execute something locally, there's something you should be aware of: In this code snippet, I shell out to execute

Re: Wildcard virtual hosts help

2004-07-15 Thread Daniel J. Obregon
Have you considered using apache/mod_jk? If you are mapping thousands of domains to a few webapps, it might be better to use apache. Then, *worst* case you can write a script to generate and/or maintain a set of virtual hosts Just a thought... - Dan Obregon - I have a specific problem

RE: I've officially decided that JSTL is one of the worst things to ever happen to mankind

2004-07-08 Thread SANTOS, DANIEL (SBCSI)
in hex, and with dipswitches. DEATH TO ALL KEYBOARD USERS!!! Daniel -Original Message- From: SH Solutions [mailto:[EMAIL PROTECTED] Sent: Sunday, July 04, 2004 4:36 AM To: 'Tomcat Users List' Subject: RE: I've officially decided that JSTL is one of the worst things to ever happen

RE: I've officially decided that JSTL is one of the worstthingsto ever happen

2004-07-08 Thread SANTOS, DANIEL (SBCSI)
be used by everyone, please give me a sign. I'll report to you in the morning and let you know what was God's opinion on that. -Original Message- From: SANTOS, DANIEL (SBCSI) [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 06, 2004 4:02 PM To: Tomcat Users List Subject: RE: I've officially

RE: I've officially decided that JSTL is one of the worstthingsto ever happen

2004-07-08 Thread SANTOS, DANIEL (SBCSI)
give me a sign. I'll report to you in the morning and let you know what was God's opinion on that. -Original Message- From: SANTOS, DANIEL (SBCSI) [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 06, 2004 4:02 PM To: Tomcat Users List Subject: RE: I've officially decided

RE: Understanding Java -- I've officially decided that JSTL is one of the worst thingsto ever happen

2004-07-06 Thread SANTOS, DANIEL (SBCSI)
those bottle necks are effected by the compiler you can run this with it on but it wont always be able to tell you the line numbers then since there is no line-to-instruction mapping once it's been optimized. good luck Daniel -Original Message- From: SH Solutions [mailto:[EMAIL

RE: I've officially decided that JSTL is one of the worstthingsto ever happen

2004-07-06 Thread SANTOS, DANIEL (SBCSI)
, buffer overruns and corrupted pointers. As somebody else said, C++ programmers will understand this. Daniel -Original Message- From: Eric VERGNAUD [mailto:[EMAIL PROTECTED] Sent: Sunday, July 04, 2004 11:33 AM To: Tomcat Users List Subject: Re: I've officially decided that JSTL is one

RE: I've officially decided that JSTL is one of the worst things to ever happen

2004-07-06 Thread SANTOS, DANIEL (SBCSI)
way (java, EL) you are going to have to navigate a hierachical tree. The real question that I ask myself is am I doing business logic or processing in my view layer? and if so, does this belong in another layer?. Daniel -Original Message- From: Ivan Jouikov [mailto:[EMAIL PROTECTED

RE: some problem in tomcat 5.0.25

2004-07-06 Thread SANTOS, DANIEL (SBCSI)
Forgive the simplicity of my question, but how large is the JSP file? -Original Message- From: archana gupta [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 06, 2004 9:39 AM To: [EMAIL PROTECTED] Subject: some problem in tomcat 5.0.25 Hi , I have deployed an application on Tomcat

RE: I've officially decided that JSTL is one of the worstthingsto ever happen

2004-07-06 Thread SANTOS, DANIEL (SBCSI)
file systems with 100s of thousands of files). Daniel As was recognized long ago, performance is not everything. And in fact, means little when you can't get your product out the door because you are still trying to chase down memory leaks, buffer overruns and corrupted pointers

RE: How to use oracle pool instead of using DBCP pool?

2004-07-02 Thread SANTOS, DANIEL (SBCSI)
I use a method similar to this as well. I don't use a servlet listener however. I use a javax.servlet.ServletContextListener instead however. I store the jdbd url in my web.xml also as a context-param (I just just cram it all into one paramater however) and put the pool as an attribute of

PDF File on Documentation Web Site Corrupted?

2004-07-02 Thread SANTOS, DANIEL (SBCSI)
anybody know who is responsible for these and if there is any way to correct them? Thanks Daniel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: How to use oracle pool instead of using DBCP pool?

2004-07-02 Thread SANTOS, DANIEL (SBCSI)
/param-value /context-param context-param param-namehost2/param-name param-valuehostname2/param-value /context-param context-param param-namesid2/param-name param-valueadm/param-value /context-param SANTOS, DANIEL (SBCSI) wrote: I use a method similar

RE: Fresh install of 5.0.25 running but not responding

2004-07-02 Thread SANTOS, DANIEL (SBCSI)
will listen on *all* IP addresses the machine has. I know that it's the default for sure. GL! Daniel -Original Message- From: Scott D. Anderson [mailto:[EMAIL PROTECTED] Sent: Friday, July 02, 2004 2:45 PM To: [EMAIL PROTECTED] Subject: Fresh install of 5.0.25 running but not responding I just

RE: Fresh install of 5.0.25 running but not responding

2004-07-02 Thread SANTOS, DANIEL (SBCSI)
files you have changed and I'll try to help ya. Daniel -Original Message- From: Scott D. Anderson [mailto:[EMAIL PROTECTED] Sent: Friday, July 02, 2004 3:52 PM To: Tomcat Users List Subject: Re: Fresh install of 5.0.25 running but not responding Tomcat Users List [EMAIL PROTECTED] writes

Getting rid of URL encoded jsessionid

2004-06-23 Thread Daniel Farinha
question is, how do I prevent the jsessionid from appearing on the URL that one time? Someone at the Jetspeed user list pointed out it's a setting in Tomcat's server.xml but by looking at the docs I can't see an obvious solution. Regards Daniel

Re: access ENV variables

2004-05-20 Thread Daniel Gibby
again. Graham Bleach wrote: On Wed, Apr 07, 2004 at 02:19:25PM -0700, Daniel Gibby wrote: Is it possible to access environment variables in tomcat that were set by apache? Which connector are you using? With mod_jk, you need to specify them in your httpd.conf: JkEnvVar ENVVAR

Re: Tomcat start-up

2004-05-19 Thread Daniel Gibby
I was wondering about this as well... thanks for that info. I think I'll disable the admin webapp since I only use the manager webapp and my own. Shapira, Yoav wrote: Hi, You can safely disregard them. If you use the Admin webapp, you're using Struts ;) To configure tomcat to not output these,

hotfix question

2004-05-18 Thread Daniel Gibby
Are any hotfixes applied directly to releases that are on the tomcat download site? So if I get a new copy of tomcat directly from the download site, is there still a need to get hotfixes for that version, or are they included? Thanks, Daniel

Re: hotfix question

2004-05-18 Thread Daniel Gibby
But what about the most recent version So say that a hotfix is applied to 5.0.25... Is there automatically a new version released at the same time (ie. 5.0.26) or would 5.0.25 be patched in its place? I think the answer is the former, but I'm just making sure. Thanks again, Daniel Shapira

Re: hotfix question

2004-05-18 Thread Daniel Gibby
That's what I thought. Thanks! Shapira, Yoav wrote: Hi, It's the former: new build. We don't re-tag, re-release, or patch in place for any builds. Yoav Shapira Millennium Research Informatics -Original Message- From: Daniel Gibby [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 18, 2004 10

Re: tomcat hangs

2004-05-18 Thread Daniel Gibby
that had to do with jitc. Let me know how you are doing with this issue as well. Daniel Rupprecht, Alexander wrote: Hi Daniel, unfortunately we've got exactly the same problem. Do You have any further informations concerning Your problem or any solutions? We've tested a lot, analyzed everything

Re: How to detect tomcat down

2004-05-18 Thread Daniel Gibby
You should know the port/host/IP that each of them are running on. You should be able to request them directly if you have the tomcat standalone service running, which you may or may not. All of this is configured in server.xml Daniel Gibby Simon Zeng wrote: I can come up with a WatchDog to do

runtime compilation request

2004-05-12 Thread Daniel Gibby
performance hit would occur just to make a small change. Thanks for listening! Daniel Gibby - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Definitive Documentation for RH9, mod_jk2, Apache2 Tomcat 5?

2004-05-12 Thread Daniel Gibby
I don't see the 'Useful Links' page that you speak of... I think you meant the page that is called Tomcat Links At 06:02 AM 5/12/2004, Shapira, Yoav wrote: Hi, Definitive in the true sense of the word, no. Helpful docs are aplenty, though, on the tomcat wiki

  1   2   3   4   5   6   7   8   >