RE: Question about memory

2004-05-06 Thread Randall Svancara
Source for information below: http://www.theserverside.com/discussions/thread.tss?thread_id=24939 -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 12:05 PM To: Tomcat Users List Subject: RE: Question about memory Hi, Here is a blurp i

RE: Question about memory

2004-05-06 Thread Peter Lin
by the way, you can view the performance of Tomcat using JMeter. it will make a request to the status page and then graph the results. peter Shapira, Yoav [EMAIL PROTECTED] wrote: Hi, Here is a blurp i found searching through google for memory top and tomcat: It wouldn't hurt to quote

RE: Question about memory

2004-05-06 Thread Randall Svancara
I remember you talking about adding that functionality to jmeter. It sounds really kewl. I need to try it!! -Original Message- From: Peter Lin [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 12:13 PM To: Tomcat Users List Subject: RE: Question about memory by the way, you

Re: Question about memory

2004-05-06 Thread Peter Rossbach
it!! -Original Message- From: Peter Lin [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 12:13 PM To: Tomcat Users List Subject: RE: Question about memory by the way, you can view the performance of Tomcat using JMeter. it will make a request to the status page and then graph the results

Re: Question about memory

2004-05-06 Thread Peter Lin
Randall Svancara schrieb: I remember you talking about adding that functionality to jmeter. It sounds really kewl. I need to try it!! -Original Message- From: Peter Lin [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 12:13 PM To: Tomcat Users List Subject: RE: Question about

RE: Question about memory

2004-05-06 Thread Peter Lin
I've profiled and tested the new monitor plugin for JMeter. under constant load, the memory usage of jmeter is flat :) OptimizeIt really helps achieve flat memory usage under constant load. JMeter has an old mailer that will send out EMails if a set number of requests fail, so JMeter is

Re: Question about memory

2004-05-06 Thread Wade Chandler
Yang Xiao wrote: Hi, I have development set to false and fork to true, tomcat still doesn't release the memory, any ideas? Thanks, Yang -Original Message- From: Randall Svancara [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 11:32 AM To: Tomcat Users List Subject: RE: Question

Re: Question about memory [commenting on hijacking]

2004-05-06 Thread Wade Chandler
Peter Lin wrote: I've profiled and tested the new monitor plugin for JMeter. under constant load, the memory usage of jmeter is flat :) OptimizeIt really helps achieve flat memory usage under constant load. JMeter has an old mailer that will send out EMails if a set number of requests fail,

Re: Question about memory

2004-05-06 Thread Wade Chandler
Subject: RE: Question about memory Just a silly question, but don't you also need to perform some additional production configuration in your web.xml by setting fork equal to true and developement equal to false. It explains it on this page here: http://jakarta.apache.org/tomcat/tomcat-5.0-doc

RE: Question about memory

2004-05-06 Thread Yang Xiao
-Original Message- From: Wade Chandler [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 2:55 PM To: Tomcat Users List Subject: Re: Question about memory Yang Xiao wrote: Hi, I have development set to false and fork to true, tomcat still doesn't release the memory

Re: Question about memory

2004-05-06 Thread Wade Chandler
Yang Xiao wrote: -Original Message- From: Wade Chandler [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 2:55 PM To: Tomcat Users List Subject: Re: Question about memory Yang Xiao wrote: Hi, I have development set to false and fork to true, tomcat still doesn't release the memory

RE: Question about memory

2004-05-06 Thread Yang Xiao
-Original Message- From: Wade Chandler [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 6:34 PM To: Tomcat Users List Subject: Re: Question about memory Yang Xiao wrote: -Original Message- From: Wade Chandler [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06

RE: question on using multiple certificates in tomcat

2004-04-21 Thread Martin Alley
Before TLS extension server name indication is implemented in server and browser (next year?), certificate is determined by which keystore is used. Keystore is determined by which connection is used, which means the certificate selection is driven by the IP address port number. A keystore is

RE: question about jsp:element and jsp:attribute

2004-04-08 Thread Yansheng Lin
Hi, I don't think the code makes sense. It is assumed that a jsp action tag starts with a opening tag and ends it somewhere in a logical manner, i.e., during the translation, the jsp engine has to figure out where the start and end are. Since the if statement will not be evaluated until runtime,

Re: RE: question about jsp:element and jsp:attribute

2004-04-08 Thread Giuseppe Briotti
I think that the problem is due to the evaluation of the if, as stated in a previous message. Can you change the code as follows: jsp:element name=fo:table-column jsp:attribute name=column-width jsp:expressionwidths[i]/jsp:expression /jsp:attribute jsp:scriptlet if

Re: Question on debuggin JNDI/prepared statement in a bean

2004-03-26 Thread Harry Mantheakis
Hello pstmt.setString(1,ClassifiedAd); pstmt.setString(2,UniqueDateId); Are those two parameters - 'ClassifiedAd' and 'UniqueDateId' - variables? They should be, and if so, where do you declare and initialise them? They do not appear in the method you posted. Harry I am frustrated trying

Re: Question on debuggin JNDI/prepared statement in a bean

2004-03-26 Thread Adrian Lanning
- Original Message - From: Harry Mantheakis [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, March 26, 2004 3:28 AM Subject: Re: Question on debuggin JNDI/prepared statement in a bean Hello pstmt.setString(1,ClassifiedAd); pstmt.setString(2,UniqueDateId); Are those two

RE: Question on debuggin JNDI/prepared statement in a bean

2004-03-26 Thread Shapira, Yoav
Subject: Re: Question on debuggin JNDI/prepared statement in a bean This topic doesn't really have anything to do with Tomcat so you might have better luck receiving help on some other mailing list. Anybody know which list he should be posting to? What is the actual problem you are having? Do you

RE: Question on debuggin JNDI/prepared statement in a bean

2004-03-26 Thread Tom K
Subject: Re: Question on debuggin JNDI/prepared statement in a bean Hello pstmt.setString(1,ClassifiedAd); pstmt.setString(2,UniqueDateId); Are those two parameters - 'ClassifiedAd' and 'UniqueDateId' - variables? They should be, and if so, where do you declare and initialise them? They do

Re: Question on debuggin JNDI/prepared statement in a bean

2004-03-26 Thread Adrian Lanning
what you're trying to do? Could you post the parts of your Context regarding the jndi resource you are configuring? Adrian - Original Message - From: Tom K [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Friday, March 26, 2004 9:41 AM Subject: RE: Question on debuggin

Re: Question on debuggin JNDI/prepared statement in a bean

2004-03-26 Thread Harry Mantheakis
Hi Tom how do you set up a JNDI connection in a bean? Exactly the same way as you would anywhere else, so if you have some code working in a servlet, copy it. To be precise, it is a database connection, acquired from a DataSource, which is itself acquired via a JNDI lookup. The fact that your

RE: Question on debuggin JNDI/prepared statement in a bean

2004-03-26 Thread Tom K
is an address. Anyone know what know how to get, what's in the address. Maybe open a stream? TIA Tom K. -Original Message- From: Harry Mantheakis [mailto:[EMAIL PROTECTED] Sent: Friday, March 26, 2004 10:43 AM To: Tomcat Users List Subject: Re: Question on debuggin JNDI/prepared

Re: Question on debuggin JNDI/prepared statement in a bean

2004-03-26 Thread Harry Mantheakis
:[EMAIL PROTECTED] Sent: Friday, March 26, 2004 10:43 AM To: Tomcat Users List Subject: Re: Question on debuggin JNDI/prepared statement in a bean Hi Tom how do you set up a JNDI connection in a bean? Exactly the same way as you would anywhere else, so if you have some code working

RE: Question on the packaging of tag libraries

2004-03-11 Thread Edson Alves Pereira
Maybe this helps. The required extensions for a tag file are .tag if you write the file in JSP syntax, and .tagx if the file is only composed of XML elements. The JSP 2.0 specification requires you to place the tag file in the WEB-INF/tags directory, or a subdirectory thereof. If you want

RE: Question about webapp deployment or re-deployment

2004-02-23 Thread Tom . Williams
cc Subject Please respond to RE: Question about webapp Tomcat

RE: Question about webapp deployment or re-deployment

2004-02-04 Thread Shapira, Yoav
Howdy, You can use the manager's webapp HTML interface without ant. Connect to http://yourhost:yourport/manager/deploy?path=/foo with an HTTP PUT request containing your WAR. See http://jakarta.apache.org/tomcat/tomcat-5.0-doc/manager-howto.html#Deplo y%20A%20New%20Application%20Remotely Yoav

RE: Question about Loggers

2004-01-26 Thread Shapira, Yoav
Howdy, I am guessing Logger entry in server.xml is the trick, but how do you access those loggers from .class files? An example would be awesome. It's in the Servlet API: javax.servlet.ServletContext#log is the method you want. Also, is there any way to set up a logger through web.xml? Not a

Re: Question Regarding Running Tomcat 5.0.16 As A Service On Windows 2000

2004-01-14 Thread Michael Duffy
expert enough for me. ;) I'll leave the pound signs where they are. If I need to tweak the memory settings I'll just change those values. Thank you. - MOD --- Jacob Kjome [EMAIL PROTECTED] wrote: At 01:42 PM 1/13/2004 -0800, you wrote: Hi Jacob, Just one thing wasn't clarified in

Re: Question Regarding Running Tomcat 5.0.16 As A Service On Windows 2000

2004-01-14 Thread Michael Duffy
Hi Jacob: Here's the complete text that I got back. As you can see from the first line, my first argument was install. The second is the optional service name: C:\Tools\Tomcat\5.0.16\binjakarta-tomcat-5.0.16-servicebatch.bat install Apache-Tomcat-5.0.16 To install a service: -install

Re: Question Regarding Running Tomcat 5.0.16 As A Service On Windows 2000

2004-01-14 Thread Michael Duffy
Still nothing working with the service.bat script on Windows 2000 v5 SP4. I ran it with install as the single argument, but no service appears, no listener is established on port 8080, and the browser returns Page not found to URL http://localhost:8080. Everything's great if I use the

Re: Question Regarding Running Tomcat 5.0.16 As A Service On Windows 2000

2004-01-14 Thread Jacob Kjome
I'm really not sure where all that output is coming from? Have you tried just running service.bat? You should get... ECHO is off. Usage: service.bat install/remove [service_name] After that, just try running service.bat install. You should get... The service 'Tomcat5' has been

Re: Question Regarding Running Tomcat 5.0.16 As A Service On Windows 2000

2004-01-14 Thread Michael Duffy
Hi Jacob, I agree - I looked at the script and never saw ANYTHING that put out those lines. I figured they had to be coming from tomcat.exe itself. There's nothing in the script that will produce those lines. It makes me wonder what I've got in my download. Packaging errors happen - could I

Re: Question Regarding Running Tomcat 5.0.16 As A Service On Windows 2000

2004-01-13 Thread Jacob Kjome
There is a service.bat file in the Tomcat CVS. Here's a copy of that with a couple minor tweaks. I've attached it before to emails in this list, but I'll attach it again since it is small. Rename service.txt to service.bat. Jake Quoting Michael Duffy [EMAIL PROTECTED]: Hi, I've recently

Re: Question Regarding Running Tomcat 5.0.16 As A Service On Windows 2000

2004-01-13 Thread Michael Duffy
Thanks very much, Jacob. I didn't go to CVS - I went right to the ZIP download. I'll make a note to check CVS next time. Thanks again - MOD --- Jacob Kjome [EMAIL PROTECTED] wrote: There is a service.bat file in the Tomcat CVS. Here's a copy of that with a couple minor tweaks. I've

Re: Question Regarding Running Tomcat 5.0.16 As A Service On Windows 2000

2004-01-13 Thread Michael Duffy
Hi Jacob, Just one thing wasn't clarified in the readme: In the line commented as Set extra parameters, are the characters between the # symbols considered commented out? If I needed to change the values associated with #-Xms32m#-Xmx256m#, should I replace the # with a space? It looks that

Re: Question Regarding Running Tomcat 5.0.16 As A Service On Windows 2000

2004-01-13 Thread Michael Duffy
Hi Jacob, I must have botched something here. I renamed the script, saved it in my TOMCAT_HOME/bin, and executed it by typing: jakarta-tomcat-5.0.16-servicebatch.bat install Apache-Tomcat-5.0.16 There were several messages flying by, telling me how to install and uninstall a service. The

Re: Question Regarding Running Tomcat 5.0.16 As A Service On Windows 2000

2004-01-13 Thread Jacob Kjome
First, the service always reports a success. Probably should be updated to actually say if something worked or not. Second, are you using Windows XP? In that case, the display name is used in the list of services instead of the service name you specified. The service will show up as Apache

Re: Question Regarding Running Tomcat 5.0.16 As A Service On Windows 2000

2004-01-13 Thread Michael Duffy
Nope, it was Windows 2000, SP4. All the other versions of Apache Tomcat services I have all show up under their service name, so I expected 5.0.16 to do the same. Yes, I do have CATALINA_HOME as the environment variable. Still not working. - MOD --- Jacob Kjome [EMAIL PROTECTED] wrote:

Re: Question Regarding Running Tomcat 5.0.16 As A Service On Windows 2000

2004-01-13 Thread Jacob Kjome
At 01:42 PM 1/13/2004 -0800, you wrote: Hi Jacob, Just one thing wasn't clarified in the readme: In the line commented as Set extra parameters, are the characters between the # symbols considered commented out? If I needed to change the values associated with #-Xms32m#-Xmx256m#, should I

Re: Question Regarding Running Tomcat 5.0.16 As A Service On Windows 2000

2004-01-13 Thread Jacob Kjome
At 04:37 PM 1/13/2004 -0800, you wrote: Nope, it was Windows 2000, SP4. All the other versions of Apache Tomcat services I have all show up under their service name, so I expected 5.0.16 to do the same. Yes, I do have CATALINA_HOME as the environment variable. Still not working. - MOD Hmm...

RE: Question on using Tomcat 5 in production environment; using m ultiple instances or not?

2004-01-09 Thread Marco Pas
Isn't this a maintenance nightmare ? -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: dinsdag 6 januari 2004 14:40 To: Tomcat Users List Subject: RE: Question on using Tomcat 5 in production environment; using multiple instances or not? Howdy, For minimum

RE: Question on using Tomcat 5 in production environment; using multiple instances or not?

2004-01-09 Thread Shapira, Yoav
ChemInformatics -Original Message- From: Marco Pas [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 3:08 AM To: 'Tomcat Users List' Subject: RE: Question on using Tomcat 5 in production environment; using multiple instances or not? Isn't this a maintenance nightmare

RE: Question on using Tomcat 5 in production environment; using multiple instances or not?

2004-01-09 Thread Ralph Einfeldt
applications requires an incompatible change in a library. -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 2:32 PM To: Tomcat Users List Subject: RE: Question on using Tomcat 5 in production environment; using multiple instances

Re: Question on using Tomcat 5 in production environment; using multiple instances or not?

2004-01-09 Thread daniel
, Daniel Schulken - Original Message - From: Ralph Einfeldt [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, January 09, 2004 8:46 AM Subject: RE: Question on using Tomcat 5 in production environment; using multiple instances or not? One additinal remark

RE: Question on using Tomcat 5 in production environment; using multiple instances or not?

2004-01-06 Thread Shapira, Yoav
Howdy, For minimum interference, run one instance of tomcat per application per machine. So if you have five apps and two machines, that's ten instances of tomcat. Yoav Shapira Millennium ChemInformatics -Original Message- From: Marco Pas [mailto:[EMAIL PROTECTED] Sent: Tuesday,

Re: Question.

2003-12-23 Thread Ben Souther
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/index.html http://www.johnturner.com/howto/apache-tomcat-howto.html The archives to this list are also useful. A good number of the threads here have to do with connection issues. On Tuesday 23 December 2003 08:18 am, Alejandro Arturo

Re: Question.

2003-12-23 Thread Alejandro Arturo Villarroel Nuñez
And how about mod_jk2 ?, in the jakarta site, there isn't a deep explanation, and there are many differences between that documentation and reality.. Thanks a lot the url http://www.johnturner.com/howto/apache-tomcat-howto.html is very good. On Tue, 2003-12-23 at 10:26, Ben Souther wrote:

Re: Question - TOMCAT

2003-12-12 Thread Bill Barker
: Mirna Misere [EMAIL PROTECTED] cc: 13/11/2003 08:55 Asunto: Re: Question - webapp module a.m. On Wed, 12 Nov 2003, Mirna Misere wrote: Thank for you response, now I have other problem, when I

Re: question on manager application

2003-12-10 Thread Rhino
I'm not sure I understand your question. I deploy WAR files regularly to a remote Tomcat4 and it's very easy: 1. Go to the Manager application in your remote Tomcat. 2. If there is already an old version of the servlet on your remote Tomcat, remove the old version of the servlet using the Remove

RE: Question using JProfiler with Tomcat

2003-12-02 Thread Hart, Justin
You saw the 30 MB in JProfiler? I haven't used it myself, but I would imagine that JProfiler tares its own consumption off of the scores. Justin -Original Message- From: Laurent Michenaud [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 02, 2003 12:32 PM To: [EMAIL PROTECTED] Subject:

RE: Question using JProfiler with Tomcat

2003-12-02 Thread Shapira, Yoav
Howdy, Never use a profiler for absolute values such as how much memory an object takes or how much time it takes to do a certain operation. The time and memory are severely (often orders of magnitude) skewed by the profiler. Instead, use relative values as appropriate (e.g. 30% of the time is

Re: Question on mod_jk2 (working)

2003-11-27 Thread Chong Yu Meng
Hi Nikola, I have a write-up on this configuration. Only difference is that I am using the Falsehope RPMs for Apache instead of Red Hat's. You can access it at http://cymulacrum.net/tomcat/jk2_compile.html I think what you are referring to is serverRoot, not serverConf. This is a reported

Re: question on mapping urls to tomcat using mod_jk2

2003-11-03 Thread Robert Hall
Donald, I may have missed the reply to this, but just in case I didn't - you can use VirtualHost to http to https redirect with 1.3.27 VirtualHost hostname # redirect non-slash terminated URL RedirectMatch /example$ https://hostname/example/index.jsp Redirect

RE: Question

2003-10-14 Thread Shapira, Yoav
Howdy, Yes, use a clickstream-type filter: http://orionsupport.com/archive/clickstream/ Yoav Shapira Millennium ChemInformatics -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Saturday, October 11, 2003 1:01 PM To: [EMAIL PROTECTED] Subject: Question Hi,

RE: Question about the Petstore's SignOnFilter class

2003-10-11 Thread Ralph Einfeldt
What is the difference for you between singing in and on ? For me as non native english speaker SignIn and SignOn are equivalent. The opposite is SignOff. -Original Message- From: Julien Martin [mailto:[EMAIL PROTECTED] Sent: Saturday, October 11, 2003 1:52 PM To: Tomcat Users List

RE: Question about the Petstore's SignOnFilter class

2003-10-11 Thread Steve Raeburn
Einfeldt [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday, October 11, 2003 2:37 PM Subject: RE: Question about the Petstore's SignOnFilter class What is the difference for you between singing in and on ? For me as non native english speaker SignIn and SignOn

[OT] Re: Question about the Petstore's SignOnFilter class

2003-10-11 Thread Bill Barker
thought that to sign on meant to register and to sign in meant to authenticate oneself. Can anyone help? Julien. - Original Message - From: Ralph Einfeldt [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday, October 11, 2003 2:37 PM Subject: RE: Question

Re: Question Regarding AJP Connectors

2003-09-26 Thread Bill Barker
Rhugga [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] If I am only using Tomcat as a JSP/Servlet engine using mod_jk2, and I am using a Unix socket for communication, I do not need these connectors correct? !-- Define a SSL Coyote HTTP/1.1 Connector on port 8443 -- !--

Re: Question on Follow Sym Link

2003-09-13 Thread Tim Funk
http://jakarta.apache.org/tomcat/faq/misc.html#symlink -Tim John Z Yang wrote: Dear all: I have seen this question floating around, but just can't dig the answer out. Does anyone know how to let Tomcat follow symbolic links? Just like the FollowSymLink option in Apache configuration. I

RE: Question about Tomcat serving HTML pages

2003-08-26 Thread Shapira, Yoav
Howdy, The only Tomcat built-in protection is Realms: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/realm-howto.html That's a misleading statement. Tomcat supports the full set of security access controls as defined in the Servlet Specification, v2.3, chapter 12. Realms are merely an

RE: Question about Tomcat serving HTML pages

2003-08-25 Thread Shapira, Yoav
Howdy, .htaccess files are an Apache feature, not tomcat, so you can't use them. Instead, you would use the security and access control mechanisms defined in the servlet specification. Yoav Shapira Millennium ChemInformatics -Original Message- From: Atreya Basu [mailto:[EMAIL

RE: Question about Tomcat serving HTML pages

2003-08-25 Thread Madere, Colin
The only Tomcat built-in protection is Realms: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/realm-howto.html -Original Message- From: Atreya Basu [mailto:[EMAIL PROTECTED] Sent: Monday, August 25, 2003 4:57 PM To: [EMAIL PROTECTED] Subject: Question about Tomcat serving HTML pages

Re: Question about Tomcat Documentation

2003-08-23 Thread Peter Harrison
From previous message: I was thinking that maybe now there's a default factory that can handle things, but now when I run the App I get an exception: Cannot load JDBC driver class 'null' Which makes me think the default factory is not correct. So is the documentation wrong, or are there

RE: Question about Tomcat Documentation

2003-08-22 Thread Madere, Colin
Possibly the same as the issue in this recent thread: Tomcat 4.1 DefaultContext Bug?, regarding DefaultContext resources not being available to implicit contexts, check archives. Also, check to make sure you have the url parameter rather than the driverName I think it was called under 4.0.

Re: Question about Notify all online user

2003-08-14 Thread engp0510
Thx ben, I do very areciate your help. - Original Message - From: Ben Souther [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, August 14, 2003 1:02 AM Subject: RE: Question about Notify all online user I'm not at liberty to give out any code

RE: Question about Notify all online user

2003-08-14 Thread Mike Curwen
- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 11:13 AM To: Tomcat Users List Subject: RE: Question about Notify all online user Howdy, How to implement notifying all online user when the record in database has been changed? I am using Servlet and JSP

Re: Question about Notify all online user

2003-08-14 Thread Ben Souther
ChemInformatics -Original Message- From: engp0510 [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 12:39 PM To: Tomcat Users List; [EMAIL PROTECTED] Subject: Re: Question about Notify all online user Ben! Wah! Great! Could you give me more information about your implementation

RE: Question about Notify all online user

2003-08-14 Thread Shapira, Yoav
Howdy, How to implement notifying all online user when the record in database has been changed? I am using Servlet and JSP to build a small Supply-Chain system running on Tomcat with MySQL. Cool design question ;) You probably can't do it immediately on change, but on the next page the user

RE: question marks appearing after deploy to production server

2003-08-14 Thread Hans Wichman
Hi, on my lokal pc it's winxp, on the production server it is freebsd 4.8. Greetz Hans At 09:31 AM 8/13/2003 +0100, [EMAIL PROTECTED] wrote: What is the server platform ? Does anybody have a clue how this may happen? But anyway this is most likely a character set problem, where you are using a

RE: Question about ssl and tomcat

2003-08-14 Thread batristain
What are the jkmount statements? -Original Message- From: Bill Barker [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 12:04 AM To: [EMAIL PROTECTED] Subject: Re: Question about ssl and tomcat You need to set the redirectPort attribute on the Connector to point to Apache's SSL

Re: Question about ssl and tomcat

2003-08-14 Thread John Turner
blocks. John [EMAIL PROTECTED] wrote: What are the jkmount statements? -Original Message- From: Bill Barker [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 12:04 AM To: [EMAIL PROTECTED] Subject: Re: Question about ssl and tomcat You need to set the redirectPort attribute

Re: Question about Notify all online user

2003-08-14 Thread Ben Souther
We're doing something like this with a hidden frame (an iFrame) that refreshes it self every n seconds (using the Meta refresh tag). The frame just points to a servlet which queries the database for new messages. If there is a new message, the iframe uses javascript to fire off a pop up.

RE: question marks appearing after deploy to production server

2003-08-14 Thread Tom Lyle
] Sent: 13 August 2003 14:40 To: Tomcat Users List Subject: Re: question marks appearing after deploy to production server Hans Wichman wrote: Hi, I have a strange problem, I wrote a servlet that retrieves some data from a database, which may contains characters such as ë. On my local

Re: question marks appearing after deploy to production server

2003-08-14 Thread Mark Schmeets
Hans Wichman wrote: Hi, I have a strange problem, I wrote a servlet that retrieves some data from a database, which may contains characters such as ë. On my local tomcat 4.1.24 testserver the output shows correctly as in 'aërobe'. However if I deploy the application to one of our testservers,

RE: question marks appearing after deploy to production server

2003-08-14 Thread Bodycombe, Andrew
Try setting CATALINA_OPTS=-Dfile.encoding=iso-8859-1 I think Sun changed the default character set in JDK1.4 - It is now ASCII HTH Andy -Original Message- From: Hans Wichman [mailto:[EMAIL PROTECTED] Sent: 13 August 2003 09:24 To: [EMAIL PROTECTED] Subject: question marks appearing

RE: Question about Notify all online user

2003-08-14 Thread Angus Mezick
Net send * message Wall message :) You could have a custom tag that gets data from the application context and another little servlet that populates the application context. Have the take set display a message and set a cookie if a cookie with the appropriate value isn't already set. This

RE: question marks appearing after deploy to production server

2003-08-14 Thread Hans Wichman
It worked ! great, thanks ! At 09:50 AM 8/13/2003 +0100, Bodycombe, Andrew wrote: Try setting CATALINA_OPTS=-Dfile.encoding=iso-8859-1 I think Sun changed the default character set in JDK1.4 - It is now ASCII HTH Andy -Original Message- From: Hans Wichman [mailto:[EMAIL PROTECTED] Sent:

RE: Question about Notify all online user

2003-08-14 Thread Ben Souther
Subject: Re: Question about Notify all online user We're doing something like this with a hidden frame (an iFrame) that refreshes it self every n seconds (using the Meta refresh tag). The frame just points to a servlet which queries the database for new messages. If there is a new message

Re: Question about Notify all online user

2003-08-14 Thread engp0510
Ben! Wah! Great! Could you give me more information about your implementation? I am not clear with iFrame. - Original Message - From: Ben Souther [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, August 14, 2003 12:32 AM Subject: Re: Question about Notify all

RE: question marks appearing after deploy to production server

2003-08-14 Thread robert.tomlin
What is the server platform ? Does anybody have a clue how this may happen? But anyway this is most likely a character set problem, where you are using a character set that does not contain the character you want. This has some good info about character sets:

RE: Question about Notify all online user

2003-08-14 Thread Shapira, Yoav
. Yoav Shapira Millennium ChemInformatics -Original Message- From: engp0510 [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 12:39 PM To: Tomcat Users List; [EMAIL PROTECTED] Subject: Re: Question about Notify all online user Ben! Wah! Great! Could you give me more information

Re: Question about ssl and tomcat

2003-08-14 Thread Bill Barker
You need to set the redirectPort attribute on the Connector to point to Apache's SSL port. However, since this defaults to 443, I'm guessing that the real problem is that you don't have your JkMount statements defined in your SSL VirtualHost. [EMAIL PROTECTED] wrote in message news:[EMAIL

Re: Question regarding tomcat-apache.conf file.

2003-06-16 Thread NormW
Good evening Kevin. I think you might need to read a little further.. AFAIK there is a specific startup option for Tomcat to generate the .conf file for Apache, and that's assuming Tomcat 4.0 supports it Apologies for the vagueness but it's not a feature I've actually used. Norm -

RE: Question regarding tomcat-apache.conf file.

2003-06-16 Thread Thomas, Kevin
Users List Subject: Re: Question regarding tomcat-apache.conf file. Good evening Kevin. I think you might need to read a little further.. AFAIK there is a specific startup option for Tomcat to generate the .conf file for Apache, and that's assuming Tomcat 4.0 supports it Apologies

Re: Question regarding tomcat-apache.conf file.

2003-06-16 Thread NormW
PROTECTED] Sent: Monday, June 16, 2003 8:16 PM Subject: RE: Question regarding tomcat-apache.conf file. Thanks for the reply. When you say you haven't used it, does that mean you don't run with Apache and Tomcat talking to each other, or just that you've found another way round it? Cheers

RE: Question regarding tomcat-apache.conf file.

2003-06-16 Thread Thomas, Kevin
: NormW [mailto:[EMAIL PROTECTED] Sent: 16 June 2003 11:32 To: Tomcat Users List Subject: Re: Question regarding tomcat-apache.conf file. Good evening Kevin AFAIK Tomcat 4.1 doesn't have the auto configure option so I've never tried it personally; I get by with manual configuration. What module are you

Re: Question regarding tomcat-apache.conf file.

2003-06-16 Thread NormW
every day by just about everyone. Norm - Original Message - From: Thomas, Kevin [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Monday, June 16, 2003 8:47 PM Subject: RE: Question regarding tomcat-apache.conf file. Norm, I'm planning on using the mod_jk module. I've

RE: Question regarding tomcat-apache.conf file.

2003-06-16 Thread Thomas, Kevin
June 2003 12:00 To: Tomcat Users List Subject: Re: Question regarding tomcat-apache.conf file. Good evening (here)... how's Monday going? What platform are you running Apache and Tomcat on, and will they be on the same or different machines? Nothing wrong with 'dummies' doing this sort of stuff

Re: Question regarding tomcat-apache.conf file.

2003-06-16 Thread NormW
- From: Thomas, Kevin [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Monday, June 16, 2003 9:00 PM Subject: RE: Question regarding tomcat-apache.conf file. Monday is as usual, a struggle! The excesses of the weekend are taking their toll...grin. I'm running both on the same

RE: Question regarding tomcat-apache.conf file.

2003-06-16 Thread Thomas, Kevin
://www.onjava.com/pub/a/onjava/2002/11/20/tomcat.html?page=2 to see if I can get things running this way. -Original Message- From: NormW [mailto:[EMAIL PROTECTED] Sent: 16 June 2003 12:20 To: Tomcat Users List Subject: Re: Question regarding tomcat-apache.conf file. Just a tad too quick

Re: Question regarding tomcat-apache.conf file.

2003-06-16 Thread stephan beal
On Monday 16 June 2003 13:20, NormW wrote: Just a tad too quick with the 'send'... mod_jk or mod_jk2? If you don't have a preference, go with mod_jk... it has only recently been updated and if you get auto config working, it only supports jk anyway. There are slots at Jakarta for the binaries

Re: Question regarding tomcat-apache.conf file.

2003-06-16 Thread NormW
Good evening Kevin. Takes my cue! What they are configuring there are the example applications that come with Tomcat read what you can of the Tomcat docs once you get Apache and Tomcat working and 'see' how straight-forward the setup actually is... a bunch of settings that tell Apache what to

RE: Question regarding tomcat-apache.conf file.

2003-06-16 Thread Thomas, Kevin
/apachectl start: httpd could not be started Any ideas? (sorry to bug you with this one!) -Original Message- From: NormW [mailto:[EMAIL PROTECTED] Sent: 16 June 2003 12:54 To: Tomcat Users List Subject: Re: Question regarding tomcat-apache.conf file. Good evening Kevin. Takes my cue! What

Re: Question regarding tomcat-apache.conf file.

2003-06-16 Thread NormW
16, 2003 10:17 PM Subject: RE: Question regarding tomcat-apache.conf file. Norm. I used the basic format that being offered on that website to understand what changes were required. After following them (making my own tweaks to ensure correct paths etc), I attempted to restart Apache and got

Re: Question regarding tomcat-apache.conf file.

2003-06-16 Thread John Turner
Hi - Tomcat doesn't write out the file unless you modify server.xml to include Listener elements, one for each Server you have defined, and one for each Host you have defined. More info in my HOWTOs: http://www.johnturner.com/howto (search for Listener), and there is an example of the

Re: Question regarding tomcat-apache.conf file.

2003-06-16 Thread John Turner
module are you using? Mod_jk or md_jk2? Norm - Original Message - From: Thomas, Kevin [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Monday, June 16, 2003 8:16 PM Subject: RE: Question regarding tomcat-apache.conf file. Thanks for the reply. When you say you haven't used

Re: Question regarding tomcat-apache.conf file.

2003-06-16 Thread John Turner
getting the two talking, there's plenty of info but no real, dummies guides. Mind you I don't suppose dummies like me should be tinkering with this stuff!! ;o) Kev. -Original Message- From: NormW [mailto:[EMAIL PROTECTED] Sent: 16 June 2003 11:32 To: Tomcat Users List Subject: Re: Question

Re: Question regarding tomcat-apache.conf file.

2003-06-16 Thread John Turner
... But before going on, best if you nominate your jk(2) module and wether you compile or buy... Norm - Original Message - From: Thomas, Kevin [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Monday, June 16, 2003 9:00 PM Subject: RE: Question regarding tomcat-apache.conf file

Re: Question regarding tomcat-apache.conf file.

2003-06-16 Thread John Turner
Complete HOWTO, step by step: http://www.johnturner.com/howto John On Mon, 16 Jun 2003 21:53:45 +1000, NormW [EMAIL PROTECTED] wrote: Good evening Kevin. Takes my cue! What they are configuring there are the example applications that come with Tomcat read what you can of the Tomcat docs

RE: Question regarding tomcat-apache.conf file.

2003-06-16 Thread Thomas, Kevin
PROTECTED] Sent: 16 June 2003 13:51 To: Tomcat Users List Subject: Re: Question regarding tomcat-apache.conf file. Tomcat 4.1 most definitely supports the auto configuration option. John On Mon, 16 Jun 2003 20:32:22 +1000, NormW [EMAIL PROTECTED] wrote: Good evening Kevin AFAIK Tomcat 4.1

<    1   2   3   4   5   6   >