tomcat 5.0.28 redirect issue (error 302)

2005-10-10 Thread Tony Qian
request: Oct 7, 2005 3:56:52 PM org.apache.commons.httpclient.HttpMethodBase processRedirectResponse INFO: Redirect requested but followRedirects is disabled The Status code = 302 Same program worked fine for tomcat 4. Any ideas? Thanks in advance. Tony

Add parameters into tomcat service ......

2005-10-10 Thread Tony Lu
Tomcat (5.0.28) runs on Windows 2003 Server. Web application needs some information from tomcat starup. So I add following statement in startup.bat batch file set JAVA_OPTS=-Xms512m -Xmx512m - Daos.configuration=%CATALINA_HOME%/conf/aos.config Application runs well When I start Tomcat by

Re: org.apache.catalina.valves.RemoteHostValve issue

2005-09-20 Thread Tony Tomcat
-- Forwarded message -- From: Mark Thomas [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Date: Wed, 17 Aug 2005 08:03:45 +0100 Subject: Re: org.apache.catalina.valves.RemoteHostValve issue Tony Tomcat wrote: Does the RemoteHostValve work

Re: org.apache.catalina.valves.RemoteHostValve issue

2005-09-20 Thread Tony Tomcat
values for getRemoteHost calls. From: *Tony Tomcat [EMAIL PROTECTED]* Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Date: *Sep 20, 2005 4:35 PM* Subject: *Re: org.apache.catalina.valves.RemoteHostValve issue* Reply | Reply to all | Forward | Print | Add sender to Contacts list | Trash

RE: Cannot forward after response has been committed

2005-09-19 Thread Tony
Actually, the line end after the first line is sent back to the client, with apropriate html headers invented. %@ page language=java%%// now the line end is in java not in html Yep, looks ugly. What is even worse is code that sends a redirect and does NOT do a return. -Original

RE: Cannot forward after response has been committed

2005-09-19 Thread Tony
You want the line breaks, either line-feed or carriage-return, line-feed to occur within the java or jsp code, not within the html code. Sometimes the html is buffered and ignored when something else puts out headers or such. Within HTML, line breaks do not matter much Before HTML, any line break

org.apache.catalina.valves.RemoteHostValve issue

2005-08-16 Thread Tony Tomcat
? Tony - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

close pooled conection-by value or by reference

2005-07-23 Thread Tony Smith
I think this is a classic java question: Pass by reference or by value. I have a DatabaseManager class which takes care of get conection from connection pool and release the connectoin. I am not sure about the release part. Here is my code: class MyMainClass public static final void

Connection pool exhausted

2005-07-19 Thread Tony Smith
I am runing tomcat 5.0 + postgresql. I set my connection pool in server.xml as: Resource name=jdbc/mysource type=javax.sql.DataSource password= driverClassName=org.postgresql.Driver maxIdle=100 maxWait=5000 validationQuery=select * from test

tomcat connection pool

2005-07-17 Thread Tony Smith
Hi, Can anyone show me how to setup connection pool and call it from java? Thanks, __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Re: generate image by servlet for large amount of requests

2005-07-08 Thread Tony Smith
Any ideas? --- Tony Smith [EMAIL PROTECTED] wrote: Let's think about maps.yahoo.com. I do not know how they handle millions of request and generate the map pictures quickly. If I use a servlet, in the post or get method I use: BufferedImage mapImage = myTookKit.generateMap

control ports on windows

2005-07-07 Thread Tony Smith
Hi, I am running Tomcat 5.0 on Windows. But what I want to do it not link to Tomcat. I would like to know how to control all those ports. For example, I would like to open 8080 but close 8089, etc... Thanks, Sell on Yahoo!

generate image by servlet for large amount of requests

2005-07-07 Thread Tony Smith
Let's think about maps.yahoo.com. I do not know how they handle millions of request and generate the map pictures quickly. If I use a servlet, in the post or get method I use: BufferedImage mapImage = myTookKit.generateMap(String address); response.setContentType(image­/png);

tomcat default webapp

2005-07-01 Thread Tony Smith
I would like to set my web app as tomcat's default app. Thus, if my visitor type http://www.mydomain.com:8080, it will start my web app, not the tomcat default. How can I do this? (I do not want to change my web app's directory name, since some people will still access my site from

RE: tomcat default webapp

2005-07-01 Thread Tony Smith
that and point your browser to http://www.mydomain.com:8080 -Original Message- From: Tony Smith [mailto:[EMAIL PROTECTED] Sent: 01 July 2005 18:39 To: Tomcat Users List Subject: tomcat default webapp I would like to set my web app as tomcat's default app. Thus, if my visitor type

Tomcat 5.5.9 application reload doesn't work

2005-06-28 Thread Johnson, Tony S.
as a result of this problem. Does anyone know if there is a way to work around this, or to persaude tomcat to revert to the 5.0 behaviour? Thanks, Tony Johnson

tomcat default page

2005-06-28 Thread Tony Smith
I install tomcat on my machine and my webapp can be accessed as http://www.mydomain.com:8080/myapp/index.jsp. If I type http://www.mydomain.com:8080, the default tomcat page will be displayed. How can I change this page to something else, or forbid it? Thanks,

RE: tomcat default page

2005-06-28 Thread Tony Smith
I would like to try both... --- Brereton, Stephen [EMAIL PROTECTED] wrote: Do you mean to display another page, or to stop the access via port 8080? -Original Message- From: Tony Smith [mailto:[EMAIL PROTECTED] Sent: 28 June 2005 22:39 To: Tomcat Users List Subject: tomcat

RE: 503 Service Temporarily Unavailable

2005-06-25 Thread Tony
I'm sure you have already, but check the Windows Firewall settings. Also check what is actually running and listening on what ports. -Original Message- From: John Lindley [mailto:[EMAIL PROTECTED] Sent: Saturday, June 25, 2005 12:41 AM To: tomcat-user@jakarta.apache.org Subject: 503

RE: 503 Service Temporarily Unavailable

2005-06-25 Thread Tony
Apache and Tomcat use ports other than 80 to communicate with each other. probably something like 8080 8007 8009 or something similar. netstat -noa works on XP, so presumable on WS2003 etc Cheap trick is to temporarily disable the firewall to see if that makes a difference. Reenabling 80

default username/password for tomcat

2005-06-23 Thread Tony Smith
What is the default username/password for Tomcat Manager? I can not log in to Tomcat Manager. I did not set my own username/password when I instlled tomcat. They must be the defualt. Thanks, Yahoo! Sports Rekindle the

running tomcat on port 80

2005-06-21 Thread Tony Smith
Hi, Can I run Tomcat 5.0 on port 80? I do not want my visitor have to type the port number. After setting 80 as port number in the server.xml and starting tomcat, I got the following error message: SEVERE: Error starting endpoint java.net.BindException:permission denied:80 Thanks,

RE: Tomcat service terminated unexpectedly

2005-05-09 Thread Tony
Do you perchance have the Norton virus known as anti? -Original Message- From: Roberto Rios [mailto:[EMAIL PROTECTED] Sent: Monday, May 09, 2005 7:43 AM To: 'Tomcat Users List' Subject: Tomcat service terminated unexpectedly Importance: High Hi, We have a tomcat running in a W2K Box

RE: Tomcat 5 slow, it's in production, please help!

2005-05-07 Thread Tony
As a wild guess Browser drops the connection immediately without notice After 5 minutes, tomcat decides to drop the connection After 30 minutes or so, Solaris finally finishes dropping the connection. Gives a strange meaning to Keep-Alive ;) -Original Message- From: Jeffrey [mailto:[EMAIL

RE: Tomcat 5 slow, it's in production, please help!

2005-05-06 Thread Tony
What does netstat -nt show? You may have enough connections going that old ones have to time out before you can establish a new one. -Original Message- From: Jeffrey [mailto:[EMAIL PROTECTED] Sent: Friday, May 06, 2005 2:16 PM To: tomcat-user@jakarta.apache.org Subject: Tomcat 5 slow,

RE: Tomcat 5 slow, it's in production, please help!

2005-05-06 Thread Tony
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, May 06, 2005 3:39 PM To: Jeffrey; Tomcat Users List Subject: RE: Tomcat 5 slow, it's in production, please help! There are certainly people here who understand this much better than I, but ESTABLISHED

RE: Tomcat 5 slow, it's in production, please help!

2005-05-06 Thread Tony
153 ESTABLISHED connections to port 443 553 connections to port 443 in the process of dying. 1420 connections total (Assuming I'm reading the output of wc correctly;) [EMAIL PROTECTED] tony]$ cat netstat.txt |grep ESTABLISHED|wc 6934851 55442 [EMAIL PROTECTED] tony]$ cat netstat.txt

Re: Vedr.: Re: Vedr.: ISAPI_REDIRECT

2005-04-27 Thread Tony Nakamura
Hi Reynir, I checked the server.xml, and it does have 8009 setting for listner ports uncommented. I have /jakarta virtual folder in IIS. I'm really confused as to what could be wrong... Thank you, Tony - Original Message - From: reynir [EMAIL PROTECTED] To: Tomcat Users List tomcat

Re: Vedr.: Re: Vedr.: ISAPI_REDIRECT

2005-04-27 Thread Tony Nakamura
a security risk to execute such files locally on the server. So I simply created another folder with just the dll in it and had virtual directory point to the directory. Thank you for your help! Tony - Original Message - From: reynir [EMAIL PROTECTED] To: Tomcat Users List tomcat

ISAPI_REDIRECT

2005-04-26 Thread Tony Nakamura
, Tony

Re: Vedr.: ISAPI_REDIRECT

2005-04-26 Thread Tony Nakamura
does not have any output. Thank you, Tony - Original Message - From: Thomas Nybro Bolding [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Tuesday, April 26, 2005 8:55 AM Subject: Vedr.: ISAPI_REDIRECT From http://www.reynir.net/java/greinar/nr/52

Re: Vedr.: Re: Vedr.: ISAPI_REDIRECT

2005-04-26 Thread Tony Nakamura
in 5.0 isolation mode. There is no output in the log file when I set the log level to error, but I still get 404 File Not Found error when I try to access http://localhost/test/login.jsp Thanks! Tony == [Tue Apr 26 10:27:20 2005] [3616:816] [debug] init_jk::jk_isapi_plugin.c (1040

Re: Vedr.: Re: Vedr.: ISAPI_REDIRECT

2005-04-26 Thread Tony Nakamura
, I also tried to replace localhost with an ip address, but it was the same result. Thanks, Tony - Original Message - From: reynir [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Tuesday, April 26, 2005 11:48 AM Subject: Re: Vedr.: Re: Vedr.: ISAPI_REDIRECT

Performance monitoring

2005-04-05 Thread Tony Tomcat
times. I then would build a servlet to output the data in XML or HTML format. I also would want the data over the past hour and past 24 hours. Thanks in advance for any pointers or suggestions! Tony - To unsubscribe, e-mail

Re: Performance monitoring

2005-04-05 Thread Tony Tomcat
in XML. there's this other project in jakarta called JMeter. It has a monitor for tomcat5.0.19 and newer that can monitor one or more Tomcat instances. so if you don't count the status servlet and tomcat, nothing exists :) peter On Apr 5, 2005 2:20 PM, Tony Tomcat [EMAIL PROTECTED

Re: Access denied with Apache + Tomcat config

2005-03-16 Thread Tony Stocker
Puschmann [EMAIL PROTECTED] wrote: Tony Stocker wrote: All, I believe that I found my problem, and for the sake of posterity I'm posting it for the next poor fool who is forced to chase around the web and through books looking for decent documentation. When I set up Tomcat I copied

Access denied with Apache + Tomcat config

2005-03-15 Thread Tony Stocker
/apache/modules/mod_jk.so / Help greatly appreciated. Tony - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Access denied with Apache + Tomcat config

2005-03-15 Thread Tony Stocker
, the conf/auto/mod_jk.conf file wants to use ajp13. By changing the workers.properties file to 'ajp13' and NOT 'ajp13w' everything started working. On Tue, 15 Mar 2005 12:15:42 -0500, Tony Stocker [EMAIL PROTECTED] wrote: Hello All, I have searched the archives but have been unable to find

RE: Access Denied, now what?

2005-03-13 Thread Tony
Blanks in the insides of file or folder names will cause grief in any language. You can get by some of the problems by quoting the file name. Many things in strange places will consider the file name as C:\archivos followed by some unintelligible stuff. -Original Message- From: Ing.

null pointer

2005-03-11 Thread Tony Lavalle
I am a student taking a jsp class. the class project uses an access database. my problem is that every time i run the program it keeps giving me and npe error. i have check the html and the jsp. but i can see no error. can you folks give me some ideas as where to start to fix this. i am

RE: Facing problems in tomcat configuration - on XP Professional

2005-02-22 Thread Tony
The virus known as Norton Anti. (Sorry, couldn't resit;) -Original Message- From: raghavendra datt [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 22, 2005 12:04 AM To: Tomcat Users List Subject: RE: Facing problems in tomcat configuration - on XP Professional Sorry guys.. I got the

RE: Facing problems in tomcat configuration - on XP Professional

2005-02-21 Thread Tony
There is a Windows Firewall (Control Panel, Windows Firewall) which is probably preventing hackers from attacking strange ports like 8080. -Original Message- From: raghavendra datt [mailto:[EMAIL PROTECTED] Sent: Monday, February 21, 2005 1:30 PM To: Tomcat Users List; Oleg Subject:

RE: Facing problems in tomcat configuration - on XP Professional

2005-02-21 Thread Tony
Start, Control Panel, Windows Firewall (That's assuming that you've got it set up to show you the viruses (file extensions, system files, system and hidden files, etc) and to not show stuff as web-enabled whatever. SP2 will almost certainly have set up and enabled a firewall. There may be

?? Yet Another Tomcat Documentation Bug ??

2005-02-21 Thread Tony LaPaso
If you go here: http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/host.html#Automatic%20Application%20Deployment The first bullet point starts out: Any XML file in the $CATALINA_HOME/conf/[engine_name]/[host_name] directory is assumed... I believe this should say, Any XML file in the

?? Does META-INF/context.xml Work ??

2005-02-21 Thread Tony LaPaso
All, I'm using TC 5.0.30. I'm looking at this quote regarding META-INF/context.xml from the TC docs (http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/context.html): Instead, put them in the META-INF/context.xml directory of your WAR file or the conf directory as described above. These

RE: Facing problems in tomcat configuration - on XP Professional

2005-02-21 Thread Tony
By verified, do you mean that you found Windows firewall and it was disabled? or that you didn't find Windows firewall? Control panel, Security Center might give you another way in. Also, spaces WITHIN names can create almost as much havok as spaces AFTER names. -Original Message- From:

Re: ?? Yet Another Tomcat Documentation Bug ??

2005-02-21 Thread Tony LaPaso
felt I needed to mention it. - Original Message - From: Caldarale, Charles R [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Monday, February 21, 2005 10:20 PM Subject: RE: ?? Yet Another Tomcat Documentation Bug ?? From: Tony LaPaso [mailto:[EMAIL PROTECTED

crossContext=true ignored after restart

2005-02-18 Thread Tony Tomcat
ideas here? Tony - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Server.xml parameters unavailable after reload

2005-02-17 Thread Tony Tomcat
in tomcat 5 or are there new rules about reading these parameters more than once? Tony - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

separate log4j configurations

2005-02-01 Thread Tony Tomcat
. In the case of my test application I always want it to log at the debug level and it is only installed in production briefly so having the log4j.properties in the war file is fine and allows me to keep it logging at debug even if the other apps are at WARN. Any issues here? Tony

RE: Tomcat connector for AIX 5.2

2005-01-31 Thread Fan, Tony
3. you may get compile error during Apache compiling with pthread, instead of using pthread.h from /usr/lib try to copy the one from you gcc3.2.2 source. --Tony -Original Message- From: Hausmann, Tobias [mailto:[EMAIL PROTECTED] Sent: Friday, January 28, 2005 5:40 PM To: tomcat-user

FOLLOW-UP: Sharing the JSTL JARs and Classloading

2005-01-31 Thread Tony LaPaso
Hi all, On Jan. 22 I posted a message to this group, ?? Sharing the JSTL JARS and Classloading ??, where I described a problem I was having with the JSTL JARs. It seemed that when I put the JSTL JARs (standard.jar and jstl.jar) in Tomcat's shared/lib TC could not find them, contrary to the TC

Re: Oracle JDBC

2005-01-28 Thread Tony LaPaso
When you say, when I moved it to a context..., what exactly did you move? Did you move the JDBC JAR or just the web app? Did you delete the web-app from jsp-examples? This all goes back to the poor Tomcat documentation on classloading. This is interesting. Do you think you could show me the

Tomcat and Sesssion question

2005-01-25 Thread Tony Chan
Hi, Does anyone know if there is any setting in tomcat 5 that I can use to always attach JSESSIONID to all links in a webapp? Also, is there any way to change the name (from JSESSIONID to sth else)? Thanks a lot! Tony

RE: Tomcat and Sesssion question

2005-01-25 Thread Tony Chan
that by changing Tomcat configurations. You have provided an excellent solution but the application will still have to be modified on so that all URLs are encoded. Am I correct? Thanks again! Tony -Original Message- From: Jukka Uusisalo [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 25, 2005 12

Re: ?? Sharing the JSTL JARS and Classloading ??

2005-01-23 Thread Tony LaPaso
Users List tomcat-user@jakarta.apache.orgSent: Sunday, January 23, 2005 9:21 AMSubject: Re: ?? Sharing the JSTL JARS and Classloading ?? Tony LaPaso wrote: Incidentally, in reading the Tomcat docs for Classloading, it seemsthat any classes in a web app's lib directory *should* be able to seeclasses

Re: ?? Sharing the JSTL JARS and Classloading ??

2005-01-23 Thread Tony LaPaso
- Original Message - From: Nikola Milutinovic [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Sunday, January 23, 2005 12:32 PM Subject: Re: ?? Sharing the JSTL JARS and Classloading ?? One other note - Tomcat gives you a framework contract, a contract

Re: ?? Sharing the JSTL JARS and Classloading ??

2005-01-22 Thread Tony LaPaso
- From: QM [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Saturday, January 22, 2005 8:57 AM Subject: Re: ?? Sharing the JSTL JARS and Classloading ?? On Sat, Jan 22, 2005 at 01:24:54AM -0600, Tony LaPaso wrote: : The problem is that I have several web applications

Re: ?? Sharing the JSTL JARS and Classloading ??

2005-01-22 Thread Tony LaPaso
You have some good points, Jake. Thank you for the response. If you happen to run across the statement from Craig M. regarding Struts I'd like to see it. Incidentally, in reading the Tomcat docs for Classloading, it seems that any classes in a web app's lib directory *should* be able to see

?? Sharing the JSTL JARS and Classloading ??

2005-01-21 Thread Tony LaPaso
Hi all, I'm using TC 5.0.30. JSTL Is working fine -- I have the standard.jar and jstl.jar files in my WEB-INF/lib directory. The problem is that I have several web applications that use JSTL and therefore several WEB-INF/lib directories. Rather than copy the aforementioned JAR files to *every*

core dump when start Apache 2.0.52 with jk2 module in AIX 5.2 HELP!

2005-01-19 Thread Fan, Tony
in glink.apr_pool_userdata_set at 0xd1c91544 ($t1) 0xd1c91544 (apr_pool_userdata_set+0xd0) 800clwz r0,0x0(r12) I have no clue what those error means, Can anyone help me out here? --Tony

RE: Tomcat 5.0.28, problems with using the jsp servlet to display images

2004-12-20 Thread Tony Chan
-patternservlet-na mejsp/servlet-name/servlet-mapping. Using a customized dispatcher to redirect (forward/include) traffic also doesn't work as requests get into an infinite loop. Any suggestion would be much appreciated. Thanks, Tony Chan

AGAIN jk2 2.0.4 compile

2004-06-30 Thread Tony F. White
Tony - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

JVM Implementation for Running Tomcat in MontaVista Linux (PowerPC)?

2004-06-08 Thread Tony Yat-Tung Cheung
Hi all, We are looking for ways to run Tomcat in MontaVista Linux in the Power PC platform. Is there any existing JVM implementation, either commerical or open-source? If not, is there any on-going effort in porting such a JVM? Thank you. Any information is much appreciated. Regards, Tony

HELP! [javac] Modern compiler not found

2004-04-01 Thread Tony Nakamura
Hi, (B (BI suddenly began receiving this error when I access some of the jsp pages: (B (B[javac] Modern compiler not found - looking for classic compiler (B (Bafter looking around, I found a few possible work-around, which are (B1) make sure to add Java_Home environmental variable and set

Unsubscribe...

2004-03-27 Thread Tony
Does anybody know how can I unsubscribe this list, please ? Thank u !! :))

RE: Session sharing/load balancing multiple tomcat instances W/O Apache Web Server

2004-03-26 Thread Tony Requist
code to get around bugs in PersistentValve (I'm going to describe this soon). So unless you want to hack Tomcat, I would suggest avoiding session replication via DB right now (with coding changes it does seem to work great). - tony

RE: Using PersistentValve for session replication

2004-03-26 Thread Tony Requist
* Session data is always written out, even when it doesn't change. I added a mechanism based on hashCode() to avoid this * Deserialization errors are not handled correctly * I could not get the logging to work so I added my own (this might just be my problem) - tony

Using PersistentValve for session replication

2004-03-25 Thread Tony Requist
there will not be that many database writes. I think the combination of PersistentManager and PersistentValve can do this, but I can't find any documentation about PersistentValve. Has anybody set up a configuration like this? Thanks in advance for any help. - tony

Re: Port-per-webapp?

2004-03-17 Thread Tony Nakamura
** == - Original Message - From: Justin Ruthenbeck [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 5:12 PM Subject: Re: Port-per-webapp? Tony, Can you include your full uriworker.properties and worker.properties files (inline in the email) for us

Re: Port-per-webapp?

2004-03-17 Thread Tony Nakamura
, I see both c:\tomcat\blahblah and c:\\tomcat\\blahblah should we or should we not use escape character as in the second entry? Thanks again! Tony - Original Message - From: Tony Nakamura [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, March 17, 2004 8:16 AM

Port-per-webapp?

2004-03-16 Thread Tony Nakamura
Hi, (B (BI am encountering something interesting, and I really hope that someone will (Bgive me an (Binsight. (B (BI'm working on an existing Tomcat 4.1.18 with some webapp deployed by (Bprevious developer. (BI am using IIS5 and isapi_filter, and it redirects fine to the previous (Bwebapp

Re: Port-per-webapp?

2004-03-16 Thread Tony Nakamura
Does anyone not know anything about this? I'm wondering whether this (Bemail is even reaching everyone.? (B (B- Original Message - (BFrom: "Tony Nakamura" [EMAIL PROTECTED] (BTo: "Tomcat Users List" [EMAIL PROTECTED] (BSent: Tuesday, March 16, 2004 12:51 PM

Re: Port-per-webapp?

2004-03-16 Thread Tony Nakamura
1:04 PM 3/16/2004, you wrote: (B Does anyone not know anything about this? I'm wondering whether this (B email is even reaching everyone.? (B (B - Original Message - (B From: "Tony Nakamura" [EMAIL PROTECTED] (B To: "Tomcat Users List" [EMAIL PROTECTED]

Re: IIS5 isolation mode

2004-03-15 Thread Tony Nakamura
efault.htm (B (BI know you said Windows 2003 but as long as URLScan is not interfering the (Bdirections should work. (B (B-- (BGeorge Hester (B__ (B"Tony Nakamura" [EMAIL PROTECTED] wrote in message (Bnews:[EMAIL PROTECTED] (B Hi, (B (B Sorry,

IIS5 isolation mode

2004-03-12 Thread Tony Nakamura
Hi, (B (BI am trying to run Tomcat 4.1 on Windows 2003/IIS6. After going through (Bsome documentation, (BI've noticed that we must enable "IIS5 isolation mode" to make it work. (BWhen I enable the IIS5 isolation (Bmode, there was a "red cross" on "Web Sites" in IIS Admin, and World Wide

Re: IIS5 isolation mode

2004-03-12 Thread Tony Nakamura
(B (BTony (B (B (B- Original Message - (BFrom: "Tony Nakamura" [EMAIL PROTECTED] (BTo: "Tomcat Users List" [EMAIL PROTECTED] (BSent: Friday, March 12, 2004 5:36 PM (BSubject: IIS5 isolation mode (B (B (B Hi, (B (B I am trying to run Tomcat 4.1 on Windows 200

Re: FAQ, but help!

2004-02-20 Thread Tony Nakamura
throwable exceptions by servlet and jsp? (B (BThanks! (B (B (BTony (B (B (B- Original Message - (BFrom: "Tony Nakamura" [EMAIL PROTECTED] (BTo: "Tomcat Users List" [EMAIL PROTECTED] (BSent: Thursday, February 19, 2004 3:21 PM (BSubject: Re: FAQ, but help! (B

FAQ, but help!

2004-02-19 Thread Tony Nakamura
Hi, (B (BI am using Tomcat 4.0.4 on Win2K environtment. I see in many places on the (Bnet (Bthat catching 500 error is much more compilcated than catching something (Blike (B404. I have the following in the %root%/my_app/conf/web.xml (B

Re: FAQ, but help!

2004-02-19 Thread Tony Nakamura
Hi, (B (BThere are two web.xml, I guess? There is one in %root%\conf\web.xml (sorry, (Bit wasn't (Bin the my_app directory), which I can use custom pages for 404 errors after (Badding entries, (Band there is another one in WEB-INF directory as well. I've added the (Bentry to the web.xml

Re: FAQ, but help!

2004-02-19 Thread Tony Nakamura
Hi, (B (BWow, Shapira, you're really good at responding FAST ;) (BI may not be inserting the tags in WEB-INF\web.xml correctly. (BI'm on Tomcat 4.0.4. (B (BThanks, (B (B (BTony (B (B (B- Original Message - (BFrom: "Shapira, Yoav" [EMAIL PROTECTED] (BTo: "Tomcat Users List"

Re: FAQ, but help!

2004-02-19 Thread Tony Nakamura
(B (B- Original Message - (BFrom: "Shapira, Yoav" [EMAIL PROTECTED] (BTo: "Tomcat Users List" [EMAIL PROTECTED] (BSent: Thursday, February 19, 2004 11:49 AM (BSubject: RE: FAQ, but help! (B (B (B (BHowdy, (B (BThere are two web.xml, I guess? There is one in

Re: Servlet won't run init()

2004-02-19 Thread Tony Nakamura
I apologize for my last empty message...wrong window. (BI didn't have the tags at the correct place in the WEB-INF\web.xml file. (BI placed them in the correct places, but I'm just back to square-one. (BI have the following entries, but I am still getting the 500 error page with

Re: FAQ, but help!

2004-02-19 Thread Tony Nakamura
Hi, (B (BI didn't have the tags at the correct place in the WEB-INF\web.xml file. (BI placed them in the correct places, but I'm just back to square-one. (BI have the following entries, but I am still getting the 500 error page with (Bjava.io.FileNotFoundException generated by Tomcat. (B

RE: $JAVA_HOME error

2004-02-05 Thread Tony Sutton
Thanks for the reply. Here's what I got after following your steps. [EMAIL PROTECTED] tony]$ export JAVA_HOME=/usr/java/j2re1.4.2_03 [EMAIL PROTECTED] tony]$ export PATH=$JAVA_HOME/bin:$PATH [EMAIL PROTECTED] tony]$ cd jakarta-tomcat-4.1.29/bin/ [EMAIL PROTECTED] bin]$ chmod +x startup.sh [EMAIL

RE: failure notice

2004-02-05 Thread Tony Sutton
Yes, me too. It's annoying. -- - Tony Sutton - http://www.hypertony.co.uk Quoting Kannan Sundararajan [EMAIL PROTECTED]: I am getting lot of messages like this. Any one experiencing the same? - This mail sent through IMP: http

$JAVA_HOME error

2004-02-04 Thread Tony Sutton
Hi there, I'm new to using jakart. I'm trying to get jakart v4.1.29 to run under Mandrake 9.1 I have downloaded and installed JRE from Sun, version 1.4.2_03. The installation went well. Here's the output from my Linux box: [EMAIL PROTECTED] tony]$ which java /usr/java/j2re1.4.2_03/bin/java

Fail to perform ant install with Tomcat 5.0.18

2004-02-03 Thread Tony Yat-Tung Cheung
Resources java.lang.IllegalArgumentException: Document base /home/tony/sample/build does ot exist or is not a readable directory at org.apache.naming.resources.FileDirContext.setDocBase(FileDirContext java:185) at org.apache.catalina.core.StandardContext.resourcesStart(StandardCont

-help

2003-12-30 Thread Tony Sciortino
unsubscribe _ Expand your wine savvy — and get some great new recipes — at MSN Wine. http://wine.msn.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: JNDI comp namespace - Tomcat Developers Please Read

2003-12-20 Thread Tony Colson
Yoav ;)). Thanks and Merry Christmas to all, Tony -Original Message- From: Shapira, Yoav Subject: RE: JNDI comp namespace - Tomcat Developers Please Read Howdy, See, it's messages like these that annoy me. And on a Friday, too. I responded to one of your messages saying there might

RE: JNDI comp namespace - Tomcat Developers Please Read

2003-12-19 Thread Tony Colson
autoDeploy=false Context.../Context Context.../Context With Host autoDeploy=true JNDI doesn't work. When I set autoDeploy to false JNDI works. 2) I had 2 Context tags in the above Service tag. When I commented out the 2nd Context tag JNDI worked. Tony -Original Message

EJB Compliance

2003-12-19 Thread Tony Colson
server.xml file. Thanks Tony - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

EJB Compliance

2003-12-18 Thread Tony Colson
, but, of course, it is provided in the sample server.xml file. Thanks Tony - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: JNDI comp namespace - Tomcat Developers Please Read

2003-12-13 Thread Tony Colson
tag JNDI worked. Tony -Original Message- From: Tony Colson [mailto:[EMAIL PROTECTED] Sent: Friday, December 12, 2003 10:31 PM To: 'Tomcat Users List'; [EMAIL PROTECTED] Subject: RE: JNDI comp namespace - Tomcat Developers Please Read As per my suspicion, multiple Service seemed

jkinit.dll

2003-12-13 Thread Tony
Does anybody know where I can find the file JKINIT.DLL for download ? Thanks. tony.

JNDI comp namespace

2003-12-12 Thread Tony Colson
to get set up; basically Tomcat doesn't do what the documentation says it should. Has anybody encountered this type of situation before and found a solution? Thanks Tony

RE: JNDI comp namespace

2003-12-12 Thread Tony Colson
at my setup. (Also note that I am trying to use GlobalNamingResources as seen at the top of the file.) Thanks Tony = START SERVER.XML == !-- Example Server Configuration File -- !-- Note that component elements are nested corresponding

RE: JNDI comp namespace

2003-12-12 Thread Tony Colson
have different ports running web apps? Thanks, Tony Colson -Original Message- From: Altankov Peter [mailto:[EMAIL PROTECTED] Howdy,Try this setup in your context definition: Resource name=jdbc/NNT auth=Container type=javax.sql.DataSource/ ResourceParams name=jdbc/NNT

RE: JNDI comp namespace - Tomcat Developers Please Read

2003-12-12 Thread Tony Colson
can't narrow it down further. Tony -Original Message- From: Tony Colson [mailto:[EMAIL PROTECTED] Sent: Friday, December 12, 2003 1:23 PM To: 'Tomcat Users List'; [EMAIL PROTECTED] Subject: RE: JNDI comp namespace Hi, Thanks for the tip. Actually, this is how my server.xml was set up

Re: tomcat jni configuration...

2003-12-04 Thread Tony
. in a standalone mode? Wade -Original Message- From: Tony [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 02, 2003 12:20 AM To: [EMAIL PROTECTED] Subject: tomcat jni configuration... hi, all i have a problem trying to configurate my apache 2.x with Tomcat 4 (jni using jk2

  1   2   3   >