default pageEncoding

2002-07-23 Thread Dmitry Melekhov
Hello! Is it possible to set default pageEncoding for jsps? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: default pageEncoding

2002-07-23 Thread Eric Leung
Hi, yes, just like HTML add a line like this: META HTTP-EQUIV=Content-Type Content=text/html; Charset=iso-8859-1 character set Eric Hello! Is it possible to set default pageEncoding for jsps? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands,

Re: default pageEncoding

2002-07-23 Thread Dmitry Melekhov
Eric Leung wrote: Hi, yes, just like HTML add a line like this: META HTTP-EQUIV=Content-Type Content=text/html; Charset=iso-8859-1 character set Eric I understand. But our devepopers are too lazy ;-) They don't want to write this line in every jsp... Is it possible

AW: default pageEncoding

2002-07-23 Thread Ralph Einfeldt
AFAIK it not possible to set the default encoding by configuration. But you could write a servlet filter that does this. -Ursprungliche Nachricht- Von: Dmitry Melekhov [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 23. Juli 2002 08:26 An: Tomcat Users List Betreff: Re: default

Re: AW: default pageEncoding

2002-07-23 Thread Dmitry Melekhov
Ralph Einfeldt wrote: AFAIK it not possible to set the default encoding by configuration. :-( But you could write a servlet filter that does this. Could you tell me how? As I understand, pageEncoding directive works at compile time and it is impossible to do this with filter?

newbie please softlinks problems with tomcat 4.1.7 ?

2002-07-23 Thread CouasPhilippe
Hi Two questions 1 why with tomcat 4.0.4 i can acces on an absolute lin ln -s /appli appli created in ROOT directory, and with tomcat 4.1.7 i have an 404 error ??? 2 why with Tomcat 4.0.4 i have an java.lang.NoClassDefFoundError: com/sun/xml/tree/XmlDocument and that is good with tomcat

RE: Question about servlets

2002-07-23 Thread Gattaz, Olivier
Hello with the GET method, your data are sent in the URL. There are various documented and undocumented limits to URLs. A reasonable limit appears to be 4K. Warning: the length of the datas passed in the URL is the ID of your input objects and their datas. with the post method, the situation is

AW: localhost vs IP address in the URL

2002-07-23 Thread Power-Netz \(Schwarz\)
on the same machine where tomcat is installed. Using localhost is 20 times slower than using IP address. names - ip resolves take time . not caching the name - ip result will take MUCH MORE TIME :)) Doesnt make a difference if I use Apache/AJP/Tomcat or Direct to Tomcat web server. If

AW: TOMCAT + SSL or APACHE+TOMCAT+SSL??

2002-07-23 Thread Power-Netz \(Schwarz\)
Hello, I need to have SSL certificate . Web server is Tomcat4.04 serving static and dynamic pages. Should i upgrade it to APACHE+TOMCAT+SSL or TOMCAT+SSL will do? . TOMCAT+SSL will do. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

How can I access files that are in the webapps directory?

2002-07-23 Thread Laurence Turpin
Hi I have installed Tomcat 4.04 on my Mandrake 8.2 server. The problem I have is that the book I am reading tells me to put my files in the webapps directory, but when I try to access them Tomcat automatically looks for them in the webapps/ROOT directory. Should I alter my configuration in

Re: Jboss application server

2002-07-23 Thread Richard Plukker
put your war file in an ear file. Or put the servlets in an ear file conform the j2ee spec. Than when you put it in the deploy directory of your jboss installation, your webapp will be deployed. Visit the free documentation of www.jboss.org or look for a tutorial on deploying applications in

AW: How can I access files that are in the webapps directory?

2002-07-23 Thread Ralph Einfeldt
Put them in the webapps/ROOT directory. webapps is the parent directory for all contexts. ROOT is the directory for the default context. Unless you define a new context (web application) it's enough to put your files in the ROOT directory -Ursprüngliche Nachricht- Von: Laurence Turpin

Re: How can I access files that are in the webapps directory?

2002-07-23 Thread Willis Boyce
Laurence, Looks like your book is a little clueless. You can have multiple apps installed and running as part of a single Tomcat server. Each app has a separate directory under webapps and also a context path. The context path tells Tomcat the path under which the application lives from the

AW: AW: default pageEncoding

2002-07-23 Thread Ralph Einfeldt
Sorry, my answer was a bit to fast. There is more than one aspect of the encoding: - Compiletime This aspect defines which character set is/was used to write the source of the page. That's what you can define with the -encoding option of javac. I'm not shure, how to specify that for

symbol table

2002-07-23 Thread Johnny
How to display symbol table associated with objects, archive library of objects or executable files in Java? In C language, we use nm command, but how about Java? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: help please with error-page?

2002-07-23 Thread Bronwen Cassidy
Some strange things seem to be happening, and i would be gratefull for any pointers. I am using Tomcat standalone version 4.0.4 on windows2K and also the same running on solaris 8. I am using web-app_2_3.dtd, i have one filter (an XSLTFilter), the app uses struts and everything works as it should

Re: symbol table

2002-07-23 Thread Willis Boyce
The javap utility (included with the JDK) will tell you about the methods, variables and scopes, and bytecodes of any Java class. Try javap -private your.class.Name and then work from there. W On Tue, 23 Jul 2002, Johnny wrote: How to display symbol table associated with objects, archive

Re: AW: AW: default pageEncoding

2002-07-23 Thread Dmitry Melekhov
Ralph Einfeldt wrote: Sorry, my answer was a bit to fast. There is more than one aspect of the encoding: - Compiletime This aspect defines which character set is/was used to write the source of the page. That's what you can define with the -encoding option of javac. I'm not

Tomcat 4.0.2

2002-07-23 Thread saikat ganguly
Dear Sir, How can I configure Tomcat 4.0.2, as for serving my jsp and servlet requests and also integrate it, with apache(for html requests).I have j2sdk1.4.0 and jsdk2.1 running on windows98.Please help. Saikat Ganguly __ Do You Yahoo!?

In which version of Tomcat can i find Tag Pooling

2002-07-23 Thread shanmugampl
Hi all, There was an option to enable tag pooling in tomcat 3.3. Is the same functionality still available in tomcat4.0.4 or 4.1.7 beta. I downloaded both and was not able to find any provision in the corresponding server.xml files. Can someone tell me whether tag pooling support is

tomcat and relative links

2002-07-23 Thread Günter Kukies
Hi, what does tomcat do with relative links like this /mywebapp/public/images/image.gif. What I see (in the logs) is tomcat cuts off /mywebapp to find the correct webapp. Then it tries to map /public/images/image.gif. In the log i can see 3 or 4 tries to map something (Extention etc.). But I

Tomcat 4.0.3 and non-asci characters (JSP pages)

2002-07-23 Thread Ryszard Lach
Hi! Could anyone explain how are non-ascii characters processed by Tomcat ? I have the following configuraton: Tomcat 4.0.3 running with apache (mod_webapp), environment: LANG=pl_PL, JDK1.4.0 with command-line parameter -Djavax.servlet.request.encoding=ISO-8859-2 JSP page with '%@ page

Tomcat 4.0.4 on RAQ - mod_webapp

2002-07-23 Thread Michele Neylon -Blacknight Solutions
If anybody can help me fix this I would be extremely grateful! I've been trying to setup Tomcat 4.0.4 with Apache 1.3.2 When I try to use the mod_webapp connector I get the following error: Setting up Web Service: Syntax error on line 65 of /etc/httpd/conf/httpd.conf: Cannot load

RE: Tomcat 4.0.4 on RAQ - mod_webapp

2002-07-23 Thread Sullivan, Mark E
what version of linux are you running? and are you using a binary version of mod_webapp.so, or did you build it yourself? -Original Message- From: Michele Neylon -Blacknight Solutions [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 6:32 AM To: [EMAIL PROTECTED] Subject: Tomcat

RE: Tomcat 4.0.4 on RAQ - mod_webapp

2002-07-23 Thread Michele Neylon -Blacknight Solutions
At 07.15 23/07/2002 -0500, you wrote: what version of linux are you running? and are you using a binary version of mod_webapp.so, or did you build it yourself? Linux version is Cobalt 6.0: kernel-reiserfs-utils-2.2.16C32_III-2 kernel-2.2.16C32_III-2 kernel-headers-2.2.16C32_III-2 I had to build

Help with chaining servlets via filters

2002-07-23 Thread John Rishea
Could someone please point me toward a good resource that shows an example of chaining two servlets using a filter? I've found lots of filter examples during my google searches but none of them shows exactly how to chain two servlets together with a filter. Thanks for the help.

RE: Tomcat 4.0.4 on RAQ - mod_webapp

2002-07-23 Thread Sullivan, Mark E
try this: http://www.apachelabs.org/tomcat-dev/200109.mbox/%3C1001117490.13581.20613@w ww.purpleturtle.com%3E -Original Message- From: Michele Neylon -Blacknight Solutions [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 7:37 AM To: Tomcat Users List Subject: RE: Tomcat 4.0.4 on

RE: RMI and TC4.x

2002-07-23 Thread David Oxley
It does actually connect to the RMI server, but it can't download classes from the web server. It looks like java.rmi.codebase = TC local path rather than http://server/webapp which iks what the code sets it to. Dave -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED]]

RE: Tomcat 4.0.4 on RAQ - mod_webapp

2002-07-23 Thread Michele Neylon -Blacknight Solutions
I already tried that, but it didn't work :-( I would be just as happy to use mod_jk instead of mod_webapp.so , but that isn't working properly either! eg. http://www.blacknightsolutions.com/test.jsp Although Tomcat is running it reports 404s on any jsp or servlets passed to it. I tried to

Configure TomCat for Virtual Hosts in Windows 2000 Server

2002-07-23 Thread Rahul Chd
hi, I have Tomcat 4.0.4 on W2K, IIS 5 and J2SEE. Could anyone tell me how to configure the system so that various virtual hosts on my server can run .jsp etc. from within their directories. Please explain in detail with full example, related urls, as I don't have much experience in JSP,

RE: Tomcat 4.0.4 on RAQ - mod_webapp

2002-07-23 Thread Sullivan, Mark E
what do your JkMount statements look like? Also, how did you configure the default context in tomcat? -Original Message- From: Michele Neylon -Blacknight Solutions [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 7:56 AM To: Tomcat Users List Subject: RE: Tomcat 4.0.4 on RAQ -

RE: Tomcat 4.0.4 on RAQ - mod_webapp

2002-07-23 Thread Michele Neylon -Blacknight Solutions
At 07.49 23/07/2002 -0500, you wrote: what do your JkMount statements look like? JkMount /*.jsp ajp13 JkMount /servlet/* ajp13 Also, how did you configure the default context in tomcat? I don't understand that question - sorry! -Original Message- From: Michele Neylon -Blacknight

RE: Tomcat 4.0.4 on RAQ - mod_webapp

2002-07-23 Thread Charles N. Harvey III
Another good way to map servlets is to copy struts. They end all their servlet mappings with an extension: .do. You can call it anything you like. But now your mod_jk mount looks like this JkMount /*.jsp ajp13 JkMount /*.do ajp13 Just my opinion. Charlie -Original Message- From:

Re: How does Apache access more than one application on Tomcat?

2002-07-23 Thread Ashish Kulkarni
Hi, if u have set the communication between apache and tomcat for one appication what u need to do is just mount the other application JkMount /maps ajp13 JkMount /maps/* ajp13 these is an example for appication maps on tomcat --- shi_hang [EMAIL PROTECTED] wrote: Is there anyone can tell me

Compatibility between Tomcat4.04 and JDK1.22

2002-07-23 Thread Gunter D'Hondt
Is Tomcat4.0.4 compatible with Sun JDK 1.22? Gunter -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Gunter D'Hondt Sent: vrijdag 19 juli 2002 16:06 To: 'Tomcat Users List' Subject: RE: Apache/Tomcat/Mod_jk = setKeepAlive() in Ajp13Connector.run =

mod_jk.so

2002-07-23 Thread Billingham, Walter 475
Ok, I now have several compiled versions of mod_jk.so thanks to everyone for contributing to that. I am lost again though, what is the next step in this process to get Apache and Tomcat connected? I believe it is using the make file or apxs on the .so to get it on board with Apache, so

Re: Compatibility between Tomcat4.04 and JDK1.22

2002-07-23 Thread IT-INDIA.com
yes, it is tomcat 4.04 is compatible with JDK 1.2+ sam - Original Message - From: Gunter D'Hondt [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Tuesday, July 23, 2002 6:24 AM Subject: Compatibility between Tomcat4.04 and JDK1.22 Is Tomcat4.0.4 compatible with Sun

RE: Compatibility between Tomcat4.04 and JDK1.22

2002-07-23 Thread Gunter D'Hondt
That's what I thought too but why am I getting this error then: java.lang.NoSuchMethodError: java.net.Socket: method setKeepAlive(Z) As you can see below, others have said to upgrade to jdk1.3+ becoz the method setKeepAlive() is not in jdk1.22. My problem is that my current configuration doesn't

Q: Is the a way to recompile classes....

2002-07-23 Thread Anthony Diodato
Im running Tomcat 3.2.4, is there a way to load recompiled classes without having to re-start Tomcat?? Anthony Diodato Webmaster - IT Prophet 21, Inc. 19 West College Avenue Yardley, PA 19067 1-800-776-7438, ext. 4600 Fax: 215-321-8014 [EMAIL PROTECTED] http://www.p21.com/

RE: help please with error-page?

2002-07-23 Thread Bronwen Cassidy
For anyone who gets a similar error to that which i have described below, i have found the solution, but not the answer :-( but i am digging. The solution is to down-grade to jakarta-tomcat-4.0 and everything works as sweet as can be :-) jakarta-tomcat-4.03b3 does not work, but i'll cycle

RE: Is the a way to recompile classes....

2002-07-23 Thread Sullivan, Mark E
add reloadable=true to the context configuration for your webapp -Original Message- From: Anthony Diodato [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 8:35 AM To: '[EMAIL PROTECTED]' Subject: Q: Is the a way to recompile classes Im running Tomcat 3.2.4, is there a way to

RE: Is the a way to recompile classes....

2002-07-23 Thread Anthony Diodato
What file can I find this in??? -Original Message- From: Sullivan, Mark E [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 9:36 AM To: 'Tomcat Users List' Subject: RE: Is the a way to recompile classes add reloadable=true to the context configuration for your webapp

RE: mod_jk.so

2002-07-23 Thread Arnaud HERITIER
to install mod_jk you should read this : http://jakarta.apache.org/tomcat/tomcat-4.0-doc/config/ajp.html -Message d'origine- De : Billingham, Walter 475 [mailto:[EMAIL PROTECTED]] Envoye : mardi 23 juillet 2002 15:23 A : '[EMAIL PROTECTED]' Objet : mod_jk.so Ok, I now

RE: Is the a way to recompile classes....

2002-07-23 Thread Sullivan, Mark E
it's in the $TOMCAT_HOME/conf/server.xml file -Original Message- From: Anthony Diodato [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 8:44 AM To: 'Tomcat Users List' Subject: RE: Is the a way to recompile classes What file can I find this in??? -Original Message-

RE: Is the a way to recompile classes....

2002-07-23 Thread Anthony Diodato
My contexts are set up like this. Context path=/cocoon docBase=webapps/cocoon debug=0 reloadable=true /Context Context path=/ docBase=C:/src/java/jsp debug=0

TEST

2002-07-23 Thread Martin GEORGE
TEST -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

TEST2

2002-07-23 Thread Martin GEORGE
TEST -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Tomcat Question

2002-07-23 Thread Anthony Diodato
Larry, You've helped me with something in the past and I was wondering if you could lend a helping hand again. here is the situation... Im running Tomcat 3.2.4, is there a way to load recompiled classes without having to re-start Tomcat?? I was told to add reloadable=true to the context

AW: Tomcat Question

2002-07-23 Thread Ralph Einfeldt
What classes are you talking about servlets/beans or jsp's ? AFAIK in that version of tomcat the reloadable flag only works for jsp's. Try to touch a jsp (change the modification date) and request it. This should also reload the classes that are loaded through the same classloader. I can't

RE: Tomcat Question

2002-07-23 Thread Susan Himmelman
Hi, I am using Tomcat with the ADL sample Runtime environment. It is currently working as a standalone product. I would like to make it multi-user so the website (runtime environment) can be accessed via a URL on any client browser. I am currently reviewing the tomcat docs to see if I can

RE: Tomcat Question

2002-07-23 Thread Anthony Diodato
Servlets and Beans... If I change the code for one of my servlets, I need to re-start Tomcat for the changes to take affect. has anyone run into this problem before... -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 10:34 AM To: Tomcat

RE: mod_jk.so

2002-07-23 Thread Billingham, Walter 475
Hello Again, Can anybody share a copy of their mod_jk.conf file, workers.properties, and server.xml that has Tomcat 4.0.1 and Apache2 or Apache 1.3.x running, I would greatly appreciate it. Thanks. Walter B. Ok, I now have several compiled versions of mod_jk.so thanks to

AW: Tomcat Question

2002-07-23 Thread Ralph Einfeldt
Have you tried my hint with the jsp ? -Ursprüngliche Nachricht- Von: Anthony Diodato [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 23. Juli 2002 16:38 An: 'Tomcat Users List' Betreff: RE: Tomcat Question Servlets and Beans... If I change the code for one of my servlets, I

RE: Tomcat Question

2002-07-23 Thread Anthony Diodato
Im not using any JSP's everything is in XML. But, to kinda answer your question if I make changes to my xml, they take affect right away.. Any suggestions??? -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 10:42 AM To: Tomcat Users List

RE: Tomcat Question

2002-07-23 Thread Nishant_Awasthi
Hello Anthony, FYI, Well I am trying to run servlet/beans with tomcat and place new class files at the specific classpath its working fine for me... I neednot restart the tomcat everytime.I am using tomcat 4.0.3. I haven't changed anything in the configuration files...

RE: Tomcat Question

2002-07-23 Thread Sullivan, Mark E
are these jar files or class files? also, are they located in your webapps WEB-INF/classes directory or elsewhere? The reloading works correctly in tomcat 4+ versions of tomcat, but i've never tried it on the previous versions. Is there anything in the tomcat log files that suggest it is trying

RE: Tomcat Question

2002-07-23 Thread Anthony Diodato
Are there certain classpath configurations that I may need to make?? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 10:46 AM To: Tomcat Users List Subject: RE: Tomcat Question Hello Anthony, FYI, Well I am trying to run

RE: Tomcat Question

2002-07-23 Thread Sullivan, Mark E
if a jsp file is touched or changed it will be recompiled regardless of whether the context's reloadable flag is set to true. this is a 'feature' of jsps over servlets. -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 9:42 AM To: Tomcat

RE: Tomcat Question

2002-07-23 Thread Anthony Diodato
They are class files. And they are located in both places... I have my servlets in the WEB-INF/classes directory and all of my other Java classes are in c:/src/java/... But neither locations are working the way I want them to work. Nothing in logs either. -Original Message- From:

AW: Tomcat Question

2002-07-23 Thread Ralph Einfeldt
Then define a dummy jsp and give it a try. If that doesn't work for 3.2 you have to upgrade to tomcat 4.x. -Ursprüngliche Nachricht- Von: Anthony Diodato [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 23. Juli 2002 16:46 An: 'Tomcat Users List' Betreff: RE: Tomcat Question Im

RE: Tomcat Question

2002-07-23 Thread Sullivan, Mark E
as far as i know, only classes in the WEB-INF/classes directory will be reloaded. -Original Message- From: Anthony Diodato [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 9:51 AM To: 'Tomcat Users List' Subject: RE: Tomcat Question They are class files. And they are located in

RE: Tomcat Question

2002-07-23 Thread Nishant_Awasthi
I didn't change anything jus placed all my class file in %TOMCAT_HOME%/webapps/examples/servlets/WEB-INF/classes directory The context path for /example is already set in the defualt server.conf file. I didn't change anything...its running fine..

Tomcat and ASP

2002-07-23 Thread Henrik
Do I need another server program to run ASP scripts, or can Tomcat do it?

Re: Tomcat and ASP

2002-07-23 Thread Nishant_Awasthi
You need to use IIS 5.0 to run ASP pages... Nishant Awasthi Corporate Systems Development Progressive Insurance

Re: Tomcat and ASP

2002-07-23 Thread Henrik
Will PWS do? - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, July 23, 2002 5:17 PM Subject: Re: Tomcat and ASP You need to use IIS 5.0 to run ASP pages... --

Re: Tomcat and ASP

2002-07-23 Thread Nishant_Awasthi
ASP files only run using a server that supports Active Server Pages. This include Microsoft Internet Information Server and for Windows 95/98 Microsoft Personal Web Server

RE: Tomcat and ASP

2002-07-23 Thread Durham David Cntr 805CSS/SCBE
There's a unix compatible server (http://www.chilisoft.com/) for running asp -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 10:25 AM To: Tomcat Users List Subject: Re: Tomcat and ASP

Re: Tomcat and ASP

2002-07-23 Thread Henrik
Thanks! - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, July 23, 2002 5:25 PM Subject: Re: Tomcat and ASP ASP files only run using a server that supports Active Server Pages. This include Microsoft Internet Information Server

Setup advice urgently needed!

2002-07-23 Thread Henrik
Hi! I am new to this list, and to the Tomcat Jakarta. I've been setting things up to get into Java servlets, and I'm still having a problem setting up my desktop as a servlet-capable server. I got Apache's Tomcat (4.0.4) running, and it takes their own examples quite well. I also have my

Re: newbie on Tomcat 3.2.3

2002-07-23 Thread aloo
Hi, I found out the problem was because my servlet is using a different XML parser and XSL processor than Tomcat 3.2.3. As soon as I removed jaxp.jar and parser.jar from $TOMCAT_HOME/lib and moved my XML parser and XSL processor jar files in the lib directory, restart Tomcat, everything is

Re: JNDIRealm config

2002-07-23 Thread Tim Funk
To use JNDIRealm with Netscape Directory server you need the 4.1.X series of tomcat and you need to bind as the user. So do not provide connectionName and connection password. In the 4.0.X series the passwords are compared in an incompatible manner with respect to Netscape Dir server. - -

Re: AW: default pageEncoding

2002-07-23 Thread Craig R. McClanahan
On Tue, 23 Jul 2002, Dmitry Melekhov wrote: Date: Tue, 23 Jul 2002 11:35:27 +0500 From: Dmitry Melekhov [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: AW: default pageEncoding Ralph Einfeldt wrote: AFAIK it not

RE: Jboss application server

2002-07-23 Thread James Ward
You can actually just dump you war file in the deploy dir. JBoss's deployer knows to pass it off to whatever Web Container is being used. Use Ear files if you have EJB Jars and Wars. -James -Original Message- From: Richard Plukker [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23,

RE: Is the a way to recompile classes....

2002-07-23 Thread Durham David Cntr 805CSS/SCBE
reloadable=true handles classes in /web-inf/classes and jsp's I think. It does not cover jars, so if your uploading a jar to web-inf/lib, then yes, you have to restart tomcat. Does this help? Dave -Original Message- From: Anthony Diodato [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

Keep threads seperate please.

2002-07-23 Thread Ron Day
Please START NEW THREADS with NEW EMAIL TITLES please. It is hard to follow when people start new threads by replying to an old one. And you probably will not get a good answer either !! The attached Solaris question was titled Tomcat and ASP ron -Original Message- From: Feng Zhou

Re: Help with chaining servlets via filters

2002-07-23 Thread Craig R. McClanahan
On Tue, 23 Jul 2002, John Rishea wrote: Date: Tue, 23 Jul 2002 06:33:57 -0600 From: John Rishea [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat User Group [EMAIL PROTECTED] Subject: Help with chaining servlets via filters Could someone please point me toward a

Re: Tomcat Question

2002-07-23 Thread Craig R. McClanahan
On Tue, 23 Jul 2002, Anthony Diodato wrote: Im running Tomcat 3.2.4, is there a way to load recompiled classes without having to re-start Tomcat?? In theory, Tomcat 3.2.x knows how to automatically reload a webapp if a class in /WEB-INF/classes changes (it doesn't detect changes anywhere

Re: AW: Tomcat Question

2002-07-23 Thread Craig R. McClanahan
On Tue, 23 Jul 2002, Ralph Einfeldt wrote: Date: Tue, 23 Jul 2002 16:51:48 +0200 From: Ralph Einfeldt [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: AW: Tomcat Question Then define a dummy jsp and give it a try. That

RE: Tomcat and ASP

2002-07-23 Thread Feng Zhou
Has anybody tried to compile Apache 2.0.39 on Solaris 7 (Sparc)? I am trying to get Apache/Tomcat working on a SUN box but I got this error while compiling: make[3]: Entering directory `/home/fzhou/apache-2.0.39/os/unix' /bin/sh /home/fzhou/apache-2.0.39/srclib/apr/libtool --silent

map to multiple paths?

2002-07-23 Thread Panos Konstantinidis
Hello there I am working on a project where we are trying to migrate our whole system from Resin to Tomcat. We are running Tomcat 3.3.1 under Windows NT. We have a common folder that is accessible by all our webapps in Resin and this folder contains all the include files we are using. In

Creating new applications

2002-07-23 Thread Martin
The documentation is scary so I ordered some tomcat books. In the meantime, I would like to create new applications that are in a different directory that belong to a virtual host. I added WebAppDeploy servlet warpConnection /servlet/ to httpd.conf That of course will point to the default

RE: Help with chaining servlets via filters

2002-07-23 Thread John Rishea
Craig, I have one servlet that runs a unix script using runtime exec to create an output file, then a follow-up servlet that takes the output file and displays it to a browser window. The servlets work fine separately but don't work when combined into a single servlet. So I was looking for a

I find lots of these messages in my mod_jk.log. Should I worry? I am using tc4.0.4 with apache2

2002-07-23 Thread Luminous Heart
[Tue Jul 23 12:18:15 2002] [jk_ajp_common.c (844)]: Error connecting to the Tomcat process. [Tue Jul 23 12:18:15 2002] [jk_ajp_common.c (1153)]: In jk_endpoint_t::service, ajp_send_request failed in send loop 0 [Tue Jul 23 12:18:15 2002] [jk_connect.c (151)]: jk_open_socket, connect() failed

RE: Xalan performance within Tomcat

2002-07-23 Thread Jacob Hookom
What are you exactly doing to do the transformations? There seems to be about a dozen ways you could go about it setting up the Templates and the transformation Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire -Original Message- From: Ralph Einfeldt

RE: Help with chaining servlets via filters

2002-07-23 Thread Jacob Hookom
http://www.javaworld.com/javaworld/jw-06-2001/jw-0622-filters.html Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 10:47 AM To: Tomcat Users List

RE: Help with chaining servlets via filters

2002-07-23 Thread Craig R. McClanahan
On Tue, 23 Jul 2002, John Rishea wrote: Date: Tue, 23 Jul 2002 10:09:50 -0600 From: John Rishea [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: RE: Help with chaining servlets via filters Craig, I have one servlet that

Is there any way to stop exceptions getting logged to log file?

2002-07-23 Thread Mark O'Driscoll
I am using a filter to trap exceptions thrown by jsps/servlets. In normal program operation, lots of these exceptions get thrown. In order to stop 'localhost_log.-MM-DD.txt' getting clogged, I'd like to stop exceptions that are handled by the servlet engine from being logged. Or at least ust

Setting JkMount for root context servlets, jsps

2002-07-23 Thread Chris Ruegger
If I have a web app under Tomcat set as the root context, how should I set up my JkMount specs in mod_jk.conf such that calls to anything ending in .jsp or starting with /servlet are sent to tomcat? All of the examples I've seen so far redirect calls to Tomcat just based on the context name,

RE: AW: Tomcat Question

2002-07-23 Thread Anthony Diodato
Im in the process of upgrading to Tomcat 4.0.1 on a development machine now. Ill let you know how I make out. Thanks Tony -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 11:52 AM To: Tomcat Users List Subject: Re: AW: Tomcat Question

RE: [4.1.8] New test milestone released

2002-07-23 Thread Shapira, Yoav
Howdy, Downloaded, playing with it now. Looks good so far ;) What do people thing about adding the date/time to the Starting service ... and Stopping service ... messages in Catalina.out? e.g. Starting service Tomcat-Standalone at 2002-07-23 13:30 ? I'd like that. Yoav Shapira Millennium

Re: Is there any way to stop exceptions getting logged to log file?

2002-07-23 Thread Craig R. McClanahan
On Tue, 23 Jul 2002, Mark O'Driscoll wrote: Date: Tue, 23 Jul 2002 18:18:42 +0100 From: Mark O'Driscoll [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Is there any way to stop exceptions getting logged to log file? I am

Filter order of operation

2002-07-23 Thread Jacob Hookom
I know that a single request can come through multiple Filters in a chain, I'm wondering if there's any reliable way to ensure precedence in the chain of operation? Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire --- Outgoing mail is certified Virus Free.

Re: Filter order of operation

2002-07-23 Thread Craig R. McClanahan
On Tue, 23 Jul 2002, Jacob Hookom wrote: Date: Tue, 23 Jul 2002 12:54:52 -0500 From: Jacob Hookom [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Filter order of operation I know that a single request can come through

Re: Is it possible to specify a global 404 error page for all appsun der tomcat 4

2002-07-23 Thread Mike McGuinness
Change your location to a directory under the webapp name. E.g., A web app named myapp is under webapp ...webapps/myapp In this example the file to serve should be relative to the myapp dir not the webapps dir. On Mon, 2002-07-22 at 16:42, John Regan wrote: Good afternoon, I am

Tomcat Caching after uploading new files

2002-07-23 Thread Steve
Hi Everyone, I am desperately stuck with a problem and the developers are ripping me apart for it :) The issue is that Tomcat seems to keep a cache of all the of the .java files which have been previously executed in the c:\tomcat4\work\localhost\ directory. So everytime a change is made I have

RE: Tomcat Caching after uploading new files

2002-07-23 Thread Durham David Cntr 805CSS/SCBE
Executing .java files?? Do you have reloadable=true in the Context / element for the app? -Original Message- From: Steve [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 1:26 PM To: [EMAIL PROTECTED] Subject: Tomcat Caching after uploading new files Hi Everyone, I am

error

2002-07-23 Thread Carlos
can anybody says me what means this tomcat error?: thanks type Exception report message Internal Server Error description The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request. exception java.lang.IllegalStateException at

Tomcat mod_webapp: somtimes browser doesn't receibe images from apache

2002-07-23 Thread Nicolás Marjovsky
Hello. I'm using mod_webapp connector version 1.0.1, with tomcat, 4.0.1 and apache 1.3.12. The problem I'm having is that sometimes the images and stylesheets hosted by apache, referenced by the HTML pages generated by the JSPs don't get loaded. The point is that when these images are hosted

RE: Tomcat mod_webapp: somtimes browser doesn't receibe images from apache

2002-07-23 Thread Charles N. Harvey III
mod_webapp forwards *ALL* requests to Tomcat. Leaving nothing for Apache to handle. If you want images and stylesheets to be kept in apache then you have to use mod_jk instead. Charlie -Original Message- From: Nicolás Marjovsky [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23,

RE: Filter order of operation

2002-07-23 Thread Jacob Hookom
Cheers, I did a search previously on sun's site but everything seemed to only skim the surface. Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 1:13

  1   2   >