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 cr

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 'ed the Service. wrong! that is NOT how to define config params for the Tomcat (all MS-Wi

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 example,

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 PROTEC

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 (F:\

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 fin

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 elimin

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.

Re: Tomcat5.5.9 + jdk1.5 HTTPS

2005-05-10 Thread Carlos =?utf-8?b?Q29uZMOp?=
Jason Bainbridge 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 does'nt work !

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]

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: 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(); respons

RE: pdf not working

2005-05-04 Thread David B. Saul
ng... Mozilla/Firefox has 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

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 ) ); ByteArrayOu

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: htm text/html Let us know... -Original Message- From: Bob Bronson [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 26,

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

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 context's jar file

2005-04-15 Thread "Altuğ B. Altıntaş"
I found the answer String classpath = (String) request.getSession() .getServletContext().getAttribute( "org.apache.catalina.jsp_classpath"); Regards. AltuÄ B. AltÄntaÅ wrote: I need to find which jar files are being used in one context, f

finding context's jar file

2005-04-14 Thread "Altuğ B. Altıntaş"
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 <% String classpath = System.getProperty("sun.boot.class.path"); out.println(" " + classpath); %> Is there anything like that : <% String clas

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

RE: class path (UNCLASSIFIED)

2005-04-13 Thread David B. Saul
:\javacode>javac 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"

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: java.library.path - DLL - Domino ..why not use CORBA?

2005-04-07 Thread Jesper B. Kiær
ccess 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"

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 J

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 Timer

Re: Configuring Manager for different Virtual Hosts

2005-04-02 Thread John B. Moore
you have AutoConfig on..) and find 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 pa

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 i

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 (Apach

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 a

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

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 com

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 thi

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 unsub

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 Window

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, pl

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 differ

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 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 this possi

Re: setting up tomcat/JBOSS with apache

2004-12-16 Thread B Wiley
andler to httpd.conf... 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

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 hand

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 ht

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" %> 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 ? Regards

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 conf

RE: jboss with tomcat

2004-11-03 Thread B Wiley
-console. Thanks 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,

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 configurat

RE: Using shutdown script for different port

2004-09-30 Thread Dhruva B. Reddy
Original Message- > > >> >From: Steve Kirk [mailto:[EMAIL PROTECTED] > > >> >Sent: Wednesday, September 29, 2004 4:10 PM > > >> >To: 'Tomcat Users List' > > >> >Subject: RE: Using shutdown script for different port > > >

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 insta

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 (B (B managerClassName="org.apache.catalina.cluster.session.DeltaManager" (B expireSessionsOnShutdown="false" (B

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
h 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/dire

jprobe and procrun

2004-08-11 Thread B Poisson
k 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

Tomcat 5.0.27 Win2k sp4, service.bat JVM Options

2004-08-09 Thread B Poisson
from catalina.bat that my JVM settings definitely show up correctly. Why is it so hard for them to show up as a service? Using Windows sucks, but I don't have a choice. Any help will be greatly appreciated. Thanks, b _ Don’t ju

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 vers

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 u

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, Dhru

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: http://webser

CN= Babür 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 Fällen mit Ihrem Anliegen an [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additi

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 wit

Re: Relative directory addressing to parent directory

2004-04-18 Thread John B. Moore
e relative paths. Some may argue with the approach I use; if you include footers` and headers though and use the line right after your tag your relative path will always be the same. Tom Kochanowicz -Original Message- From: John B. Moore [mailto:[EMAIL PROTECTED] Sent: Wednesday, April

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

2004-04-15 Thread John B. Moore
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... I'm slow I guess, because that still

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... 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 applicatio

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

2004-04-14 Thread John B. Moore
operties (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: Virtual Hosting Revisited - Apache serving static pages..???

2004-04-14 Thread John B. Moore
each separately, 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

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...) and do not outline specific configurations

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

Re: Virtual Host - combo with Apache Virtual host

2004-04-09 Thread John B. Moore
Followup I commented out the original Apache 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 con

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 instructions/boo

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 fo

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 d

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.. ..

Re: Tomcat 5 Autoconfig

2004-02-11 Thread John B. Moore
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.. ..tr

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.. ..tried... no joy... throws a ClassDefNotFound.. searched the docs but can seem to find the right rock to look under.. Could someone give me a kick in the right direction

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 changed

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 th

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

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

2004-02-07 Thread John B. Moore
hin JBuilder using 4.1.27.. ??? John... 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.

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 here.

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 hour

Re: request timeout - page cannot be displayed

2004-01-29 Thread Altug B. Altintas
o be the limit, but I haven't > pinned this down. > > I've tried using 'connectionTimeout' and > 'disableUploadTimeout' but neither seems to have any > effect. > > Sorry to answer your question with a question, but > maybe we can pursue this toge

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

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

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 b

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 th

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 And...well,

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/20

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
gards 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 n

RE: Memory Use Creeping Up In Steady-State

2003-12-10 Thread Dhruva B. Reddy
s down to the same level, there is no memory creep. > >load simple means more objects, and more memory > > > >Filip > > > >-Original Message- > >From: Dhruva B. Reddy [mailto:[EMAIL PROTECTED] > >Sent: Tuesday, December 09, 2003 3:09 PM > >To:

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 a

Re: RemoteHostValve and RemoteAddrValve

2003-12-09 Thread Altug B. Altintas
ager/WEB-INF/web.xml and remove the > security-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 > >

Re: RemoteHostValve and RemoteAddrValve

2003-12-09 Thread Altug B. Altintas
TED]> Sent: Tuesday, December 09, 2003 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 >

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 * * then i try to enter http://localhost:8081/manager/html from localhos

Re: Restarting tomcat from web page

2003-12-08 Thread Altug B. Altintas
>-Original Message- >From: Altug B. Altintas [mailto:[EMAIL PROTECTED] >Sent: Friday, December 05, 2003 4:21 AM >To: Tomcat Users List >Subject: Re: Restarting tomcat from web page > >it doesn't matter, but restarting all of tomcat much better. > > &g

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 uni

  1   2   3   4   5   >