Re: DBCP datasource works on 5.0.28 but fails on 5.5.

2005-07-21 Thread Kenneth B. Harwood
This issue was originally submitted by Steve Kirk on 20-May-2005 and RESOLVED on 22-May. FYI, I experienced the same error(s) as Steve and tried all the same things Steve did before discovering Steve's question (and thread) on the User List. The fix (as first advised by Lutz Nicola) was to

RE: CATALINA_BASE

2005-07-13 Thread Kenneth B. Harwood
it turns-out that my problem was defining CATALINA_BASE improperly for the Win2K service. i was setting CATALINE_BASE as an Enviroment variable. for example: MS-DOS CATALINA_BASE=... and then i Start'ed the Service. wrong! that is NOT how to define config params for the Tomcat (all

CATALINA_BASE

2005-07-12 Thread Kenneth B. Harwood
i'm running the latest tomcat (5.5.9) on Win2K Pro. Tomcat works in the default configuration. thanks. i'm trying to get Tomcat working using CATALINA_BASE. that is, i want a second Tomcat instance to serve my webapps from a directory different than the default. the default directory is

Re: CATALINA_BASE

2005-07-12 Thread Kenneth B. Harwood
woops. i just saw a CATALINA_BASE thead in May '05. i'll take a look at that. is there a user-list SEARCH form anywhere or do i need to check the archives manually month-by-month? - ken h. - To unsubscribe, e-mail: [EMAIL

Re: CATALINA_BASE

2005-07-12 Thread Kenneth B. Harwood
what is the minimum file configuration required to run multiple Tomcat instances? conceptually, i shouldn't need an ENTIRE Tomcat file installation in my second (third, fourth, whatever) directory; Tomcat should only require a small amount of customizing in the target directory(s). for

Re: SPAM-LOW: PayPal Account Security Measures

2005-06-08 Thread B Wiley
I DONT HAVE A PAY PAL ACCOUNT ! I DON'T USE PAYPAL !! I'M NOT CLICKING ANYTHING ! At 04:48 PM 6/8/2005, you wrote: You have recieve this email because you or someone had tried to used your paypal account at http://www.springbok-computers.co.uk Below

An unexpected exception has been detected in native code outside the VM.

2005-05-26 Thread David B Sullivan
We're running Tomcat 4.1 on Sun Solaris 9, connecting to another Solaris 9 box running Oracle 9.2.0.1 and Java 1.4.2_05. When Tomcat tries to connect to the DataBase, it crashes, with the log file shown below. We can point Tomcat at another DataBase, same versions of everything, and it works

RE: Form Based Authentication

2005-05-12 Thread David B. Saul
Never Mind - It was permissions on the tomcat-users.xml file. Duh! -Original Message- From: David B. Saul [mailto:[EMAIL PROTECTED] Sent: Thursday, May 12, 2005 7:37 PM To: 'Tomcat Users List' Subject: Form Based Authentication Having a problem being challenged on Linux. Form based

Form Based Authentication

2005-05-12 Thread David B. Saul
Having a problem being challenged on Linux. Form based using the tomcat-users.xml file works under windows. However, when same code is deployed to Linux the page is never challenged. I checked server.xml on both platforms as well as the specific webapp. Even built a Hello World example to

Re: Tomcat5.5.9 + jdk1.5 HTTPS

2005-05-10 Thread Carlos =?utf-8?b?Q29uZMOp?=
Jason Bainbridge jbainbridge at gmail.com writes: Try specifying an absolute path for the keystoreFile, I'm not sure what that is relative to and shouldn't that be .keystore anyway? I've tried with an absolute path for the keystore, and with the default ($HOME/.keystore) location, it still

How to log the content-type??

2005-05-06 Thread Juan Manuel Soler =?iso-8859-1?b?UmluY/Nu?=
Hi Someone know how to log the content-type of any request?? Thx - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: pdf not working

2005-05-04 Thread David B. Saul
Here is what worked for me. The PDF is created dynamically. 1. a small bit of code which used FOP and served it as a stream. Be sure to set the response type. byte[] fo; . . . InputSource fopInput = new InputSource( new ByteArrayInputStream( fo ) );

RE: pdf not working

2005-05-04 Thread David B. Saul
no such problem. -Original Message- From: David B. Saul [mailto:[EMAIL PROTECTED] Sent: May 4, 2005 12:51 PM To: 'Tomcat Users List' Subject: RE: pdf not working Here is what worked for me. The PDF is created dynamically. 1. a small bit of code which used FOP and served it as a stream. Be sure

RE: Serving files using tomcat

2005-05-04 Thread David B. Saul
May not be critical but try using the ServletOutputStream instead of OutputStream. DOC URL: http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/ServletResponse.html //Clear content of the underlying buffer in the response //without clearing headers or status code. response.resetBuffer();

Log the Content-type

2005-05-04 Thread Juan Manuel Soler =?iso-8859-1?b?UmluY/Nu?=
Hi I need to log the content-type of the request in a tomcat web-server, can someone help me with that??? thx - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: TC v5.5.9 Won't Server *.htm Files

2005-04-27 Thread David B. Saul
I have 5.5.7 and it seems to work ok - not much help - but - Suggestion ( and a WAG ) check the web.xml in conf for the following mime mapping: mime-mapping extensionhtm/extension mime-typetext/html/mime-type /mime-mapping Let us know... -Original Message- From:

Finding xalan and xerces on Linux

2005-04-26 Thread David B. Saul
Installed TC 5.5.7 on Windows Created page using JSTL ( jstl.jar and standard.jar ) Did not need to add xalan or xerces especially since they are now included in Java 1.5. Deployed to Linux Used same versions of all components ( TC, JSTL, JAVA-JDK JRE) I had to add the xalan and xerces in the

RE: Finding xalan and xerces on Linux

2005-04-26 Thread David B. Saul
? Tomcat might have picked up a different version of it, or even GCJ. -Riyad On 4/26/05, David B. Saul [EMAIL PROTECTED] wrote: Installed TC 5.5.7 on Windows Created page using JSTL ( jstl.jar and standard.jar ) Did not need to add xalan or xerces especially since they are now included

Re: finding context's jar file

2005-04-15 Thread Altu B. Altnta
I found the answer String classpath = (String) request.getSession() .getServletContext().getAttribute( org.apache.catalina.jsp_classpath); Regards. Altu B. Altnta wrote: I need to find which jar files are being used in one context, for example

finding context's jar file

2005-04-14 Thread Altu B. Altnta
I need to find which jar files are being used in one context, for example below code can give me some information about sun.boot.class.path html % String classpath = System.getProperty(sun.boot.class.path); out.println( + classpath); % /html Is there anything like that : html %

RE: class path (UNCLASSIFIED)

2005-04-13 Thread David B. Saul
Try typing/copying the following at the prompt in the directory where the source code is for HelloWorld.java: javac -classpath C:\Program Files\Apache Group\Tomcat 4.1\common\lib\servlet.jar HelloWorld.java if in fact this is where the servlet.jar file exists. -Original Message- From:

RE: class path (UNCLASSIFIED)

2005-04-13 Thread David B. Saul
HelloWorld.java David B. Saul [EMAIL PROTECTED] wrote: Try typing/copying the following at the prompt in the directory where the source code is for HelloWorld.java: javac -classpath C:\Program Files\Apache Group\Tomcat 4.1\common\lib\servlet.jar HelloWorld.java if in fact this is where the servlet.jar file

RE: class path (UNCLASSIFIED)

2005-04-13 Thread David B. Saul
BTW - adding the PWD to the classpath should have no effect on your issue! -Original Message- From: David B. Saul [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 2:31 PM To: 'Tomcat Users List' Subject: RE: class path (UNCLASSIFIED) Quite frankly - this has nothing to do

Re: Tomcat Timers/threads?

2005-04-07 Thread Jesper B. Kiær
HI Take a look at Quartz. Link: http://www.opensymphony.com/quartz/ regards Jesper B. Kiaer http://www.jezzper.com -Charl Gerber [EMAIL PROTECTED] wrote: - To: tomcat-user@jakarta.apache.org From: Charl Gerber Date: 04/06/2005 15:11 Subject: Tomcat Timers/threads? Does Tomcat 4.1

Re: java.library.path - DLL - Domino ..why not use CORBA?

2005-04-07 Thread Jesper B. Kiær
Hi I'm wondering why you're using the Domino DLLs to access Domino? Domino has a Corba interface which enables you to access all the Domino classes (exept the Notes UI) This whould be the normal way to do it. What makes you choose the other way? regards Jesper B. Kiaer http

RE: java.library.path - DLL - Domino ..why not use CORBA?

2005-04-07 Thread Jesper B. Kiær
Domino the way you do. My guess is that it is not the fastest way and proberbly unstable. regards Jesper B. Kiaer http://www.jezzper.com -Durfee, Bernard [EMAIL PROTECTED] wrote: - To: Tomcat Users List From: Durfee, Bernard Date: 04/07/2005 15:18 Subject: RE: java.library.path - DLL

Re: Configuring Manager for different Virtual Hosts

2005-04-02 Thread John B. Moore
Anto, Thanks for replying.. Sadly there must be something else to configure.. I did read all the relevant documents and the manager works fine for the default webapps context. I added the line you suggested to that virtual host.. restarted everything (including Apache) I then type in

Re: Configuring Manager for different Virtual Hosts

2005-04-02 Thread John B. Moore
the localhost:/manager section. Copy this entire section to the end of the JkMount commands.. b) Paste this section into each VirtualHost setting (possibly a different .conf file..) c) Edit the Alias and Directory tags to reflect the same full path to the manager folder.. 5) Make

Configuring Manager for different Virtual Hosts

2005-04-01 Thread John B. Moore
I know I saw the info on this topic somewhere, but for the life of me, I can not relocate it.. (can not come up with the magic search strings... I spent hours trying different searches...) Task: I am trying to configure the Manager tool to manage different virtual hosts on a webserver

Manager in other webapp subdirectories hosts/contexts

2005-03-30 Thread John B. Moore
I know I saw the info on this topic somewhere, but for the life of me, I can not relocate it.. (can not come up with the magic search strings...) I have various subdirectories under webapps that are configured as separate hosts and contexts i.e. /webapps/someapp In that directory I have a web

Re: [OT] Jav/JSP Programmer

2005-03-03 Thread B Wiley
Hi Carl, are you looking for someone on-site or off-site ? P.S. please do the world a favor and get rid of the flash intro at the beginning of your site, my eardrums just exploded !! Best Regards, -Wiley At 12:08 PM 3/3/2005, you wrote: I apologize for placing this on this mail list but I

Re: Serving up a Flash file

2005-02-20 Thread B Wiley
It's amazing how large some of the gaps in my knowledge truly are. Words of a wise man. I find myself thinking the same thing daily. I'm sure we are not alone :) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

tomcat hackers ...

2005-02-13 Thread B Wiley
Hello, I've been getting some things in my logs like ... 217.20.113.110 - - [13/Feb/2005:09:41:39 -0500] GET /Myapp/../Myapp/../Myapp/../Myapp/../Myapp/../Myapp/../Myapp/../hosting.html HTTP/1.1 200 5564 - Mozilla/4.0 (compatible; MSIE 5.16; Mac_PowerPC) What is this guy getting from this ?

Web App to Cell Phone

2005-02-08 Thread B Wiley
This may be off topic but I'm looking for a java solution to deliver MMS or WAP push ringtones to cell phones via my tomcat shopping cart. Does anyone know of some good solutions for this ? Thanks in advance -Wiley - To

jsp include no flush

2005-02-04 Thread A B
This is a re-post ... I sincerely apologize, but I'm hoping the new title is more appealing and someone will be kind enough to spare a minute. Any jasper gurus on this list? Though I'll take answers from non-gurus too at this point ... I'm flailing here ;-) -- I'm using Tomcat 5.0.28 and

jasper: PageContextImpl.include(String, boolean) method blocks?

2005-02-03 Thread A B
I'm using Tomcat 5.0.28 and WindowsXP. The PageContext.include(String, boolean) method seems to just block in the Jasper impl (goes off into never never land) irrespective of whether I pass true or false as the second argument. Can someone confirm this? If someone has encountered this before,

Unable to initialize TldLocationsCache: null

2005-01-12 Thread K B
Hi, I'm using tomcat 5.5.4 on Linux and jdk 1.4.2, I deployed a web application but I am getting the error below. Has anyone seen this before, what is the fix? SEVERE: Servlet.service() for servlet action threw exception org.apache.jasper.JasperException: Unable to initialize TldLocationsCache:

Re: apache jk2.conf and tomcat question heeelp

2004-12-23 Thread B Wiley
Thank you but I'm still not getting something, how do you create an alias directory ??? Is that just a symlink ? Please help me understand one concept. I cannot seem to get an answer for this ANYWHERE I've been at this for WEEKS I do not want my jsp pages and my html pages in two

apache jk2.conf and tomcat question heeelp

2004-12-22 Thread B Wiley
Hello, Is there a way to put an absolute path in the jk2.conf location tag that would look like /var/www/html/*.jsp I'm trying to set things up so If i have a .jsp in my website root it forwards the request to tomcat without having the .jsp physically sitting inside the tomcat root. Is

Re: setting up tomcat/JBOSS with apache

2004-12-16 Thread B Wiley
nobody??? Hello, I'm confused on something basic. I understand how to set up mod_jk2 and configure an app something like http://localhost/myApp/test.jsp such that the app myApp is sitting in the java container but can I have myApp sitting on apache i.e. /var/www/htdocs/myApp and configure a

Re: setting up tomcat/JBOSS with apache

2004-12-16 Thread B Wiley
... Thanks for giving this some thought, I'm probably in the wrong mailing list and not making any sense thanks At 10:47 AM 12/16/2004, you wrote: From: B Wiley [EMAIL PROTECTED] All I see online and in every example is how mod_Jk helps you knock out the :8080 but the apps have to be sitting in webapps

setting up tomcat/JBOSS with apache

2004-12-15 Thread B Wiley
Hello, I'm confused on something basic. I understand how to set up mod_jk2 and configure an app something like http://localhost/myApp/test.jsp such that the app myApp is sitting in the java container but can I have myApp sitting on apache i.e. /var/www/htdocs/myApp and configure a handler in

include directive or include action are now make the same effect ?

2004-12-11 Thread Altug B. Altintas
I thing in the new versions of Tomcat these below to code %@ include file=time.html % jsp:include page=time.html flush=true/ make the same effect. When i make changes in time.html; i always see the main page uptodate whether using include directive or include action spec changed ?

Problems with mod_jk 1.2.6 logging

2004-11-04 Thread tkalyan b
mod_jk works fine as long as the JkLogLevel is info but as soon as i change it to something like debug,Apache fails to serve any page and I get the following error in httpd log though mod_jk.log doesnt show any error. [Fri Nov 05 11:40:40 2004] [notice] Apache/2.0.52 (Unix) mod_jk/1.2.6

RE: jboss with tomcat

2004-11-03 Thread B Wiley
for the response. At 05:57 AM 11/3/2004, you wrote: Hi, Hmm, not trivial. Start by validating your web.xml using a tool like XMLSpy. Yoav Shapira http://www.yoavshapira.com -Original Message- From: B Wiley [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 02, 2004 5:34 PM To: [EMAIL

jboss with tomcat

2004-11-02 Thread B Wiley
Hello, I've got tomcat embedded into jboss 2.2.5 . I get some kind of mapping error when I go to http://localhost:8080/web-console/ and the browser displays a 500 error. What is causing this and where can I look to fix it? [INFO,EmbeddedCatalinaServiceSX] StandardHost[localhost]: MAPPING

RE: Using shutdown script for different port

2004-09-30 Thread Dhruva B. Reddy
is configured in server.xml for that port. -Original Message- From: Dhruva B. Reddy [mailto:[EMAIL PROTECTED] Sent: Wednesday 29 September 2004 20:21 To: tomcat Subject: Using shutdown script for different port I am running two instances of Tomcat 4.1

Using shutdown script for different port

2004-09-29 Thread Dhruva B. Reddy
I am running two instances of Tomcat 4.1 on one machine, from a common installation (i.e., different CATALINA_BASE). I have the shutdown service for each instance listening on a different port (the original instance on the default port of 8005, and the second instance on 8015). Getting the

Tomcat5.0.25 TCP Session Replication

2004-09-02 Thread $B4d:j(B $B?7(B
On Tomcat5.0.25 it doesn't replicate, even though I try to do session (Breplication. (B (BBelow is a setting. (B (Bserver.xml of SERVER 1 (BCluster className="org.apache.catalina.cluster.tcp.SimpleTcpCluster" (B managerClassName="org.apache.catalina.cluster.session.De

What version of apache does Tomcat 3.3.1 support

2004-08-24 Thread $Bc7F#9d(B
Dear all, (B (Bcould you please tell me what versions of Apache (both major and minor) (Bdoes Tomcat 3.3.1 officially support? (B (BWhat about 4.1.12? (B (BAlso, what JDK version would you suggest using with both Tomcat 3.3.1 (Band 4.1.12 respectively? (B (BThanks in advance! (B

Help with JVMStat or JProbe

2004-08-16 Thread B Poisson
with the service so I need to analyze that specifically. Does anyone know how I can do this? Thanks! -b _ Don’t just search. Find. Check out the new MSN Search! http://search.msn.click-url.com/go/onm00200636ave/direct/01

jprobe and procrun

2004-08-11 Thread B Poisson
with the service. The reason I want to specifically look at the Windows service for Tomcat5 is that I believe the service to not be setting JVM parameters correctly. Any insight would be appreciated. Thanks, -b _ Express yourself instantly

Tomcat 5.0.27 Win2k sp4, service.bat JVM Options

2004-08-09 Thread B Poisson
as a service? Using Windows sucks, but I don't have a choice. Any help will be greatly appreciated. Thanks, b _ Don’t just search. Find. Check out the new MSN Search! http://search.msn.click-url.com/go/onm00200636ave/direct/01

running Tomcat 5.0.25 as an NT service

2004-07-27 Thread Derek B. Greer
I just spent several hours getting Tomcat 5.0.25 to run as a service on Windows XP and didn't find a lot of useful information anywhere, so I thought I'd post my findings. The service.bat which comes with the Tomcat 5.0.25 distribution doesn't seem to pass all the proper parameters to the

Session Sharingand Caching Problem

2004-07-16 Thread Selva Kumar B.
Hi , We are having the following architecture being used in our web based application HTML/JSP --- Main Servlet processor class Session Bean DAO layer Oracle 8i Database. Application Server : Oracle 9i Application Server. OC4J being the container. We start the server using

Problems migrating from 4.1.x to 5.0.25

2004-07-08 Thread Dhruva B. Reddy
I have deployed one of our (Struts 1.1 based) applications on 5.0.25 (it currently runs on 4.1.27). When I try to go to the default page, I get the stack trace below (displayed in the browser). Can anyone tell me if there is anything obvious that I may be missing or should look for? Thanks,

JNDI Resource Lifecycle Question

2004-06-28 Thread Dhruva B. Reddy
I'm trying to tune the connection pool on our installation of Tomcat 4.1.27, and just realized that I'm not sure what happens when you get the DataSource. When is the connection pool actually created? * When Tomcat starts? * When the web application is started? * When you request the

how to access webpages under apache/tomcat without specifying port 8080

2004-05-12 Thread b
I have a webserver with Apache 2.043 and Tomcat 4.1.18 and mod_jk connector. I can access my webpages locally without having to specify tomcat's port 8080. eg: http://localhost/webapps However, I have still have to specify the port number if accessing from other computers eg:

CN= Babr SOMER/ ist zur Zeit nicht erreichbar

2004-05-10 Thread b . somer
I will be out of the office starting 07.05.2004 and will not return until 11.05.2004. Bitte wenden Sie sich in dringenden Fllen mit Ihrem Anliegen an [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: pageEncoing and contentType

2004-04-19 Thread $BC]7A(B $B@?;J(B
On 2004.4.19, at 10:02 PM, Veniamin Fichin wrote: seiji takegata wrote: Try this: %@ page contentType=application/pdf; charset=ISO-8859-1 pageEncoding=Shift_JIS % I tried. This time jasper generates: response.setContentType(application/pdf; charset=ISO-8859-1); OK, and with that

Re: Relative directory addressing to parent directory

2004-04-18 Thread John B. Moore
the line right after your HTML tag your relative path will always be the same. Tom Kochanowicz -Original Message- From: John B. Moore [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 14, 2004 6:27 PM To: Tomcat Users List Subject: Relative directory addressing to parent directory Can't seem

Re: Virtual Hosting Revisited - Apache serving static pages..???

2004-04-15 Thread John B. Moore
that setting...?? Or am I forced to hand set this for each virtual host.. (I have a LOT of these to manage)... John.. John Sidney-Woollett wrote: John B. Moore said: Thanks for responding.. And yes, I keep hearing that one can do this ... But...G I'm slow I guess, because that still

Relative directory addressing to parent directory

2004-04-14 Thread John B. Moore
Can't seem to get this to work Example: Under Tomcat/webapps I want an images directory that any of the web applications in that directory can access in their pages. In static HTML (under Apache) I would use.. ../images/myimage.jpg and it would work just fine.. (the ../ would

Virtual Hosting Revisited - Apache serving static pages..???

2004-04-14 Thread John B. Moore
Posted this previously and still need some pointers... Maybe this is not possible, but it seems to be suggested in a lot of the documentation I have read. Unfortunately those docs assume something that I am not privy to.. (a brain.. yeah well...G) and do not outline specific configurations

Re: Virtual Hosting Revisited - Apache serving static pages..???

2004-04-14 Thread John B. Moore
, but have yet to find a way to do both John.. Paul Gregoire wrote: I do it by mapping all my servlet as .jspx and regular jsp files as .jsp. Apache serves everything else. John B. Moore wrote: Posted this previously and still need some pointers... Maybe this is not possible, but it seems

Re: Virtual Hosting Revisited - Apache serving static pages..???

2004-04-14 Thread John B. Moore
.properties (similar to mod_jk.conf ?) contains URI entries so tell apache what to request from Tomcat, the static content is served up by apache via the Alias above. HTH, Robert John B. Moore wrote: Posted this previously and still need some pointers... Maybe this is not possible, but it seems

Re: Relative directory addressing to parent directory

2004-04-14 Thread John B. Moore
Yeah, that is what seemed to be the case.. I was hoping I was wrong and somehow was not configuring something right.. Hence the posting here... sigh Julio César Aguilar wrote: In my knowledge: For tomcat to be able to serve the images, that images directory hast to live inside a web

Virtual Host - combo with Apache Virtual host

2004-04-09 Thread John B. Moore
Greetings, Can't seem to get the dots connect between an Apache defined Virtual host and one defined in server.xml. The desired effect is that I want static html pages loaded from Apache and jsp/servlet loaded by Tomcat from the same virtual host definition. Read a lot of

Re: Virtual Host - combo with Apache Virtual host

2004-04-09 Thread John B. Moore
Followup I commented out the original Apache VirtualHost... settting and that finally allowed my Tomcat setting two work.. That still leaves me trying to get the static pages to load from the Apache contexts...??? John B. Moore wrote: Greetings, Can't seem to get the dots connect

UTF-8 encoding

2004-04-05 Thread b . somer
Hi! I have a web-application which on the serverside needs UTF-8 encoding. I tried to install and run apache/tomcat on a Windows-XP environment, and the server says, the encoding is not UTF-8. same applicationwith the same apache/tomcat version runs correctly on a windows 2000 environment. Is

another NoClassDefFoundError question

2004-04-04 Thread b
, Apache Tomcat 4.1, mod_jk 2.0.43, mySQL 4.0.18 Any clue as to why I still get the NoClassDefFoundError? Thank you b - Do you Yahoo!? Yahoo! Small Business $15K Web Design Giveaway - Enter today

Re: OutOfMemoryError

2004-03-15 Thread Altug B. Altintas
Hi, Use jvmstat (google it) tool to analyize it. Maybe your application memory needs can break down Tomcat Regards. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 15, 2004 8:18 AM Subject: OutOfMemoryError Hi, I am getting the following

tomcat_install is not set

2004-02-17 Thread Altug B. Altintas
What is the meaning of tomcat_install is not set properly ?? Regards... - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Tomcat 5 Autoconfig

2004-02-14 Thread John B. Moore
Thanks, I'll check that out... John.. Bill Barker wrote: John B. Moore [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Ah, further checking on the Sun website indicates that it is: Apache Tomcat Version 5.0.18 So... why did it not work... I don't know. Maybe Sun packages

Tomcat 5 Autoconfig

2004-02-11 Thread John B. Moore
Greetings.. Can't seem to find the documenation for Autoconfig for Tomcat 5 to Apache.. In Tomcat4 I used.. Listener className=org.apache.ajp.tomcat4.config.ApacheConfig append=true forwardAll=false modJk=/usr/libexec/httpd/mod_jk.so ..tried... Listener

Re: Tomcat 5 Autoconfig

2004-02-11 Thread John B. Moore
it was added back as org.apache.jk.config.ApacheConfig. John B. Moore [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Greetings.. Can't seem to find the documenation for Autoconfig for Tomcat 5 to Apache.. In Tomcat4 I used.. Listener className=org.apache.ajp.tomcat4

Re: Tomcat 5 Autoconfig

2004-02-11 Thread John B. Moore
Barker wrote: In 5.0.18 it was added back as org.apache.jk.config.ApacheConfig. John B. Moore [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Greetings.. Can't seem to find the documenation for Autoconfig for Tomcat 5 to Apache.. In Tomcat4 I used.. Listener className

Re: System.out.println, Where art thou?

2004-02-09 Thread John B. Moore
Sometimes it is threaputic to face one's stupidity... Anyway, it was pilot error... I use JBuilder (which has an embedded Tomcat) for my development and in versions prior to the latest (JB9 and before) the url pattern was http://localhost:8080/servercontext/servletname ..in JB10 this

Re: System.out.println, Where art thou?

2004-02-07 Thread John B. Moore
... Jerry Ford wrote: System.out.println text should be going to the file catalina.out in tomcat's logs directory, if you haven't changed any of the default logging configurations. At least, that's where they go in my 4.1.27 setup. Jerry John B. Moore wrote: Moved up to Tomcat 4.1.18 (from

Re: System.out.println, Where art thou?

2004-02-07 Thread John B. Moore
Correction it is 4.1.28 not 4.1.18... sorry.. John B. Moore wrote: Moved up to Tomcat 4.1.18 (from 3.x) and I've seemed to have lost the ability to see stdout statments in the log files.. In addition my Log4j loging output failing to appear. (another issue, but maybe related..) what is most

Re: System.out.println, Where art thou?

2004-02-07 Thread John B. Moore
Update: Well, when things get wierd it is best to go back to basics I created a very simple servlet with System.out.println statements and deployed it.. That works fine and the output shows up in the stdout.log. That means there is something in the servlet code that is mucking

System.out.println, Where art thou?

2004-02-06 Thread John B. Moore
Moved up to Tomcat 4.1.18 (from 3.x) and I've seemed to have lost the ability to see stdout statments in the log files.. In addition my Log4j loging output failing to appear. (another issue, but maybe related..) what is most puzzling at this point is that basic System.out.printlin(some text

RE: verbose gc

2004-02-01 Thread Dhruva B. Reddy
Check out Jeff Tulley's responses to my post OutOfMemoryError with Seemingly Plenty of Memory. You may also want to check out Sun's forums on the Java Virtual Machine. You will find a host of information on JVM tuning. As I said in my post, we would get the OutOfMemoryError about every 24

request timeout - page cannot be displayed

2004-01-29 Thread Altug B. Altintas
Hi We have got a page which process a request for a long time (because of algoritm) so we set session-timeout = 1000 in web.xml but if the user request this page, it starts to process and then after a time (~30 min) browser gives page cannot be displayed but the request is still be processed in

Re: request timeout - page cannot be displayed

2004-01-29 Thread Altug B. Altintas
' and 'disableUploadTimeout' but neither seems to have any effect. Sorry to answer your question with a question, but maybe we can pursue this together. -Rob --- Altug B. Altintas [EMAIL PROTECTED] wrote: Hi We have got a page which process a request for a long time (because of algoritm

RE: OutOfMemory exception explanation?

2004-01-27 Thread Dhruva B. Reddy
I've looked for a free profiler, but was unable to find one (as in beer or speech). If you can deal with the barrage of sales calls, you can download a trial version of: JProbe: http://quest.com/jprobe/try.asp OptimizeIt: http://borland.com/products/downloads/download_optimizeit.html

RE: OutOfMemoryError with Seemingly Plenty of Memory

2004-01-27 Thread Dhruva B. Reddy
Well, I have made an assumption in most cases. The OutOfMemoryError is logged with no timestamp to $CATALINA_HOME/logs/catalina.out. We have a script that periodically (every 15 minutes) hits the applications and notifies us of any error response (either status above 400 or the word ERROR in the

RE: OutOfMemoryError with Seemingly Plenty of Memory

2004-01-27 Thread Dhruva B. Reddy
Hmmm...we don't do hot deploys, but the different generations are definitely something to look at. Thanks! Dhruva --- Jeff Tulley [EMAIL PROTECTED] wrote: A while back somebody mentioned that if you continuously redeploy a web application, the symptoms you are mentioning occur. This is

design issue .....

2004-01-27 Thread Shanta B
Hi I have a requirement .we have to develop a webservice Following is our requirement. 1)Client will send SOAP/HTTP request for imge(s). 2)We have(Service) to serve the corresponding image(s) through SOAP/HTTP. Now the design issues... I have two types of

OutOfMemoryError with Seemingly Plenty of Memory

2004-01-26 Thread Dhruva B. Reddy
I am troubleshooting an issue we've been having with Tomcat 4.1.27. We have several websites on one instance, and it regularly throws an OutOfMemoryError, requiring a restart of Tomcat. Some observations (warning--this is a bit long): * The box runs two 2.8GHz Pentium 4 Hyperthreaded Xeons, and

RE: HELP: Servlet File Download solution.

2004-01-14 Thread Shanta B
Hi (B (BI had similar type of problem on windows 8 months ago We installed (Bpatch for IE5.x I can not remember exactly its better to look into (Bmicrosoft site. (B (B (B-Original Message- (BFrom: Rai Ou (BTo: 'Tomcat Users List' (BSent: 14/01/2004 8:14 AM

RE: javax.net.ssl.SSLHandshakeException: Could not find trusted c ertificate

2004-01-13 Thread Shanta B
This was caused by the remote server sending certificate that is unknown to the client...when client connects to a server the server sends its certificate to the client for authenticationwhen server sends its certificate java checkts in its default keystore i.e cacerts and realized that this

Need tomcat-javagroups.jar

2003-12-24 Thread B Ramesh Kumar
Ramesh Kumar B. Confidentiality Notice The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain confidential or privileged information. If you are not the intended recipient, please notify

RE: Memory Use Creeping Up In Steady-State

2003-12-10 Thread Dhruva B. Reddy
: Dhruva B. Reddy [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 09, 2003 3:09 PM To: tomcat Subject: Memory Use Creeping Up In Steady-State We are running a web app on Tomcat 4.1.29, through OptimizeIt. We don't see any signs of a memory leak (i.e., memory actually allocated to objects

RemoteHostValve and RemoteAddrValve

2003-12-09 Thread Altug B. Altintas
Hi, i couldn't understand what does RemoteHostValve and RemoteAddrValve do ? i changed manager.xml like this * Context path=/manager docBase=../server/webapps/manager debug=0 privileged=true Valve

Re: RemoteHostValve and RemoteAddrValve

2003-12-09 Thread Altug B. Altintas
11:49 AM Subject: Re: RemoteHostValve and RemoteAddrValve On 12/09/2003 08:17 AM Altug B. Altintas wrote: i couldn't understand what does RemoteHostValve and RemoteAddrValve do ? i changed manager.xml like this * Context path

Re: RemoteHostValve and RemoteAddrValve

2003-12-09 Thread Altug B. Altintas
-constraint on the manager. I haven't tried this myself so make sure you test the RemoteHostValve thoroughly to make sure it is protecting your manager app as you wish, before you put it in production! Adam On 12/09/2003 11:25 AM Altug B. Altintas wrote: No, i try http://localhost:8081

Memory Use Creeping Up In Steady-State

2003-12-09 Thread Dhruva B. Reddy
We are running a web app on Tomcat 4.1.29, through OptimizeIt. We don't see any signs of a memory leak (i.e., memory actually allocated to objects drops down to the same level upon GC) when the application is under load, but when it is not under load, the memory usage (i.e., the amount of memory

Re: Restarting tomcat from web page

2003-12-08 Thread Altug B. Altintas
comes with built-in features to restart individual webapps, so you don't have to do any work. O restart all of tomcat externally is much more work, you'll have to write a script, or use an external tool, etc. Yoav Shapira Millennium ChemInformatics -Original Message- From: Altug B

problem with servlet

2003-12-06 Thread Aiello Eric B Civ 5 CES/CEOE
Hello, I am installing Apache 2.0.42 with Tomcat 4.1.12 using JDSDK 1.4.0 for ArcIMS on a Windows 2000 server. Both Services are running fine but they are not communicating with each other. If I try the HelloWorld servlet configuration example, I get a page not found error. I have tried

  1   2   3   4   5   >