RE: [REPOST]Tomcat with security manager + NoClassDefFoundError

2003-06-23 Thread Phillip Qin
+ NoClassDefFoundError Is there a part in your error message that says Root Cause? If so, what is it? John On Mon, 23 Jun 2003 14:24:36 -0400, Phillip Qin [EMAIL PROTECTED] wrote: Don't know if this mailing list filters my post, try it again. I am frustrated. I have a webapp developed by struts. If I start

RE: [REPOST]Tomcat with security manager + NoClassDefFoundError

2003-06-23 Thread Phillip Qin
+ NoClassDefFoundError On Tue, 24 Jun 2003 02:41, Phillip Qin wrote: I solved this problem by including a grant entry grant codeBase file:${catalina.home}/webapps/myapp/WEB-INF/struts.jar {   permission java.security.AllPermission; }; Why isn't it in WEB-INF/lib ? That is probably why you had to add

RE: [REPOST]Tomcat with security manager + NoClassDefFoundError

2003-06-23 Thread Phillip Qin
have a couple struts.jar files around, and Tomcat isn't sure which one to use. John On Mon, 23 Jun 2003 14:46:44 -0400, Phillip Qin [EMAIL PROTECTED] wrote: Typo, it is WEB-INF/lib. When there is no grant entry for this jar, tomcat throws NoClassDefFoundError. -Original Message

RE: [REPOST]Tomcat with security manager + NoClassDefFoundError

2003-06-23 Thread Phillip Qin
a NoClassDefFoundError go away, maybe it tricks the classloader into looking at a specific class somehow. Either way I don't think you have fixed the problem it just appears you have... Regards, -- Jason Bainbridge http://jblinux.org On Tue, 24 Jun 2003 02:46, Phillip Qin wrote: Typo, it is WEB

RE: [REPOST]Tomcat with security manager + NoClassDefFoundError

2003-06-23 Thread Phillip Qin
java.lang.RuntimePermission accessDeclaredMembers; It still seems strange though that it was throwing a NoClassDefFoundError, can you maybe try the above as an alternative fix and see if that resolves the problem? Regards, -- Jason Bainbridge http://jblinux.org On Tue, 24 Jun 2003 03:30, Phillip Qin wrote: I even

RE: [REPOST]Tomcat with security manager + NoClassDefFoundError

2003-06-23 Thread Phillip Qin
(Tomcat 5 handles the current case). Which Tomcat version are you using (4.1.?)? -- Jeanfrancois Phillip Qin wrote: I have already added that one, plus - ReflectPermission suppressAccessChecks for a commons-beanutils bug - FilePermission for log4j -Original Message- From: Jason Bainbridge

RE: TomCat Daemon on Linux

2003-06-20 Thread Phillip Qin
I run tomcat as service on Debian. All you have to do is - create a script tomcat in /etc/init.d, refer to scripts in the same directory, start-startup.sh, stop-shutdown.sh, otherwise exit; - create symbolic links in rcn.d: K15tomcat in rc0.d and rc6.d, S85tomcat in rc2.d thru rc5.d

RE: ssl keystore

2003-06-17 Thread Phillip Qin
Check you ssl.conf. -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: June 17, 2003 3:07 PM To: Tomcat Users List Subject: Re: ssl keystore I don't use SSL, but when you stop and start the server, do you clean out the work directory? John On Tue, 17 Jun 2003

RE: Can't get to /admin dir of our webapp

2003-06-16 Thread Phillip Qin
I strongly disagree with all of you. Suppose you are upgrading from 4.1.18 to 4.1.24. The unpacked tar will override all of the contents re admin and install its admin app. Why don't you guys think of renaming your own admin app to something like myappadmin? -Original Message- From:

RE: more problem about emails using servlets

2003-06-13 Thread Phillip Qin
I just implemented an onlinestore. It emails confirmations to the clients. You can use any mail server other than HTTP-based (hotmail or yahoo). In your case, use your ISP's. If you use Tomcat's mail session, define it in your context xml Resource name=mail/Session auth=Container

RE: command line application manger?

2003-06-13 Thread Phillip Qin
Use web-based Tomcat Manager or ant Catalina tasks. -Original Message- From: Steven Garrett [mailto:[EMAIL PROTECTED] Sent: June 13, 2003 4:42 PM To: 'Tomcat Users List' Subject: command line application manger? Is there such a thing? I see stuff for the application one, but we don't

RE: JVM Profilers

2003-06-12 Thread Phillip Qin
Very old version of jvm crashes after 20k classes are loaded. -Original Message- From: Roman Fail [mailto:[EMAIL PROTECTED] Sent: June 11, 2003 5:10 PM To: Eric J. Pinnell; Tomcat Users List Subject: RE: JVM Profilers We are trying to debug a production system. The JVM crashes occur

RE: Directory Listing in Tomcat 4.1.24

2003-06-12 Thread Phillip Qin
Edit render method in DefaultServlet class and rebuild Tomcat. -Original Message- From: Angus Mezick [mailto:[EMAIL PROTECTED] Sent: June 12, 2003 9:10 AM To: Tomcat Users List Subject: RE: Directory Listing in Tomcat 4.1.24 Well, if he got REALLY ambitious he could go edit tomcat

catalina.policy

2003-06-12 Thread Phillip Qin
If myapp is deployed as a war, how do I create a grant entry in catalina.policy to allow writing to my log file? I tried grant { permission java.io.FilePermission ${catalina.home}/logs/myapp_debug.txt,write ; } But it didn't work. Caused by: java.security.AccessControlException: access

RE: Alias definition in Tomcat standalone

2003-06-11 Thread Phillip Qin
Isn't your context's path the alias? -Original Message- From: Karsten Krieg [mailto:[EMAIL PROTECTED] Sent: June 11, 2003 5:27 AM To: [EMAIL PROTECTED] Subject: Alias definition in Tomcat standalone Hi list! Newbie question: I'm using Tomcat as a standalone webserver (without Apache)

RE: Newbie: Apache Tomcat Configuration.

2003-06-11 Thread Phillip Qin
Is there a connector called ajp14? -Original Message- From: Michele Neylon :: Blacknight Solutions [mailto:[EMAIL PROTECTED] Sent: June 11, 2003 5:24 AM To: [EMAIL PROTECTED] Subject: Re: Newbie: Apache Tomcat Configuration. Hello All, Newbie Question: I believe these questions

RE: Non-Tomcat question

2003-06-11 Thread Phillip Qin
Try forum.java.sun.com or www.theserverside.com or www.jguru.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: June 11, 2003 4:10 PM To: [EMAIL PROTECTED] Subject: Non-Tomcat question Hi, Does anyone know of a good java forum I can post my question to? I

RE: Newbie Q:How to prevent Directory listing in Tomcat?

2003-06-10 Thread Phillip Qin
In Tomcat's web.xml, under defaultServlet, change listings to false. It will disable listings for all of the webapps. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: June 8, 2003 7:02 PM To: [EMAIL PROTECTED] Subject: Newbie Q:How to prevent Directory listing

RE: Urgent : Can we restrict access to a directory in tomcat

2003-06-10 Thread Phillip Qin
Not sure if Catalina.policy will do the trick. -Original Message- From: G. Wade Johnson [mailto:[EMAIL PROTECTED] Sent: June 9, 2003 9:51 AM To: Tomcat Users List Subject: Re: Urgent : Can we restrict access to a directory in tomcat Unfortunately, this doesn't always work. In the past,

RE: Tomcat Manager deploy and undeploy

2003-06-10 Thread Phillip Qin
Agree. Point 2 is for you to manually deploy the webapp. -Original Message- From: Ulrich Mayring [mailto:[EMAIL PROTECTED] Sent: June 10, 2003 7:11 AM To: [EMAIL PROTECTED] Subject: Re: Tomcat Manager deploy and undeploy Phillip Qin wrote: Just move your Context../Context from

RE: tomcat security

2003-06-10 Thread Phillip Qin
Did you start tomcat with start security? If not, some else messed up. -Original Message- From: Maxime Colas des Francs [mailto:[EMAIL PROTECTED] Sent: June 10, 2003 3:23 PM To: [EMAIL PROTECTED] Subject: tomcat security Hi, Is there a typical security configuration for a web

RE: Tomcat configuring for email

2003-06-09 Thread Phillip Qin
=javax.mail.Session/ ResourceParams name=mail/Session parameter namemail.smtp.host/name valuelocalhost/value /parameter /ResourceParams /Context - Original Message - From: Phillip Qin [EMAIL PROTECTED] To: 'Tomcat Users List

RE: Clear user session

2003-06-09 Thread Phillip Qin
Is this a re-post? I saw some pal posted a very good explaination why you cann't do it. Are you not reading those posts?. My suggestion is to use session.removeAttribute(attr_name) or simply set those attributes to null. -Original Message- From: shyam [mailto:[EMAIL PROTECTED] Sent:

RE: re. to Thomas.Rimmele( I used param tag just as u said)

2003-06-09 Thread Phillip Qin
Don't forget to call super.init() first. -Original Message- From: bilal sulehri [mailto:[EMAIL PROTECTED] Sent: June 9, 2003 5:43 AM To: [EMAIL PROTECTED] Subject: re. to Thomas.Rimmele( I used param tag just as u said) From: [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL

RE: Newbie Q:How to prevent Directory listing in Tomcat?

2003-06-09 Thread Phillip Qin
Having gone thru the source code, I figured out that this init param will only work with DefaultServlet. I wish we could have something similar to apache's per-directory disable/enable. -Original Message- From: David Legg [mailto:[EMAIL PROTECTED] Sent: June 9, 2003 5:50 AM To: 'Tomcat

RE: tomcat does not release connections

2003-06-09 Thread Phillip Qin
I do it in my init servlet's destroy method. When I start my application, I use an init Servlet to initialize logger, connection pool etc. When Tomcat is shutting down, it automatically executes my init servlet's destroy method where I close the connection pool. -Original Message- From:

RE: tomcat 4.1.24 and struts

2003-06-06 Thread Phillip Qin
What is your problem? Be specific. I have been using Tomcat 4.1.24 + struts 1.1rc1 without any trouble. -Original Message- From: Jason Bainbridge [mailto:[EMAIL PROTECTED] Sent: June 4, 2003 5:50 PM To: Tomcat Users List Subject: Re: tomcat 4.1.24 and struts On Wed, 5 Jun 2002 05:42,

RE: Guide for mod_jk2 + Apache2 + Tomcat 4.1.24

2003-06-06 Thread Phillip Qin
I found apache wiki's using jk2 connector is quite helpful for setting up jk2 (http://nagoya.apache.org/wiki/apachewiki.cgi?Tomcat/Jk2Connector) and http://nagoya.apache.org/wiki/apachewiki.cgi?TomcatFAQ/ModJK2OnRedHat makes me realize that it is not necessary building coyote etc before building

Tomcat Manager deploy and undeploy

2003-06-06 Thread Phillip Qin
I finally had my Catalina-Ant undeploy task working after I included context.xml into my war's META-INF directory. What this deployment doing is - war is uploaded to $CATALINA/work/Standalone/my.host/manager; - war is unpacked into $CATALIAN_HOME/webapps/myapp; - context.xml is extracted to

RE: Tomcat Manager deploy and undeploy

2003-06-06 Thread Phillip Qin
Yes, the classes and jars are unpacked to work/my.host/myapp too. I use Digester to parse my xmls. I'll give getResourceAsStream a try. -Original Message- From: Jacob Kjome [mailto:[EMAIL PROTECTED] Sent: June 5, 2003 1:04 PM To: Tomcat Users List Subject: Re: Tomcat Manager deploy and

RE: problem with updating an web app through manager app (linux work, win no)

2003-06-06 Thread Phillip Qin
Looks like some files are not removed. I had similar problem on Windows, my struts.jar under WEB-INF/lib never got removed. Linux is OK. Try put context.xml into META-INF. -Original Message- From: Emerson Cargnin [mailto:[EMAIL PROTECTED] Sent: June 5, 2003 1:28 PM To: [EMAIL PROTECTED]

RE: problem with updating an web app through manager app (linux w ork, win no)

2003-06-06 Thread Phillip Qin
the same app two times : ) If you could sday more about how the context work and an exemple could be helpful thanks in advance emerson Phillip Qin wrote: Looks like some files are not removed. I had similar problem on Windows, my struts.jar under WEB-INF/lib never got removed. Linux is OK. Try

RE: Tomcat Manager deploy and undeploy

2003-06-06 Thread Phillip Qin
unpacking the war. -Original Message- From: Paul Christmann [mailto:[EMAIL PROTECTED] Sent: June 5, 2003 1:54 PM To: [EMAIL PROTECTED] Subject: Re: Tomcat Manager deploy and undeploy Phillip Qin wrote: - war is uploaded to $CATALINA/work/Standalone/my.host/manager; - war is unpacked

RE: [SOLVED]RE: getResourceAsStream cached by Tomcat's Classloader?

2003-06-06 Thread Phillip Qin
Because Tomcat Manager deploys webapp from war. -Original Message- From: Brandon Goodin [mailto:[EMAIL PROTECTED] Sent: June 5, 2003 2:50 PM To: Tomcat Users List Subject: RE: [SOLVED]RE: getResourceAsStream cached by Tomcat's Classloader? Dang it! I knew it was too good to be true.

RE: Tomcat Manager deploy and undeploy

2003-06-06 Thread Phillip Qin
:54 PM To: [EMAIL PROTECTED] Subject: Re: Tomcat Manager deploy and undeploy Phillip Qin wrote: - war is uploaded to $CATALINA/work/Standalone/my.host/manager; - war is unpacked into $CATALIAN_HOME/webapps/myapp; Jacob Kjome wrote: completely false I have to agree with Phillip -- I've

RE: Tomcat configuring for email

2003-06-06 Thread Phillip Qin
Don't understand your question. Tomcat has built-in mail session jndi lookup. You can use it in your program. Is that what you want? -Original Message- From: Clement [mailto:[EMAIL PROTECTED] Sent: June 6, 2003 2:53 AM To: Tomcat Users List Subject: Tomcat configuring for email

RE: Tomcat 4.1.24 ignores context settings in server.xml

2003-06-06 Thread Phillip Qin
I guess you don't have a context.xml bundled with your war. -Original Message- From: Ulrich Mayring [mailto:[EMAIL PROTECTED] Sent: June 6, 2003 9:34 AM To: [EMAIL PROTECTED] Subject: Tomcat 4.1.24 ignores context settings in server.xml Hello, I've defined a context in server.xml,

RE: Tomcat Manager deploy and undeploy

2003-06-06 Thread Phillip Qin
After 3 days playing around with Tomcat Manager, I have some lessons to share with you Paul. - If you Deploy, you have only use Undeploy. Install - Remove. No exception. - You have to create a context.xml and package it into META-INF. When I deploy: - war is uploaded to manager/myapp; -

RE: Tomcat Manager deploy and undeploy

2003-06-06 Thread Phillip Qin
The bug logged in Bugzilla should be removed since unable to deploy.. is not really a bug. It is caused by the absence of the context.xml. In manager source code, it explicitely looks for the context.xml. If one exists, every attribute will be added to the context in server.xml except docBase

RE: Tomcat Manager deploy and undeploy

2003-06-06 Thread Phillip Qin
behavior. Jake -Original Message- From: Paul Christmann [mailto:[EMAIL PROTECTED] Sent: June 5, 2003 1:54 PM To: [EMAIL PROTECTED] Subject: Re: Tomcat Manager deploy and undeploy Phillip Qin wrote: - war is uploaded to $CATALINA/work/Standalone/my.host/manager; - war

RE: Tomcat 4.1.24 ignores context settings in server.xml

2003-06-06 Thread Phillip Qin
: June 6, 2003 11:42 AM To: [EMAIL PROTECTED] Subject: Re: Tomcat 4.1.24 ignores context settings in server.xml Phillip Qin wrote: I guess you don't have a context.xml bundled with your war. Yes, I do, in META-INF. Ulrich

RE: Tomcat Manager deploy and undeploy

2003-06-06 Thread Phillip Qin
deploy and undeploy I've been following this thread with interest since I've never been able to get undeploy to work either. Where might I go to learn about context.xml and most importantly, what goes into it? Examples would be great. Thanks, Jim. Phillip Qin wrote: Having added context.xml

RE: Very strange behavior, please, HELP (GenericServlet problem, error 500)

2003-06-06 Thread Phillip Qin
- did you do the Servlet mapping in web.xml? - Editing CLASSPATH in Tomcat's script only makes things worse. Classloader is smart enough to load all the necessay jars. - my CLASSPATH only contains tools.jar and .; - my PATH only contains $JAVA_HOME and %ANT_HOME/bin -Original Message-

RE: Struts Framework

2003-06-06 Thread Phillip Qin
Jakarta.apache.org/struts -Original Message- From: Raible, Matt [mailto:[EMAIL PROTECTED] Sent: June 6, 2003 2:09 PM To: 'Tomcat Users List' Subject: RE: Struts Framework Ever heard of Google? http://www.google.com/search?q=struts -Original Message- From: Anitha K Rao

RE: security of server.xml

2003-06-06 Thread Phillip Qin
Is your book out? I couldn't find in local bookstore. -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: June 6, 2003 2:19 PM To: Tomcat Users List Subject: Re: security of server.xml Java code can be decompiled. Easily. Rogue classes can be inserted into improperly

directory list

2003-06-06 Thread Phillip Qin
It is Friday. Let's ask some simple questions. If I don't use apache at all, how do I disable directory listing in Tomcat? Regards, PQ The difference between 'involvement' and 'commitment' is like an eggs-and-ham breakfast: the chicken was 'involved' - the pig was

RE: directory list

2003-06-06 Thread Phillip Qin
My God, having been coding Servlet/jsp for 3 years, never noticed that very beginning listings=false. -Original Message- From: Jason Bainbridge [mailto:[EMAIL PROTECTED] Sent: June 6, 2003 2:29 PM To: Tomcat Users List Subject: Re: directory list On Sat, 7 Jun 2003 02:28, Phillip Qin

RE: directory list

2003-06-06 Thread Phillip Qin
Tested. Looks like the web.xml in $CATALINA_HOME/conf is the only file to enable/disable listings and this init param either enable for all webapp or disable for all. Any input? -Original Message- From: Vladimer Shioshvili [mailto:[EMAIL PROTECTED] Sent: June 6, 2003 2:31 PM To: Tomcat

RE: Tomcat Manager deploy and undeploy

2003-06-06 Thread Phillip Qin
to learn about context.xml and most importantly, what goes into it? Examples would be great. Thanks, Jim. Phillip Qin wrote: Having added context.xml, Deploy/Undeploy works perfectly for me now EXCEPT Undeploy doesn't delete work/../myapp. However, Tomcat will take care

RE: clear user session

2003-06-06 Thread Phillip Qin
Simple set the element value to null instead of removing it. -Original Message- From: Shyama Gavulla [mailto:[EMAIL PROTECTED] Sent: June 6, 2003 3:28 PM To: [EMAIL PROTECTED] Subject: Re: clear user session -- Hi, Thanks for the reply. As you have said I was trying to make changes

tomcat manager deploy and undeploy

2003-06-05 Thread Phillip Qin
Did anyone solve Cannot remove document base for path /mywebapp? My environment is Redhat 7.2 Apache 2.0.46 Tomcat 4.1.24 J2sdk 1.4.1_01 I deployed my webapp using Catalina-ant Deploy task. War file was uploaded to work/Standalone/myhost/manager and unpacked into webapps/mywebapp. I

RE: Logging help please

2003-06-05 Thread Phillip Qin
Commons-logging is a wrapper. Try use log4j or jdk 1.4 logger for the underlying logger -Original Message- From: Tim Shaw [mailto:[EMAIL PROTECTED] Sent: June 4, 2003 1:42 PM To: Tomcat Users List Subject: Logging help please Hi, Does anyone have a link to a FAQ or HOW-TO for using

RE: tomcat manager deploy and undeploy

2003-06-05 Thread Phillip Qin
List Subject: Re: tomcat manager deploy and undeploy I do an ant remove before I do the deploy. That works for me. Jim. Phillip Qin wrote: Did anyone solve Cannot remove document base for path /mywebapp? - To unsubscribe

RE: tomcat manager deploy and undeploy

2003-06-05 Thread Phillip Qin
Remove didn't delete struts.jar only happens on Windows box. Linux is OK. -Original Message- From: Phillip Qin [mailto:[EMAIL PROTECTED] Sent: June 4, 2003 2:03 PM To: 'Tomcat Users List' Subject: RE: tomcat manager deploy and undeploy But remove will not remove your Context entry

RE: Logging help please

2003-06-05 Thread Phillip Qin
etc). Thanks tim Phillip Qin wrote: Commons-logging is a wrapper. Try use log4j or jdk 1.4 logger for the underlying logger -Original Message- From: Tim Shaw [mailto:[EMAIL PROTECTED] Sent: June 4, 2003 1:42 PM To: Tomcat Users List Subject: Logging help please Hi, Does

RE: Problem with a Database ConnectionPool

2003-03-20 Thread Phillip Qin
Can you destroy it in your initialization servlet's destroy method? -Original Message- From: Guillaume Albini [mailto:[EMAIL PROTECTED] Sent: March 20, 2003 6:32 AM To: [EMAIL PROTECTED] Subject: Problem with a Database ConnectionPool Hi, I use Tomcat 4.0.1 with the parameter

RE: mod_jk2 throw these errors in apache error_log

2003-03-03 Thread Phillip Qin
I encountered similar errors except that graceful restart. My errors usually occur when I open up a new jsp page (yet to compile). Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Ori Tend [mailto:[EMAIL PROTECTED]

RE: Tomcat 4.1.18 crashes on Win2K

2003-03-03 Thread Phillip Qin
My question is why didn't you use a stable mod_jk build? Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Cameron Hart [mailto:[EMAIL PROTECTED] Sent: March 2, 2003 11:57 PM To: [EMAIL PROTECTED] Subject: Tomcat

RE: Tomcat WAR expansion

2003-02-28 Thread Phillip Qin
War is different from jar. WAR has to be expanded in order to run. Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Scott, Sean [mailto:[EMAIL PROTECTED] Sent: February 28, 2003 11:02 AM To: 'Tomcat Users List'

RE: Tomcat WAR expansion

2003-02-28 Thread Phillip Qin
My Tomcat used to expand my app war automatically. As soon as I added JNDI stuff (resource) to my context, it stopped expanding my app war and threw exception. I guess it looks for the resource before it expands my war. Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He

RE: Tomcat WAR expansion

2003-02-28 Thread Phillip Qin
So unpackWars is just a nice feature provided by Tomcat? Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: February 28, 2003 11:08 AM To: Tomcat Users List Subject: RE:

RE: Tomcat WAR expansion

2003-02-28 Thread Phillip Qin
- From: Scott, Sean [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Friday, February 28, 2003 9:39 PM Subject: RE: Tomcat WAR expansion I can't speak for Pratt, but my WAR runs fine without being expanded. (4.1.18) -Original Message- From: Phillip Qin [mailto:[EMAIL

RE: mod_jk

2003-02-28 Thread Phillip Qin
I see many problems when you include apache in your Red hat installation. If you make a clean build, John's document should perfectly meet your requirement. Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Jeremy

RE: Tomcat WAR expansion

2003-02-28 Thread Phillip Qin
(Catalina.java:180) at java.lang.reflect.Method.invoke(Native Method) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203) Regards, Pratt - Original Message - From: Phillip Qin [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Friday, February 28, 2003 9:55 PM

RE: reference material

2003-02-28 Thread Phillip Qin
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/connectors.html Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Will Hartung [mailto:[EMAIL PROTECTED] Sent: February 28, 2003 12:56 PM To: Tomcat Users List

RE: ejbs and sql server

2003-02-28 Thread Phillip Qin
This is not a problem. If I know the answer, I'd love to post. I think the real problem is some one posts questions without having looking through the archive or without having going through the Tomcat document. I am not a contractor of your project. If you ask how do I do this, I will

RE: JNDI Datasource failed to start

2003-02-27 Thread Phillip Qin
What's in your web.xml? Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Sébastien Col [mailto:[EMAIL PROTECTED] Sent: February 27, 2003 1:37 PM To: Tomcat Users List Subject: RE: JNDI Datasource failed to start

RE: JSPs sometimes don't recompile

2003-02-27 Thread Phillip Qin
Probably it's being cached by your browser. Try close and re-open your browser. Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: February 27, 2003 2:44 PM To: [EMAIL

<    1   2   3   4