RE: help for newbie?

2002-11-26 Thread Kristján Bjarni Guðmundsson
Return Receipt Your RE: help for newbie? document

Re: help with multilingual JSP sites pls. using a Filter to rewrite the URL ?

2002-11-25 Thread Triptpal Singh Lamba
One way you can do this is using property files. Prop_ file name _ language code.properties So for say abc.jsp , you have abc_en.properties and abc_fr.properties. At comple time the JSP calls a class you write at server which gives say % String languageCode = ObjectName.getLaguageCode(param 1

Re: help with multilingual JSP sites pls. using a Filter to rewrite the URL ?

2002-11-25 Thread Stephen Riek
Sorry, I'm not making myself clear here. My JSPs do exactly as you suggest so that I have one JSP serving up French and English pages, depending on the language that the user selected on my site. Here is the problem explained very simply. I have a sitemap as follows: /en -- /Products --

RE: help with multilingual JSP sites pls. using a Filter to rewrite the URL ?

2002-11-25 Thread Cox, Charlie
]] Sent: Monday, November 25, 2002 11:27 AM To: Tomcat Users List Subject: Re: help with multilingual JSP sites pls. using a Filter to rewrite the URL ? Sorry, I'm not making myself clear here. My JSPs do exactly as you suggest so that I have one JSP serving up French and English pages

RE: help with multilingual JSP sites pls. using a Filter to rewrite the URL ?

2002-11-25 Thread Ron Smits
The browser can tell you the language that the system is setup for: Accept-Language: en-us, en;q=0.50 This is from my Mozilla setup All modern browsers will return an Accept Language string Another question related to this, Are you telling me that all your jsp pages have the actual content

RE: help with multilingual JSP sites pls. using a Filter to rewri te the URL ?

2002-11-25 Thread Stephen Riek
Thanks for the reply Ron, I've heard of people using Accept-Language before but have my own doubts about that. For example, using Tomcat's example servlet to examine the request. ( http://127.0.0.1:8080/examples/servlet/RequestHeaderExample ) I find that accept-language is always en-us on my

RE: help with multilingual JSP sites pls. using a Filter to rewri te the URL ?

2002-11-25 Thread Stephen Riek
: Monday, November 25, 2002 11:27 AM To: Tomcat Users List Subject: Re: help with multilingual JSP sites pls. using a Filter to rewrite the URL ? Sorry, I'm not making myself clear here. My JSPs do exactly as you suggest so that I have one JSP serving up French and English pages

RE: help with multilingual JSP sites pls. using a Filter to rewri te the URL ?

2002-11-25 Thread Cox, Charlie
-Original Message- From: Stephen Riek [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 12:47 PM To: Tomcat Users List Subject: RE: help with multilingual JSP sites pls. using a Filter to rewri te the URL ? Thanks Charlie. Genius. Another simple solution saves the day. I

Re: help with multilingual JSP sites pls. using a Filter to rewritethe URL ?

2002-11-25 Thread Kwok Peng Tuck
Why don't you look up on resource bundles instead? Stephen Riek wrote: Sorry, I'm not making myself clear here. My JSPs do exactly as you suggest so that I have one JSP serving up French and English pages, depending on the language that the user selected on my site. Here is the problem

Re: Help needed with Tomcat support for Double Byte Chars

2002-11-25 Thread Joel Rees
Hi, We are using Tomcat3.3.1 and Oracle on Linux. When we enter DoubleByte Chars (CJK, GB2312) in jsp form input, Tomcat turns the characters into 's. The only way we can get around this problem now is to set the IE browser to check the temporary files everytime. I think I've seen

Re: Help needed with Tomcat support for Double Byte Chars

2002-11-25 Thread Stephen Riek
There are so many possible reasons for this. My advice, 1. Check that the data you send is being received as GB2312 or whatever. Easiest way to do this is to write it out to a text file. See the Discrepancies... thread for my code to do just this. 2. Also in the Discrepancies thread,

RE: help with multilingual JSP sites pls. using a Filter to rewri te the URL ?

2002-11-25 Thread Stephen Riek
a filter if you are going to map all requests. glad to help :-) Charlie -Original Message- From: Stephen Riek [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 12:47 PM To: Tomcat Users List Subject: RE: help with multilingual JSP sites pls. using a Filter to rewri te the URL

Re: Help needed with Tomcat support for Double Byte Chars

2002-11-25 Thread Bill Barker
The charset support in 3.3.1 is actually very amazing, given the limitations of the Servlet 2.2 Spec (the principal author is an iso-latin-2 person). Firstly, Tomcat 3.3.1 will attempt to remember the last charset (in the session) that was used for the last output page. Since almost all browsers

Re: Help!!

2002-11-20 Thread Georg Hanwalter
Hi Paul try using the connector !-- Define an AJP 1.3 Connector on port 8009 -- !-- Connector className=org.apache.ajp.tomcat4.Ajp13Connector port=8009 minProcessors=5 maxProcessors=75 acceptCount=10 debug=0/ perhaps your mod_jk isn't a JK2-compatible

RE: Help!!

2002-11-19 Thread Turner, John
Apache has no idea that http://localhost/MyServletName/ServletMappedName is supposed to go to Tomcat. How could it? The only JkMount wildcard you have is /*.jsp, which doesn't match. Add a JkMount for /MyServletName/* and you should be OK. John -Original Message- From: Anderson,

RE: Help!!

2002-11-19 Thread Anderson, M. Paul
either page without difficulty. Any ideas on what I might have misconfigured? -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 10:56 AM To: 'Tomcat Users List' Subject: RE: Help!! Apache has no idea that http://localhost/MyServletName

RE: Help!!

2002-11-19 Thread Ralph Einfeldt
. -Original Message- From: Anderson, M. Paul [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 7:16 PM To: 'Tomcat Users List' Subject: RE: Help!! Ok...I added the JkMount for /MyServletName/* and it is working better...Now if I request either the MyServlet or the Hello.jsp page

RE: help: how do I get a Java variable inside a body tag?

2002-11-16 Thread Doug Blackburn
One thing you could do is retrieve MyBean in the TagHandler. It would look something like this: MyBean = (MyBean) pageContext.findAttribute(MyBean); -Original Message- From: Bernd Prager [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 16, 2002 9:28 PM To: 'Tomcat Users List' Subject:

RE: help me!why i can't start the manager

2002-11-13 Thread Matthew O'Haire
Are you aware that the base URL for the manager GUI is http://localhost:8080/manager/html ? -Original Message- From: [EMAIL PROTECTED] [mailto:xhqian258;hotmail.com] Sent: Wednesday, 13 November 2002 5:01 PM To: [EMAIL PROTECTED] Subject: RE: help me!why i can't start the manager

Re: Help in JNI

2002-11-13 Thread Jeanfrancois Arcand
This seems to be a VM craches. Have you try the Hotspot mailling list? That might be a better place to ask the question (faster answer :-) ) -- Jeanfrancois Santosh Kulkarni wrote: Hi, I'm getting this stack trace when I invoke a JNI call. This is happening on solaris only and could not

RE: help me!why i can't start the manager

2002-11-12 Thread Turner, John
Did you follow the instructions? Did you set up a role named manager in tomcat-users.xml? Did you create a user in tomcat-users.xml with that role assigned to them? John -Original Message- From: ? ?? To: [EMAIL PROTECTED] Sent: 11/12/02 4:00 AM Subject: help me!why i can't start the

RE: help me!why i can't start the manager

2002-11-12 Thread
here is my tomcat-user.xml,but i still can't start manager from http://localhost:8080 please help me ,thank you!! ?xml version='1.0' encoding='utf-8'? tomcat-users role rolename=tomcat/ role rolename=role1/ role rolename=manager/ role rolename=admin/ user username=tomcat password=tomcat

Re: help me!why i can't start the manager

2002-11-12 Thread Kaustuv Sharma
Message - From: Ç® С»¢ To: [EMAIL PROTECTED] Sent: Wednesday, November 13, 2002 12:30 PM Subject: RE: help me!why i can't start the manager here is my tomcat-user.xml,but i still can't start manager from http://localhost:8080 please help me ,thank you!! ?xml version='1.0

Re: Help with simple mod_jk conf

2002-11-11 Thread Jdev
Thank you John you are right my localhost was wrong but now I have no errors inside my mod_jk.log but I still n have Internal Server Error for any jsp request without :8080 prefix. in response to: The simplest mod_jk configuration is to just stick Listener elements into server.xml that call

RE: Help with simple mod_jk conf

2002-11-10 Thread Turner, John
The simplest mod_jk configuration is to just stick Listener elements into server.xml that call the ApacheConfig class. Your mod_jk.conf is created automatically then, with appropriate entries. The only file you have to worry about at that point is workers.properties. John -Original

RE: Help with simple mod_jk conf

2002-11-10 Thread Turner, John
Judging from the logfile, your machine cannot resolve the name localhost. Make sure there is an entry in your hosts file for localhost pointing to 127.0.0.1. To answer your question, yes, an AddModule line typically says something like module-name.c. Modules are written in C...your .so file

Re: HELP for novice

2002-11-06 Thread Sriram N
Have you looked at the docs available with tomcat and also at http://www.johnturner.com/howto/apache-tomcat-howto.html Never worked much on Un*x beyond a few shell commands and such, but I do think that the mod_jk.so files might be missing. If you have taken these .so files, are they in the

RE: HELP for novice

2002-11-06 Thread Turner, John
Solaris 8 Apache + Tomcat + Connector HOWTO: http://www.johnturner.com/howto John -Original Message- From: Sam Harris [mailto:HarrisS;franklin.edu] Sent: Wednesday, November 06, 2002 10:37 AM To: [EMAIL PROTECTED] Subject: HELP for novice I installed tomcat 4.1.12 on Solaris

RE: Help: How to Capture Error Msgs/Exceptions when Tomcat Die.

2002-11-01 Thread PELOQUIN,JEFFREY (HP-Boise,ex1)
you could check the Windows Event Viewer -Original Message- From: CHAO,KENT (HP-Boise,ex1) [mailto:kent_chao;hp.com] Sent: Friday, November 01, 2002 3:57 PM To: 'Tomcat Users List' Subject: Help: How to Capture Error Msgs/Exceptions when Tomcat Die. I am new to this group. I posted

RE: help with tomcat 1.4.1 and j2sdk1.4.0?

2002-10-30 Thread Turner, John
You're missing =. Should be: CATALINA_HOME=C:\tomcat John -Original Message- From: Stanley Michaud [mailto:jmichau2;optonline.net] Sent: Wednesday, October 30, 2002 5:51 PM To: [EMAIL PROTECTED] Subject: help with tomcat 1.4.1 and j2sdk1.4.0? I need help with the

RE: Help with log4j and log4j.propereties under Tomcat 4.1.2

2002-10-26 Thread Kunal Shah
, October 24, 2002 11:48 AM To: Tomcat Users List Subject: Re: Help with log4j and log4j.propereties under Tomcat 4.1.2 Hi CC, I also wanted to have them in WEB-INF. The following code works for me (TC 4.0.4). You can even rename the log4j.properties to whatever you want. This solution

RE RE: Help to me !! !! !! !! - DON'T ATTACH FILES!!

2002-10-26 Thread Correo
Excuse me sincerely... Fernando A. Perez. -- To unsubscribe, e-mail: mailto:tomcat-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:tomcat-user-help;jakarta.apache.org

RE RE: Help to me !! !! !! !! - DON'T ATTACH FILES!!

2002-10-26 Thread Correo
Excuse me sincerely... Fernando A. Perez. -- To unsubscribe, e-mail: mailto:tomcat-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:tomcat-user-help;jakarta.apache.org

Re: Help with Filters

2002-10-25 Thread Kristian A. Leth
I've got a blockfilter, that blocks all access to anything but the only url that's allowed and reroutes to an errorservlet. I've also got a method filter that blocks invalid http methods, but when a request to an invalid url is forwarded to an errorservlet, it's not filtered through my

Re: Help Needed to configure servlets

2002-10-25 Thread Kwok Peng Tuck
The classes go under WEB-INF , either under classes (if they are .class don't forget their package if they have any), or the directory lib if they are jars. Define your servlet in the web.xml of your web application. How? It's in the tomcat documentation as well as the examples that came with

Re: Help Needed to configure servlets

2002-10-25 Thread Anitha K Rao
Yes, but i want it under a directory called AppDir, which i need not under examples directory. Where do i configure this?? - Original Message - From: Kwok Peng Tuck [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, October 25, 2002 12:18 PM Subject: Re: Help

Re: Help Needed to configure servlets

2002-10-25 Thread Kwok Peng Tuck
] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, October 25, 2002 12:18 PM Subject: Re: Help Needed to configure servlets The classes go under WEB-INF , either under classes (if they are .class don't forget their package if they have any), or the directory lib if they are jars. Define your

RE: Help with Filters

2002-10-25 Thread Cox, Charlie
- From: Wendy Smoak [mailto:Wendy.Smoak;asu.edu] Sent: Thursday, October 24, 2002 5:57 PM To: 'Tomcat Users List' Subject: RE: Help with Filters I wrote: url-pattern/*.do/url-pattern So that my initial welcome page won't get filtered, and so hopefully only the initial /editContact.do

RE: Help to Configure Apache and Tomcat to use mod_jk!

2002-10-25 Thread Turner, John
You have to load the module into Apache before you can use it. Look in httpd.conf for lines that look like this: LoadModule Then add one that looks like this: LoadModule jk_module wherever_you_put_it/mod_jk.so John -Original Message- From: Hai To Thanh

RE: Help Needed to configure servlets

2002-10-25 Thread Shapira, Yoav
Hi, webapps --- AppDir - JSP file --- Web-inf - web.xml file -- classes - My Servlet Class files http://localhost:port/AppDir/Servletclass In the above configuration, if you have the invoker servlet mapping enabled

Re: Help to me !! !! !! !! - DON'T ATTACH FILES!!

2002-10-25 Thread Burt Johnson
PLEASE DON'T attach files to this list!! -- - Burt Johnson MindStorm, Inc. [EMAIL PROTECTED] http://www.mindstorm-inc.com -- To unsubscribe, e-mail: mailto:tomcat-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:tomcat-user-help;jakarta.apache.org

RE: Help to me !! !! !! !!

2002-10-25 Thread Jim Urban
Tomcat 4.1/webapps/servlet1/web-inf/classes/st/Servlet1.class Tomcat is case sensitive. Your directory must be Tomcat 4.1/webapps/servlet1/WEB-INF/classes/st/Servlet1.class the web-inf must be WEB-INF. Windows Explorer has a problem with this. Use the command line if need be. Also, I assume

RE: Help to me !! !! !! !! - DON'T ATTACH FILES!!

2002-10-25 Thread Sexton, George
I have to disagree. Sometimes it is the only way to troubleshoot issues, particularly with server.xml and web.xml. -Original Message- From: Burt Johnson [mailto:burt;mindstorm-inc.com] Sent: 25 October, 2002 12:40 PM To: Tomcat Users List Cc: [EMAIL PROTECTED] Subject: Re: Help to me

RE: Help to me !! !! !! !! - DON'T ATTACH FILES!!

2002-10-25 Thread Turner, John
Second on OK to attach files. John -Original Message- From: Sexton, George [mailto:gsexton;mhsoftware.com] Sent: Friday, October 25, 2002 3:10 PM To: Tomcat Users List Subject: RE: Help to me !! !! !! !! - DON'T ATTACH FILES!! I have to disagree. Sometimes it is the only way

Re: Help with log4j and log4j.propereties under Tomcat 4.1.2

2002-10-24 Thread Andreas Probst
Hi CC, I also wanted to have them in WEB-INF. The following code works for me (TC 4.0.4). You can even rename the log4j.properties to whatever you want. This solution is supposed to work in not expanded wars, too. InputStream log4jPropsIn =

RE: Help with Filters

2002-10-24 Thread Wendy Smoak
I wrote: url-pattern/*.do/url-pattern So that my initial welcome page won't get filtered, and so hopefully only the initial /editContact.do hit will get filtered, and only once. Unfortunately, this isn't working-- It seems that the leading slash was incorrect. This seems to be working to

RE: Help with log4j and log4j.propereties under Tomcat 4.1.2

2002-10-23 Thread Sean Reilly
By default, log4j attempts to obtain its configuration file from the current classloader using the getResource() call. The classloader for a web-app retrives classes from the WEB-INF/classes folder; placing the log4j.properties file here is the recommended configuration procedure under tomcat

RE: Help with log4j and log4j.propereties under Tomcat 4.1.2

2002-10-23 Thread Jacob Kjome
See the following for hints on how to set up intelligent Log4j configuration: http://barracuda.enhydra.org/software/cvs/cvsweb.cgi/Projects/EnhydraOrg/toolsTech/Barracuda/WEB-INF/sample.web.xml?rev=1.3content-type=text/x-cvsweb-markup

Re: Help: map htdocs/mediachex to webapps/mediachex w/ mod_jk almost there

2002-10-18 Thread Qmail List
=true Context path= docBase=mediachex debug=0 reloadable=true/ /Host - Original Message - From: Oliver Meyn [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, October 16, 2002 7:10 PM Subject: RE: Help: map htdocs/mediachex to webapps/mediachex w/ mod_jk almost

Re: Help: Jakarta as a service

2002-10-18 Thread Rafael Gonçalves
Fernando, The same happened to me when i made a change in the tomcat-user.xml file. The problem was that the xml sintaxe was wrong. Have you made any change in a xml file? I hope this will help. rafiros --- Ing. Fernando Zapata [EMAIL PROTECTED] escreveu: I have installed Jakarta Tomcat as

Re: Help: Jakarta as a service

2002-10-18 Thread Michael Finney
Same thing for me too, but it was a server.xml file which had a syntax error. Check tomcats logs in the log directory. --- Rafael Gonçalves [EMAIL PROTECTED] wrote: Fernando, The same happened to me when i made a change in the tomcat-user.xml file. The problem was that the xml sintaxe

Re: Help: Jakarta as a service

2002-10-18 Thread Maninder S Batth
check specially tomcat-install-dir/logs/stderr Rafael Gonçalves wrote: Fernando, The same happened to me when i made a change in the tomcat-user.xml file. The problem was that the xml sintaxe was wrong. Have you made any change in a xml file? I hope this will help. rafiros --- Ing.

RE: Help: Jakarta as a service

2002-10-18 Thread Durham David Cntr 805CSS/SCBE
do the logs indicate any errors? -Original Message- From: Ing. Fernando Zapata [mailto:fzapata;icsa.com.ar] Sent: Friday, October 18, 2002 1:31 PM To: [EMAIL PROTECTED] Subject: Help: Jakarta as a service I have installed Jakarta Tomcat as a Service on W2K, the configuration

Re: Help: Jakarta as a service

2002-10-18 Thread Michele Emmi
I run Tomcat on Win2k and found that I can only start on the command line, not from the installed shortcuts. Michele From: Ing. Fernando Zapata [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Help: Jakarta as a service Date: Fri, 18 Oct 2002

Re: Help: Jakarta as a service

2002-10-18 Thread Maninder S Batth
i run tomcat on win2kserver and xp and it runs as service. maybe check ur server.xml . Michele Emmi wrote: I run Tomcat on Win2k and found that I can only start on the command line, not from the installed shortcuts. Michele From: Ing. Fernando Zapata [EMAIL PROTECTED] Reply-To: Tomcat

Re: Help please - Session timeout problem

2002-10-16 Thread Bill Leath
Thanks. Bill Luis Manuel Menes Barajas wrote: Or you can use the custom tags from jakarta project (Taglibs), this contains a set of session tag, and work very well -- Luis Manuel Menes Barajas, [EMAIL PROTECTED] on 10/15/2002 On 15 Oct 2002 16:23:23 -0700, Dave Patton wrote: I believe

Re: Help! Multiple Host problem Tomcat 4.1.12

2002-10-16 Thread Matt Fury
Nevermind! I found the ALIAS command. I figured it was something like that but I couldn't find the reference. Tomcat documentation seems to be getting better. And I've been talking to myself this whole time! LOL. -Matt --- Matt Fury [EMAIL PROTECTED] wrote: Question for all: I have

RE: Help: map htdocs/mediachex to webapps/mediachex w/ mod_jk almost there

2002-10-16 Thread Oliver Meyn
JkMount /mediachex ajp13 JkMount /mediachex/* ajp13 Does JkMount /mediachex/ ajp13 do anything good? I've had many fights trying to get that DirIndex to show up properly, and the trailing slash without * has worked at least once. Hope it helps, Oliver -Original Message-

Re: Help please - Session timeout problem

2002-10-15 Thread Dave Patton
check int HttpSession.getMaxInactiveInterval() On Tue, 2002-10-15 at 13:44, Bill Leath wrote: Hello, I am having a problem with sessions timing out using Tomcat 4.1 on linux 7.2. I have set the following line in the server.xml file: connectionTimeout=12 I then stopped and restarted

Re: Help please - Session timeout problem

2002-10-15 Thread Bill Leath
Thanks Dave, Do you know of any way to check outside an application? Like on the linux command line or through a web interface? Thanks again, Bill Dave Patton wrote: check int HttpSession.getMaxInactiveInterval() On Tue, 2002-10-15 at 13:44, Bill Leath wrote: Hello, I am having a

Re: Help please - Session timeout problem

2002-10-15 Thread Dave Patton
I believe you can use Tomcat's built-in admin application to set session timeouts as well. You can also specify them in your web.xml file for each application. But the only way to check outside the application is to write a webapp that has access to all the ServletContext objects running in

Re: Help please - Session timeout problem

2002-10-15 Thread Luis Manuel Menes Barajas
Or you can use the custom tags from jakarta project (Taglibs), this contains a set of session tag, and work very well -- Luis Manuel Menes Barajas, [EMAIL PROTECTED] on 10/15/2002 On 15 Oct 2002 16:23:23 -0700, Dave Patton wrote: I believe you can use Tomcat's built-in admin application to set

RE: Help in Tomcat4.x

2002-10-15 Thread Nicholas Orr
On suggestion Use load-on-startup to start a servlet. And in this servlet define the destroy method public destroy() { } Have this call your other servlet or class. Hope this helps, Nichoals Orr -Original Message- From: Santosh Kulkarni [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 16

RE: RE: HELP How to build JK2.2.0.1 on linux

2002-10-14 Thread Ignacio J. Ortega
? if using CVS maybe you need to do a cvs update -P -d -a, to get all the source dirs, your installation lacks the jk java part, where is located the jkant code.. Saludos, Ignacio J. Ortega -Original Message- To: Tomcat Users List Subject: Re: RE: HELP How to build JK2.2.0.1 on linux

RE: HELP How to build JK2.2.0.1 on linux

2002-10-13 Thread Ignacio J. Ortega
From: yoom nguyen [mailto:[EMAIL PROTECTED]] Sent: Saturday, October 12, 2002 9:16 PM *** If I run ant under /distribution-from-apaches/jk/native2 directory I got these errors 1. [taskdef] Could not load definitions from resource

Re: RE: HELP How to build JK2.2.0.1 on linux

2002-10-13 Thread yoom nguyen
: Saturday, October 12, 2002 8:16 pm Subject: RE: HELP How to build JK2.2.0.1 on linux From: yoom nguyen [mailto:[EMAIL PROTECTED]] Sent: Saturday, October 12, 2002 9:16 PM *** If I run ant under /distribution-from-apaches/jk/native2

Re: Help Defining new webapp

2002-10-10 Thread Padhu Vinirs
That is correct. -- padhu Chuck Carson wrote: I have the following app: /usr/local/tomcat/webapps/changemgmt/ Tomcat detects it upon startup and it works fine. However, I want to enabled automatic reloading of classes. Is this what I need to add to server.xml: Context path=/changemgmt

RE: Help : Apache 2.0.43 , Tomcat 4.1.12 , jk and/or jk2 , win2k

2002-10-10 Thread none none
-Original Message- From: Paul Gregoire [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 1:01 AM To: Tomcat Users List; [EMAIL PROTECTED] Subject: Re: Help : Apache 2.0.43 , Tomcat 4.1.12 , jk and/or jk2 , win 2k I have a similar problem, but the only thing i cant

RE: Help : Apache 2.0.43 , Tomcat 4.1.12 , jk and/or jk2 , win2k

2002-10-10 Thread Turner, John
No problem, glad to help. John -Original Message- From: none none [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 10, 2002 11:03 AM To: Tomcat Users List Subject: RE: Help : Apache 2.0.43 , Tomcat 4.1.12 , jk and/or jk2 , win2k Thank you for the help, it is working now

RE: Help Defining new webapp

2002-10-10 Thread Chuck Carson
Thanks, CC -Original Message- From: Padhu Vinirs [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 10, 2002 7:43 AM To: Tomcat Users List Subject: Re: Help Defining new webapp That is correct. -- padhu Chuck Carson wrote: I have the following app: /usr/local

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

2002-10-09 Thread sonam singh
get the latest jakarta-tomcat connectors from cvs compile mod_jk or mod_jk2 for apache2 . regards Sonam Singh --- none none [EMAIL PROTECTED] wrote: Hi all, I am trying to make working Apache 2.0.42 or 2.0.43 and Tomcat 4.1.10 or 4.1.12 with mod_jk or mod_jk2 on Windows 2K since last

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

2002-10-09 Thread Robert L Sowders
Try this one, If you still want an easy install and configuration for windows, try this one. ftp://pokey.wr.usgs.gov/pub/rsowders/Apache2_Jk2_TC4.1.x_JSDK1.4.zip In short here are 7 easy steps to get it working. The jk2.prop and workers2.prop files are attached. Remove .txt from each and

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

2002-10-09 Thread Turner, John
Which HOWTO guide did you follow? It's known to work, and the user-submitted HOWTOs for Windows are pretty good. You'll need to post more details to get more definite help. John -Original Message- From: none none [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 08, 2002 3:28 PM

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

2002-10-09 Thread Turner, John
up any manual configuration you do. Hope this helps. John -Original Message- From: Paul Gregoire [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 1:01 AM To: Tomcat Users List; [EMAIL PROTECTED] Subject: Re: Help : Apache 2.0.43 , Tomcat 4.1.12 , jk and/or jk2 , win 2k

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

RE: Help!!

2002-10-03 Thread Turner, John
Just curious...is there any reason you just don't setup PROXY to forward the requests to Tomcat? Apache and Tomcat don't need to be on the same machine. John -Original Message- From: BCorrigan [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 03, 2002 11:14 AM To: '[EMAIL

RE: Help!!

2002-10-03 Thread BCorrigan
PROTECTED]] Sent: Thursday, October 03, 2002 11:35 AM To: 'Tomcat Users List' Subject: RE: Help!! Just curious...is there any reason you just don't setup PROXY to forward the requests to Tomcat? Apache and Tomcat don't need to be on the same machine. John -Original Message- From: BCorrigan

RE: Help!!

2002-10-03 Thread John Naldoza
The latest version of Tomcat3 ??? -Original Message- From: Jay Hombal [mailto:[EMAIL PROTECTED]] Sent: Friday, October 04, 2002 6:29 AM To: Tomcat Users List Subject: RE: Help!! depends I guess on the version of tomcat,, latest version does not return anythign bcos no default

RE: Help with Startup Script

2002-10-02 Thread Turner, John
What if you call startup.sh and shutdown.sh instead of catalina.sh directly? John -Original Message- From: Chuck Carson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 11:20 AM To: Tomcat Users List Subject: Help with Startup Script I am unable to get tomcat

Re: Help with Startup Script

2002-10-02 Thread Chuck Carson
Well, your suggestion got me going in the right direction, I needed to reference startup.sh plus add the env variables to the startup script explicitly. Thanks for your help, CC Here is the final working startup script for Solaris 8 (prolly work on Linux as well) #!/sbin/sh #

Re: Help with test needed.

2002-10-01 Thread Martin Jacobson
Robert L Sowders wrote: I've just about completed a new site and I've been wondering about a few things, specifically how does the public see it. It's an ArcIMS site and I know it will appear to load a bit slow, (that's just how ArcIMS works). I'm hosting the front end in one place and

RE: Help with test needed.

2002-10-01 Thread Robert L Sowders
That's exactly what I was looking for Nicholas, Thankyou very much, this helps alot. rls Nicholas Orr [EMAIL PROTECTED] 09/30/2002 09:29 PM Please respond to Tomcat Users List To: 'Tomcat Users List' [EMAIL PROTECTED] cc: Subject:RE: Help with test

RE: Help with test needed.

2002-10-01 Thread Anthony Milbourne
was less than the time it took to download the image). Everyone in my office thought it was a cool site :-). Anthony. -Original Message- From: Martin Jacobson [SMTP:[EMAIL PROTECTED]] Sent: 01 October 2002 08:31 To: Tomcat Users List Subject: Re: Help with test

RE: (Help Needed!!)How to avoid the Default HTTP header being sent from Servlet to Applet

2002-10-01 Thread sunita desai
Hi, In addition to my problem definition in my earlier mail, I would like to add following. Actually I see that the header info is being sent from the Servlet to the applet everytime when it makes a URL connection to Servlet. It is something like this: 200: OK Date: Tue, 01 Oct 2002 12:53:14 GMT

RE: Help - why is tomcat so slow in displaying each page?

2002-10-01 Thread Sexton, George
So, shooting in the dark, do you have log hosts names turned on for tomcat? If so, is your host name resolvable? -Original Message- From: andrew mercer [mailto:[EMAIL PROTECTED]] Sent: 01 October, 2002 7:47 AM To: [EMAIL PROTECTED] Subject: Help - why is tomcat so slow in displaying each

RE: Help with test needed.

2002-09-30 Thread Nicholas Orr
Hi, I was just looking at this site and zooming in, about 10, it seems to be be a bit slow retrieving the map. I am over Australia w/ a 2Mbit link here at work, so if it is quite slow for me it must hell for dial-up. Not sure what else you were looking for. Nicholas Orr -Original

Re: Help Urgently needed, Security problem

2002-09-27 Thread ed banfa
Hey Rick, Man ur da BOMB, yes it work!. Thanks a lot. Now its back to da labs to see my baby(tomcat), be right back with more quetions thanks bro Edward Rick Fincher wrote:Hi Ed, You have a couple of problems. First, you left out the user data constraint transport guarantee tag that forces

Re: Help Urgently needed, Security problem

2002-09-26 Thread Rick Fincher
Hi Ed, You have a couple of problems. First, you left out the user data constraint transport guarantee tag that forces Tomcat to use HTTPS. A security constraint has to have 3 things: 1- the web resource collection describing what to protect, 2- the authorization constraint describing who

Re: Help!!Servlet messages to console/xconsole

2002-09-17 Thread Shannon Lal
Anand, I often run into problems like this, and is often something I have over looked. I would attempt to run the Snoop Servlet(http://localhost:8080/SnoopServlet) first ( the one that comes with Tomcat ) if that executes fine then you know Tomcat is configured fine. The next thing I would

Re: Help Deploying Servlet

2002-09-13 Thread Mauro Daniel Ardolino
It may be your servlet is on a package. If so, then you have to put your servlet in: $TOMCAT_HOME/webapps/ROOT/WEB-INF/classes/nameOfThePackage/AddNewsItem.class Then in web.xml: web-app servlet servlet-nameAddNewsItem/servlet-name

RE: Help Deploying Servlet

2002-09-12 Thread Chuck Carson
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 9:45 AM To: Tomcat Users List Subject: RE: Help Deploying Servlet Have you specify the servlet-mapping. for exemple : servlet-mapping servlet-nameAddNewsItem

RE: help getting up and running

2002-09-09 Thread Turner, John
What are the error messages? What do the logs say? John -Original Message- From: Grant C. Peters [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 2:42 PM To: Tomcat Users List; Jacob Kjome Subject: help getting up and running I have uninstalled my working tomcat

RE: help getting up and running

2002-09-09 Thread Grant C. Peters
and compiled class files are in %CATALINA_HOME%\webapps\examples\WEB-INF\classes Grant C. Peters [EMAIL PROTECTED] phone : 415.948.7030 -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 14:40 To: 'Tomcat Users List' Subject: RE: help getting up

Re: HELP!! tomcat 4.0.4 shutdown problem

2002-09-03 Thread Anand Parikh
I checked for temp files in $CATALINA_HOME/work and $CATALINA_HOME/temp dirs, but there are none. I also tried killing the tomcat processes but they restart. I am stuck... any help is very welcome. Thanks, Anand I am using Tomcat 4.0.4 with JDK 1.3 on Debian Linux 2.2.6. Tomcat starts OK

RE: HELP! 3 days and still no go with Apache2 and TomCat 4.0.4

2002-08-30 Thread Ray Madigan
Are u using mod_jk or mod_jk2. workers2.properties are for mod_jk2. Send a copy of your workers2.properties and maybe we can find something. -Original Message- From: Dennis Megarry [mailto:[EMAIL PROTECTED]] Sent: Friday, August 30, 2002 4:05 PM To: [EMAIL PROTECTED] Subject: HELP! 3

Re: HELP! 3 days and still no go with Apache2 and TomCat 4.0.4

2002-08-30 Thread Dennis Megarry
worker2 file.. Thanks again! Dennis - Original Message - From: Ray Madigan [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED]; Dennis Megarry [EMAIL PROTECTED] Sent: Friday, August 30, 2002 7:11 PM Subject: RE: HELP! 3 days and still no go with Apache2 and TomCat 4.0.4 Are u using

Re: HELP! 3 days and still no go with Apache2 and TomCat 4.0.4

2002-08-30 Thread Peter T. Abplanalp
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 please have your mua wrap lines at 72-80 cols. thanks. On Fri, Aug 30, 2002 at 07:04:38PM -0400, Dennis Megarry wrote: I've been reading everything I can get my browser pointed at and I must say, there is an extreme lack of documentation on

RE: HELP! 3 days and still no go with Apache2 and TomCat 4.0.4

2002-08-30 Thread Ignacio J. Ortega
Pleas, dont send high priority signed messages they are cumbersome, thanks. De: Peter T. Abplanalp [mailto:[EMAIL PROTECTED]] Enviado el: 31 de agosto de 2002 1:29 Para: [EMAIL PROTECTED] Asunto: Re: HELP! 3 days and still no go with Apache2 and TomCat 4.0.4 On Fri, Aug 30, 2002 at 07:04

RE: HELP! 3 days and still no go with Apache2 and TomCat 4.0.4

2002-08-30 Thread Ray Madigan
The Jk* directives do not go in httpd.conf. mod_jk2 uses two property files to accomplish the mapping. I used this page to tell me how to get it to work. http://www.pubbitch.org/jboss/mod_jk2.html After some trial and error and some great help from members of this list - i just got it to

Re: Help with Tomcat 3.3.1 and IIS 5.0

2002-08-29 Thread randie ursal
the \classes directory must be inside the \WEB-INF directory. ex. webapps\ch03\WEB-INF\classes Marisol Encalada-Malibran wrote: Hi, I also need some help with Tomcat, I have installed Tomcat 3.3 with IIS 5.0, I have been working in the examples folder under webapps but now I want to

<    3   4   5   6   7   8   9   10   11   12   >