Re: Tomcat does not evaluate jspf extension files

2005-01-24 Thread Paul Gregoire
Ok, just so its clear... servlet-mapping servlet-namejsp/servlet-name url-pattern*.jsfp/url-pattern /servlet-mapping ;) Larry Meadors wrote: See the problem below? On Mon, 24 Jan 2005 17:01:38 -0800 (PST), Norris Shelton wrote: Everytime I try to use a .jsfp extension for a

Re: tomcat 5.0.27 xml schema or DTD for server.xml

2004-08-29 Thread Paul Gregoire
This should point you in the right direction.. lt;web-app xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd; version=2.4 gt; Luke (Terry)

Re: Session Replication w/o Multicast

2004-07-13 Thread Paul Gregoire
You could save your sessions in an RDBMS, but I'm not sure how responsive this would be... Jeremy Nix wrote: Is there currently a way of replicating session information across multiple tomcat nodes without multicasting? If not, has any extended the Tomcat API to support this? The reason I ask

Re: Como funciona tomcat en Fedora Core 2

2004-07-02 Thread Paul Gregoire
The internet provides many options for translation. El Internet proporciona muchas opciones para la traducción. http://babelfish.altavista.com/ or http://www.google.com/language_tools Randall Svancara wrote: make that port 8080 -Original Message- From: Randall Svancara [mailto:[EMAIL

Re: Apache startup errors

2004-05-25 Thread Paul Gregoire
I experienced this problem on FreeBSD.. i cant remember what the fix was exactly but i can tell you to work around it you will have to make a change in your httpd.conf. I found my fix by pasteing the error into Google.. good luck Shapira, Yoav wrote: Hi, Maybe ask on the Apache httpd

Re: Any Resource talking abt how Tomcat intergrated to Apache

2004-05-20 Thread Paul Gregoire
You can use mine http://www.gregoire.org/howto/virtualhost.jk2.html just make sure you rename the worker= to group= in the workers2.properties file Salvador Santander Gutierrez wrote: http://johnturner.com/howto/apache-tomcat-howto.html I hope this helkp you - Original Message -

Re: jar and jad with httpd

2004-05-19 Thread Paul Gregoire
For JAD files.. .jad = text/vnd.sun.j2me.app-descriptor For JAR files... .jar = application/java-archive and / or .jar = application/x-java-archive kalin mintchev wrote: hi all sorry if this isn't the right place for this question... i just couldn't find a better place to ask... i'm trying to

Re: jar and jad with httpd

2004-05-19 Thread Paul Gregoire
If you mean do i need Tomcat to serve java files then the answer is no you dont need Tomcat, serving jad and jar files works just fine without any java vm at all on the webserver. kalin mintchev wrote: For JAD files.. .jad = text/vnd.sun.j2me.app-descriptor For JAR files... .jar =

Re: Starting Tomcat from Apache...

2004-05-06 Thread Paul Gregoire
The real question is has anyone gotten it work work in Linux! It always seemed odd to me that it worked in Windows but not Linux.. ;) Ive got a couple how-to's on my site http://www.gregoire.org/howto/ One of which shows how to do inprocess with Win32 and Tomcat 4x. I would really like to add

Re: Getting a request in a non English character

2004-04-25 Thread Paul Gregoire
This article may shed some light on your problem.. http://www.javaworld.com/javaworld/jw-04-2004/jw-0419-multibytes.html? Mark Thomas wrote: Try specifying the encoding in your client as as windows-1255 Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent:

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

2004-04-15 Thread Paul Gregoire
Ok, to help i have created another how-to on this subject.. http://www.gregoire.org/howto/virtualhost.jk2.html Hope it helps... - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

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

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

Re: How to format number

2003-10-06 Thread Paul Gregoire
Look into the java.text package, you'll find a Number formatter there.. or if you dont want a String, use Math.round() - Original Message - From: Lee Chin Khiong [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Monday, October 06, 2003 6:37 PM Subject: How to format

RE: Jboss to parse exsisting tomcat server.xml ...

2003-06-02 Thread Paul Gregoire
-- this is my 3rd attempt to answer a question please disregard if youve seen it already :) -- To make changes to tomcat under jboss you must edit tomcat41-service.xml not server.xml; changes made to the server.xml will not be used by tomcat. The Tomcat bundled with JBoss uses the

Fw: Jboss to parse exsisting tomcat server.xml ...

2003-05-29 Thread Paul Gregoire
-- this is my 4th attempt to answer a question please disregard if youve seen it already :) -- To make changes to tomcat under jboss you must edit tomcat41-service.xml not server.xml; changes made to the server.xml will not be used by tomcat. The Tomcat bundled with JBoss uses the

Exclusion of certain file types with JK2

2003-05-29 Thread Paul Gregoire
Does anyone here know how to exclude a file type using JK2? I ask because doing the following below will cause all files to be served by Tomcat.. right? [uri:/myApp/*.jsp] info=Extension mapping [uri:/myApp/*] info=Map the whole webapp I want Apache to serve all html, xml, css, etc.. Also

RE: Servlet help

2003-03-27 Thread Paul Gregoire
Once you have compiled the new servlet either jar it up or copy it directly to your WEB-INF/classes, if you jar'd it then copy the jar to WEB-INF/lib. Now within moments your servlet should be available unless you have: - turned servlet reloading off - have not made an entry for

RE: JK2 2.0.1 and Apache 2.0.44 problem

2003-02-19 Thread Paul Gregoire
To make changes to tomcat under jboss you must edit tomcat41-service.xml not server.xml; changes made to the server.xml will not be used by tomcat. The tomcat41-service.xml file will be located in your /deploy directory of the selected configuration set. Might i suggest that you purchase the

[HOWTO] Apache 2.0.4x Tomcat 4.1.x JK2

2003-02-12 Thread Paul Gregoire
I have a howto that works for us at http://www.vmdirect.com/ for our windows based installs. http://www.gregoire.org/howto/Apache2_Jk2_TC4.1.x_JSDK1.4.x.html - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: Beware: Don't use JNI inprocess mode with JK2, it's badly broken

2003-02-12 Thread Paul Gregoire
In the attachments to Rahul's bug it appears he is using Win32; we have Apache 2.0.44 / Tomcat 4.1.18 / JK2 2.0.2 working inprocess just fine on our windows boxes. I ran into a problem when i tried to use inprocess on Linux and have given up for now; I can however run it out of process just

Re: JK2 for Apache 2.0.44 on Linux

2003-02-03 Thread Paul Gregoire
- From: Paul Gregoire [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 02, 2003 11:22 PM To: Tomcat Users List Subject: Re: JK2 for Apache 2.0.44 on Linux That is the JK2 2.0.1 release and it does not include a build for 2.0.44 unless the 2.0.43 version works with 2.0.44

JK2 for Apache 2.0.44 on Linux

2003-02-02 Thread Paul Gregoire
Does anyone here know where i can find jk2 2.0.2 for apache 2.0.44?? i am trying to get tomcat 4.1.18 running on my Redhat 8 box, but i cannot seem to get connectors build for myself. I also cannot find them on Apache's site. Thanks in advance

Re: JK2 for Apache 2.0.44 on Linux

2003-02-02 Thread Paul Gregoire
:09 PM Subject: RE: JK2 for Apache 2.0.44 on Linux http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/release/v2.0. 1/bin/linux/i386/ John -Original Message- From: Paul Gregoire To: Tomcat Users List Sent: 2/2/03 10:05 PM Subject: JK2 for Apache 2.0.44 on Linux Does

Re: mod_jk2/unixsocket: can't create apr

2003-01-16 Thread Paul Gregoire
Just a quick question related to this thread.. does Apache 2.0.43 have to be compiled with APR to get Jk2 to work? - Original Message - From: Brzezinski, Paul J [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, January 16, 2003 8:07 AM Subject: RE:

Re: Help : Apache 2.0.43 , Tomcat 4.1.12 , jk and/or jk2 , win 2k

2002-10-08 Thread Paul Gregoire
I have a similar problem, but the only thing i cant get working is any url in which a servlet is being called.. x.x.44.54 - - [08/Oct/2002:21:29:21 -0800] GET /servlet/test HTTP/1.1 404 - The tomcat access log always reports a 404 no matter which port the servlet is called on 80 or 8080. I