Re: session-timeout means tomcat restart

2004-11-08 Thread Eric Wulff
aking it so the data source was not getting re-established if need be. Then it would just hang on login. Not sure why I was often required to hard boot but it's not longer a problem since I corrected the data source hook. Eric On Mon, 8 Nov 2004 22:19:27 -, Steve Kirk <[EMAIL PROTEC

Re: DataSource and initialContext.lookup("java:comp/env")

2004-11-06 Thread Eric Wulff
helpful somewhat... at least in helping me narrow my question. So what is this "java:comp/env"? What exactly is being returned based on this string passed to lookup()? Eric On Sat, 06 Nov 2004 23:35:34 -0500, Frank W. Zammetti <[EMAIL PROTECTED]> wrote: > I'll give it

DataSource and initialContext.lookup("java:comp/env")

2004-11-06 Thread Eric Wulff
nitialContext.lookup("java:comp/env"); DataSource dataSource = (DataSource) context.lookup("jdbc/wms"); thx Eric - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: AW: {an alternative}Re: connection pooling

2004-11-05 Thread Eric Wulff
so amazingly detailed and lengthy that unless you want to become a TC guru, which I am inspired to try and be more like, there is simply too much info. Okay, I'm off to continue figuring why TC keeps crashing on me. Hopefully something I did here solved that problem too. thx again all, Er

Re: session-timeout means tomcat restart

2004-11-05 Thread Eric Wulff
s not work. Instead, I'm required to hard boot my machine. I'm hung just trying to access the static welcome page of any app, although I do know that init() of the webapp I'm working on is being called. Eric On Fri, 5 Nov 2004 15:43:28 -0800, Eric Wulff <[EMAIL PROTECTED]>

Re: session-timeout means tomcat restart

2004-11-05 Thread Eric Wulff
. Still, even if this is what initiates the sequence leading to a crash, it shouldn't so something need be fixed/optimized. Any other ideas? Eric On Fri, 5 Nov 2004 13:03:27 -, Steve Kirk <[EMAIL PROTECTED]> wrote: > > > > > > -Original Message- &

Re: connection pooling

2004-11-05 Thread Eric Wulff
t;); DataSource dataSource = (DataSource) context.lookup("jdbc/wms"); connection = dataSource.getConnection(); I have seen no mention of this factory class parameter you speak of. I'm using TC 5.0.28. I'll try it. thx much for your help Eric On Fri, 5 Nov 2004 13:30:35

session-timeout means tomcat restart

2004-11-04 Thread Eric Wulff
ks I hear about? thx Eric - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: {an alternative}Re: connection pooling

2004-11-04 Thread Eric Wulff
Atishay, the DefaultContext does work once I comment out the other Engine element. You mentioned that means something is wrong with my Context? So what next? many thx Eric On Thu, 4 Nov 2004 22:21:57 -0800, Eric Wulff <[EMAIL PROTECTED]> wrote: > This did not work. In looking for t

Re: {an alternative}Re: connection pooling

2004-11-04 Thread Eric Wulff
Same exception. Eric On Fri, 5 Nov 2004 11:20:26 +0530, Atishay Kumar <[EMAIL PROTECTED]> wrote: > If adding did not work..then try following > > On Thu, 4 Nov 2004 19:46:30 -0800, Eric Wulff <[EMAIL PROTECTED]> wrote: > > Hi all, I'm returning to a problem I cou

Re: connection pooling

2004-11-04 Thread Eric Wulff
Thx for your input but, as mentioned in my previous message, I've tried this and it does not work. Also, considering my web.xml I shouldn't need this, correct? I have a in my web.xml. Eric On Fri, 5 Nov 2004 11:01:05 +0530, Atishay Kumar <[EMAIL PROTECTED]> wrote: > >

Re: connection pooling

2004-11-04 Thread Eric Wulff
les for > following froom tomcat site and try them out. copy the old jar files > somewhere else and try using the latest jar files. > 1) Commons Collections > 2)Commons DBCP > 3)Commons Pool > > > > > On Thu, 7 Oct 2004 15:29:40 -0700, Eric Wulff <[EMAIL PROTECTED

Re: PureTLSImplementation

2004-11-03 Thread Eric Rotick
>From looking at the source I say not. The message is benign so what's the problem with it appearing in a _debug_ log file? On Wed, 3 Nov 2004 16:57:04 +0100 (CET), Giuseppe Briotti <[EMAIL PROTECTED]> wrote: > > > > This only comes out when asking for detailed debug information > > and can be i

Re: PureTLSImplementation

2004-11-03 Thread Eric Rotick
This only comes out when asking for detailed debug information and can be ignored. It arises when you use SSL and Tomcat tries to load one of two implementations. The first generally fails as the relevant jars are not available which is what you are seeing. The second implementation loads OK as th

Re: which Linux Platform is best for Tomcat?

2004-10-26 Thread Eric Weidner
=2.4.1 will turn off the new threading and alleviate the problem. Regardless, these distributions are old and end of life anyway. My server is Debian Sid, kernel 2.6.7 currently, with JDK 1.4.2_04 and runs Tomcat fine. Eric Weidner BlueGlue Project Lead OpenLogic, Inc. http://www.openlogic.com

Re: AW: JSP compile hangs

2004-10-19 Thread Eric Blenkush
Hi, Actually the hang occurs in generating the code. When it does generate the code for shorter statements the EL is just a string so that shouldn't affect the compilation of the .java file anyways. Eric On Oct 19, 2004, at 1:51 AM, Bernhard Slominski wrote: Hi Eric, did you check the gene

JSP compile hangs

2004-10-18 Thread Eric Blenkush
ompile and execute these pages with ease but I want to stick with Tomcat. Anyone know why this is so slow and how to fix it? Thanks, Eric Blenkush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Sun J2SE JVM + tomcat + Debian??

2004-10-13 Thread Eric Weidner
My config single-cpu Debian Sid Kernel 2.6.7 Sun jdk 1.4.2_04 Tomcat 5.0.26 Apache 2.0.49 + mod_jk2 2.0.4 James Mail Server 2.2.0 (Java based) My servers run fine. Are you trying to run with the -server VM? I've always had trouble with that on Linux. Eric On Wednesday 13 October 2004

Re: connection pooling

2004-10-07 Thread Eric Wulff
Except that the driver works for connecting if I'm not utilizing a connection pool, i.e., I am able to connect to the db and manipulate data via DriverManager.getConnection(url, db, pwd). The driver is located in CATALINA_HOME/commons/lib Eric On Thu, 7 Oct 2004 18:22:45 -0400, Philli

Re: connection pooling

2004-10-07 Thread Eric Wulff
If so, the tutorial I'm following, 'Tomcat Kick Start' left all your suggestions out. Including the tag, but that seems critical for connection. Eric On Thu, 7 Oct 2004 17:14:27 -0400, Phillip Qin <[EMAIL PROTECTED]> wrote: > 1. web.xml: OK > > 2. context.x

Re: connection pooling

2004-10-07 Thread Eric Wulff
Hi Atishay, added your suggestion to the server.xml. While it is not the fix, I do have a different error listing. Is this a clue to you? Eric current last listing of stack trace... Caused by: java.lang.NullPointerException at com.informix.jdbc.IfxDriver.checkURL(IfxDriver.java:473) at

Re: connection pooling

2004-10-07 Thread Eric Wulff
out.println (""); } } ReplyForward [EMAIL PROTECTED] java code: Context ctx = (Context) init.lookup("xx"); server.xml: to Tomcat More options6:29am (7 hours ago) Detail, detail, detail. 1. your context.xml 2. y

Re: connection pooling

2004-10-06 Thread Eric Wulff
e at least eliminated a possible cause to my dilemma. Eric On Thu, 7 Oct 2004 11:29:38 +1300, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Is there a x.xml file in (TOMCAT_HOME)/conf/Catalina/localhost, where > xx is the context name? (this is an independent context c

Re: connection pooling

2004-10-06 Thread Eric Wulff
No, literally I have the actual values. The same connection string I use to successfully connect via JDBC using DriverMangager.getConnection() minus the user and passoword. Eric On Thu, 7 Oct 2004 11:04:22 +1300, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > parameter

connection pooling

2004-10-06 Thread Eric Wulff
t find out what's wrong with my set-up. thx Eric System: Tomcat 5 on Fedora Core 2 connecting to a db on an Informix Dynamic Server 9.4 on Windows Server -I am able to connect to my db via typical JDBC DriverManager.getConnection(). This leads me to believe that my informix jdbc driver is in th

connection pooling

2004-10-06 Thread Eric Wulff
Hi all, I have gone over some of the tomcat docs and googled errors but there is SO much information covering JNDI and Datasources... and I'm hoping I don't have to be a JNDI/Datasource and XML guru just to set up db connections via connection pool. My situation is this... System: Tomcat 5 on Fed

tomcat data source - mysql

2004-10-01 Thread Eric Wulff
. I have defined a resource reference in my web.xml. I have tried shutting down my firewall. I'm sure others have had similar problems and I'm hoping one of you can share your wisdom or point me in the right direction? many thx Eric More, hopefully enlightening, details below. fe

Re: Suggestion: A dedicated TOMCAT forum!

2004-09-21 Thread Eric VERGNAUD
don't. I hate forums. --- Eric VERGNAUD - JLynx Software Cutting-edge technologies and services for software companies web: http://www.jlynx.com --- - To unsubscr

Re: using character entities and JSF XML

2004-09-18 Thread Eric Suen
duction env. I think the validation is necessary in developing, but in production env, for performance, maybe we want to disable validation, I just dont understand why jsp 2.0 force us to validation the xml file even it can not do it

Re: TC 5.5 - 4 issues (jasper, ROOT, jndi, logging)

2004-09-02 Thread Jonathan Eric Miller
I ran into the same issue with DBCP and JNDI. Jon - Original Message - From: "Allistair Crossley" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Thursday, September 02, 2004 8:32 AM Subject: TC 5.5 - 4 issues (jasper, ROOT, jndi, logging) Hi Guys Decided to give TC

Re:

2004-09-01 Thread Jonathan Eric Miller
. In general, if you copy and paste configuration files across release versions, be careful. Yoav Shapira Millennium Research Informatics -Original Message- From: Jonathan Eric Miller [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 01, 2004 2:37 PM To: Tomcat Users List Subject: R

Re: How do I make my servlet the welcome page

2004-09-01 Thread Jonathan Eric Miller
The problem that I found with doing it this way is that I had a security-constraint on my application and it wasn't being enforced when I tried to do that. So, I created an index page that redirects to the application. Jon - Original Message - From: "QM" <[EMAIL PROTECTED]> To: "Tomcat

Re: symbolic links in webapps

2004-09-01 Thread Jonathan Eric Miller
If I remember correctly, symlinks are disabled by default. I think you can turn them on using an attribute value for an element in server.xml. Jon - Original Message - From: "Philippe Mathieu" <[EMAIL PROTECTED]> To: "Tomcat User List" <[EMAIL PROTECTED]> Sent: Wednesday, September 01, 2

Re:

2004-09-01 Thread Jonathan Eric Miller
configured for the "" path? Yoav Shapira Millennium Research Informatics -Original Message- From: Jonathan Eric Miller [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 01, 2004 2:20 PM To: Tomcat User List Subject: In Tomcat 4.0 and 5.0, I had the following in my server.x

Re: How to configure logs in Tomcat 5.5?

2004-09-01 Thread Jonathan Eric Miller
l. Note that for people who don't care much about logging, System.out/System.err still behave as before, and the ServletContext#log method works without any special configuration. Yoav Shapira Millennium Research Informatics -Original Message- From: Jonathan Eric Miller [mailto:[EMAIL PROT

tomcat-user@jakarta.apache.org

2004-09-01 Thread Jonathan Eric Miller
In Tomcat 4.0 and 5.0, I had the following in my server.xml file. However, if I try to use this in Tomcat 5.5, I receive the following error in catalina.out. Does anyone know if I need to change something to get it to work with Tomcat 5.5, or, is this a bug? Also, is ROOT a special case? I don'

How to configure logs in Tomcat 5.5?

2004-09-01 Thread Jonathan Eric Miller
I noticed in the change log that some changes have been made to the way things are logged in Tomcat 5.5. I was using something like the following in my server.xml previously. However, this no longer works. I'm wondering how to configure the new "commons-logging?" The default server.xml doesn't

Re: Where are Tomcat logs when run as service?

2004-08-22 Thread Eric YH WONG
Try to see /logs/stdout.log - Original Message - From: "ohaya" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Monday, August 23, 2004 2:36 PM Subject: Where are Tomcat logs when run as service? > Hi, > > Up until tonight, I've been running standalone Tomcat as a

Windows XP IIS 5.1 HTTP Post Problem with mod_jk

2004-08-18 Thread Eric Jacobson
work with multiple other flavors of Windows (Win2k Pro, Win2k Server, Win2003 Server), but I have had the same problem with XP on half a dozen machines. Any help would be appreciated. Thanks, Eric Jacobson Software Engineer FileMaker Inc

can't show self-defined error page !!!

2004-08-10 Thread Eric Chow
I define some error code with a specific error page in Tomcat 5.0.27. But it seems not woeking. For example, I type a non-existed page. It must show 404 .., as in the setting, it should display my error.jsp. but it never show it . anything i missed ??? Eric <%@ page isErrorPage=&q

HTTP Status 403 - Access to the requested resource has been denied

2004-08-10 Thread Eric Chow
that is not a correct role for the protected page, it just show "HTTP Status 403 - Access to the requested resource has been denied". How can prevent this ? If the role is incorrect, how can I re-show the login page ?? Eric == If you know what you are doing,

[OT] [Ann] BlueGlue 3.0 available - Tomcat Updated

2004-08-10 Thread Eric Weidner
ixes, enhancements and security patches. Over 10 re-usable sample applications with full source to help kick-start development and learning. For more information on the many time saving capabilities of BlueGlue, go to http://www.openlogic.com. Eric Weidner BlueGlue Lead Engineer OpenLogic,

Re: How to deploy a custom DynamicMBean

2004-08-10 Thread Eric Herman
wever, my first thought as to how to apply this would be to create a very tiny servlet which would be loaded by Tomcat upon startup. This servlet could run the MBean creation code during it's initialization. Do you have another thought as to how to apply this? -- Eric On Mon, 2004-08-09 at 2

How to deploy a custom DynamicMBean

2004-08-09 Thread Eric Herman
d modify that file. To provide an DynamicMBean deployment example, I've attached a simple "LightBulb" class to be managed, as well as a very naive DynamicMBean to manage it. If we really had an application this simple, we probably wouldn't be using a DynamicMBean, but I

disable URL rewriting for session tracking

2004-07-27 Thread Eric Allen
I need to somehow disable URL rewriting for session tracking in my application. My designer uses - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Limit time for Database connection

2004-07-08 Thread Eric Noel
On 7/9/2004 8:11 AM, Robert F. Hall wrote: Elisabeth, Nobody has responded to your question (that I've seen), so I'll "take a shot". This sounds like a network issue, and network connection failures have to "time out" before they fail. Using a timed separate thread to obtain the connections fo

Saving on Database Pool when having Multiple Contexts

2004-07-08 Thread Eric Noel
I have multiple apps/contexts that access the same database and uses dbcp. My worry is that on each of my i will declare the dbcp for the database, can i just declare one dbcp and each context/app can share that??? - To unsubs

Re: Importing Tomcat 5.0 webapp into Eclipse 3.0?

2004-07-06 Thread Eric Noel
On 7/7/2004 4:38 AM, Januski, Ken wrote: Thanks Matt, I'm using the Sysdeo plugin and that got me to the point where I could build a simple jsp page in Eclipse. But as soon as I started to try importing an entire web app I got the error about "XLM validation disabled." That then prompted my questio

Re: I've officially decided that JSTL is one of the worst thingsto ever happen

2004-07-04 Thread Eric VERGNAUD
market. --- Eric VERGNAUD - JLynx Software Cutting-edge technologies and services for software companies web: http://www.jlynx.com --- - To unsubscribe, e-mail: [EMAIL PROTECTE

Re: I've officially decided that JSTL is one of the worst things to ever happen

2004-07-04 Thread Eric VERGNAUD
While Java is definitely a good approach for business apps, it's unacceptable for edited apps, for which "look and feel" and "raw performance" remain top criterias when the customer makes his choice. --- Eric VERGNAUD - JLynx Software Cutting-e

RE: ROOT/index.jsp- REASON WHY EDITING FAILS

2004-06-25 Thread Spiegelberg, Eric
ethod. Thanks, Eric - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

OT : Convert Korean Access mdb to MySQL

2004-06-25 Thread Eric Noel
im trying to convert an access file to mysql db so i decided to use jdbc/odbc to access mdb then insert them to mysql and display first to see if my jsp (see code below) can really fetch korean characters. but it seems it doesnt, how come it display |??? instead of the korean characters? do

Re: java server mode vs. client mode

2004-06-16 Thread Eric VERGNAUD
ody have any experience/thoughts on this? > > > Thanks, > Matt Bathje > Matt, No one can really believe Java is faster than C or C++, because Java is itself written in C and C++. I haven't been through the benchmark code throroughly, but there's definitely a bias some

Cluster problem ??

2004-05-31 Thread Eric Chow
Hello, I setup two Tomcat5 in cluster mode. If it is possible to synchronize all the application from one to another one ?? For example, I deploy a WAR in Tomcat1, it will be automatic deploy to Tomcat2. Or I deploy another web app in Tomcat2, Tomcat1 will be get the same app. Eric

Re: Remote Start / Stop of tomcat

2004-05-30 Thread Eric Chow
You can use "telnet/ssh" to login to the server and restart it !!! - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 31, 2004 12:19 PM Subject: Remote Start / Stop of tomcat > > > > > Hi, > Once in a week I need to restart Tomcat due to "OutofMemo

JAAS problem ???

2004-05-30 Thread Eric Chow
ate the login module ?? Can I set the "java.security.auth.login.config" in run-time ??? Eric == If you know what you are doing, it is not called RESEARCH! == - To unsubsc

Re: JSVC to run tomcat?

2004-05-27 Thread Eric Noel
On 5/28/2004 12:02 PM, Justin Jaynes wrote: I am very impressed with the responsiveness of this list. I appreciate all the help everyone has given me in learning about JSVC for running tomcat as an underpriviledged user on ports 80 and 443. However, I am still running into a problem. I created a t

Re: Why don't updated unpacked WAR files get reloaded automatically?

2004-05-27 Thread Jonathan Eric Miller
t; your changes. We'd rather be extra careful and require the user to > explicitly redeploy the app via the manager (or whatever mechanism > he/she wants to use). > > Yoav Shapira > Millennium Research Informatics > > > >-Original Message- > >From: Jonat

Why don't updated unpacked WAR files get reloaded automatically?

2004-05-27 Thread Jonathan Eric Miller
I noticed that if you have "unpackWARs" set to false and you update a WAR file, it doesn't reload it. According to the Tomcat documentation at the following link, it only does it for unpacked WAR files. Why? http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/host.html#Automatic%20Application%

question/problem

2004-05-26 Thread Jonathan Eric Miller
I am trying to configure my application so that everything has to be encrypted. I was able to do that by using the security constraint at the bottom of this message. I've had this working for awhile without a problem. However, now, I want to add an additional restriction. I want to make it so that

JAAS question ??

2004-05-25 Thread Eric Chow
lient login module) in this case? Any simple example ??? Eric == If you know what you are doing, it is not called RESEARCH! == - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Session Timeout and "Direct Reference to login page"

2004-05-24 Thread Jonathan Eric Miller
;[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Friday, May 21, 2004 7:15 AM Subject: Re: Session Timeout and "Direct Reference to login page" > Jonathan Eric Miller wrote: > > > Yeah, that seems like it would work. I'm wondering if I

Re: HTTP Redirections with Tomcat

2004-05-20 Thread Eric Noel
On 5/20/2004 1:51 AM, Guillermo Zarabozo wrote: Hi Everyone, I have a Tomcat Appl. Server running with Atlassian JIRA application. Recently We had an upgrade to a newer version, so the clients now need to change this URL http://:8080/altlassian-jira-2.0.2 for ... http://:8080/altlassian-jira-2.5.

SingleSignOn session timeout question

2004-05-20 Thread Jonathan Eric Miller
I'm using "org.apache.catalina.authenticator.SingleSignOn" for single sign on with container-based security. I have a question about session time outs. When the session for a given application times out, if a user attempts to access the application after the session has timed out, the user should

Re: Session Timeout and "Direct Reference to login page"

2004-05-20 Thread Jonathan Eric Miller
e first suggestion? > > 1.) When your user logs in, throw an object in their session. > 2.) In each servlet/jsp (or, better, in a filter), test for the existence of > that object and forward back to the login if it is null. > > Seems pretty straight forward to me. > > > &

Re: Session Timeout and "Direct Reference to login page"

2004-05-20 Thread Jonathan Eric Miller
Original Message - From: "Veniamin Fichin" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Thursday, May 20, 2004 2:59 AM Subject: Re: Session Timeout and "Direct Reference to login page" > Jonathan Eric Miller wrote: > >

Any Resource talking abt how Tomcat intergrated to Apache

2004-05-20 Thread Eric YH WONG
Hello, Does anyone have good resources which talking about how Tomcat v5.X integrated with Apache v2.0.49 ? Thx Eric

Re: Session Timeout and "Direct Reference to login page"

2004-05-19 Thread Jonathan Eric Miller
Renato, Did you ever receive a response to this? I'm having the same problem. My current problem is slightly more complicated though. I have my application protected using container based security, but, I also have single-sign on enabled. So, the user doesn't get redirected back to the login page

Re: Session Timeout and "Direct Reference to login page"

2004-05-19 Thread Jonathan Eric Miller
It's too bad there isn't a element that you can put in web.xml kind of like the element... Jon - Original Message - From: "Jonathan Eric Miller" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> S

Tomcat 4.1 + AJP is encoding HTTP headers as UTF-8

2004-05-19 Thread Eric Jacobson
request uses the Coyote JK implementation, then the header strings are encoded as UTF-8. This is being done explicitly in org.apache.jk.server.JkCoyoteHandler line 281. Is there any explanation why the Jk code is writing out the headers in UTF-8? Any help would be greatly appreciated. Thanks, Eric

Re: Session Timeout and "Direct Reference to login page"

2004-05-19 Thread Jonathan Eric Miller
t;[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, May 19, 2004 3:16 PM Subject: Re: Session Timeout and "Direct Reference to login page" > On Wed, May 19, 2004 at 02:58:05PM -0500, Jonathan Eric Miller wrote: > : All I want to do is dete

Re: [ANN] Apache Tomcat 5.0.24 Stable released

2004-05-16 Thread Eric Noel
On 5/17/2004 10:19 AM, Zachary Hartley wrote: Eric Noel wrote: Hey yoav is just saying that usually for tomcat users we always goto the tomcat site which is -http://jakarta.apache.org/tomcat/ Hi, I think its pretty clear that I did go to the sitehow else would I have obtained the release or

Re: [ANN] Apache Tomcat 5.0.24 Stable released

2004-05-16 Thread Eric Noel
On 5/15/2004 4:07 AM, Zachary Hartley wrote: Shapira, Yoav wrote: We had such a good day on the list, all competent and professional posts, and then comes this one to ruin my optimism about people in this otherwise sunny afternoon. Hey, don't get pissy with me. How was I supposed to know where it

Re: Internationalization issue

2004-05-13 Thread Eric Noel
On 5/14/2004 2:10 PM, tomcat wrote: Hi, How can I get a simple Internationalization tag work. I use the following JSP: <[EMAIL PROTECTED] contentType="text/html"%> <[EMAIL PROTECTED] pageEncoding="UTF-8"%> <%-- I18N Formatting --%> <%@ taglib uri="http://java.sun.com/jstl/fmt"; prefix="fmt" %>

Re: Start and Stop Tomcat

2004-05-05 Thread Eric Noel
On 5/6/2004 3:28 AM, Merrill, Roxann wrote: I am looking for the correct and best way to stop and start Tomcat 4.0.6 when using IIS as the Webserver. I am new to Webserver and Servlet container so help information is welcome. Thanks Roxann L. Merrill if its installed as a service you can start/s

Re: links encoding issue

2004-05-05 Thread Eric Noel
On 5/5/2004 8:31 PM, Edson Alves Pereira wrote: Take care with URL encoding, you must convert your values based on correct URL encoding, for example: space is %20, ü is %FC, it´s just hex based numbers. This page can show you more information about it: http://www.blooberry.com/inde

Re: useBean action from JSP 1.2 to 2.0

2004-05-04 Thread Eric Noel
On 5/4/2004 5:26 PM, Jason Novotny wrote: Hi, In upgrading my webapp from using Tomcat 4 (JSP 1.2) to Tomcat 5 (JSP 2.0) I'm seeing some errors in some of the JSP pages. I have jsp actions like: where in the Java code prior to invoking the JSP I put the "locale" Locale object in the reque

Re: ?how configure tomcat to auto startup in linux?

2004-05-03 Thread Eric Noel
maybe this will help #copy/modify the tomcat5.sh included in the jsvc.tar.gz\jsvc-src\native folder to /etc/init.d/tomcat5 #make sure it is executable (chmod a+x). #if rh #chkconfig tomcat5 on #service tomcat5 start #if debian #update-rc.d tomcat5 start 90 2 3 4 5 . stop 21 0 1 6 . #/etc

Re: Setting classpath out of the webapp directory

2004-05-03 Thread Eric Noel
On 5/3/2004 4:26 PM, Honza Spurný wrote: Hi there, I'have been trying to set the classpath of the webapp out of the directory of this webapp. This is for me little important, since some classes I'd like to use (I have to use) in other webapps. I want to have only one file of this class -- I don't

Re: Please help on my DB pool problem --- I followed the struction on the web

2004-05-02 Thread Eric Noel
On 5/3/2004 9:31 AM, Daxin Zuo wrote: I thought Microsoft was the best. if thats what you think, i guess you should stick with dotNet since with that you will have an all microsoft retrofitted program (e.g drivers, components, etc) :-) My jsp file is in tomcat\webapps\ROOT\zuo. In my tomcat\web

Re: Please help on my DB pool problem --- I followed the struction on the web

2004-05-02 Thread Eric Noel
why not use jtds instead http://jtds.sourceforge.net/ ## download the jtds jar http://heanet.dl.sourceforge.net/sourceforge/jtds/jtds-0.7.1.jar ## place it in your common/lib ## server.xml factory org.apache.commons.dbcp.BasicDataSourceFactory maxActive

OT: Open Source JSP / Taglib Calendar

2004-04-22 Thread Eric Noel
Any one here knows of a good Open source Calendar either jsp or taglib? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: EL Configuration problem

2004-04-21 Thread Eric Noel
On 4/22/2004 8:54 AM, Chanan Braunstein wrote: Well as for the code that is easy, nothing works, for example, I took this from the examples page: ${header["user-agent"]} I attached my web.xml, I don't know what else can effect EL. Chanan Braunstein Knovel Corp. Web Development Manager 607-77

Re: Apache 1.3 and Tomcat 4.1: Newbie

2004-04-21 Thread Eric Noel
On 4/22/2004 7:38 AM, Malathi Jivan wrote: Hi All, Being a newbie, I wanted to clarify that I am doing the right thing. 0. mod jk 1.2 is what I need, right? ( To connect Apache 1.3 and Tomcat 4.1) 1. I still need to use worker.properties not jk2.properties correct? 2. The module name is still jk_mo

Re: EL Configuration problem

2004-04-21 Thread Eric Noel
On 4/22/2004 4:10 AM, Chanan Braunstein wrote: Hello, Using Tomcat 5.0.19 I cannot get EL to work in my webapp (It works fine in jsp-examples). I checked the version of web.xml to make sure it is 2.4 and I added to be safe: *.jsp false But,

Re: Tomcat4x Development Process

2004-04-19 Thread Eric Noel
On 4/20/2004 6:27 AM, Mark Thomas wrote: Look at the reloadable attribute. I use MyEclipse which takes a lot of the pain out of this sort of thing. Mark -Original Message- From: Duncan Krebs [mailto:[EMAIL PROTECTED] Sent: Monday, April 19, 2004 7:26 PM To: Tomcat Users List Subject:

Re: [OT] Pager Tag Library v2.0 usage w/Tomcat 5

2004-04-18 Thread Eric Noel
On 4/17/2004 10:05 AM, Tom K wrote: I have pagination working with Tomcat 5 through a bean. I like the “flexible” features that Pager Tag Library v2.0 has and would like to implement it in my jsp. I know I have everything configured correctly because I can get the paging to display but not more to

Re: jk connector build / configure failure

2004-04-15 Thread Eric Noel
On 4/15/2004 10:28 PM, C. Kukulies wrote: In the vein of getting tomcat 5 apache 1.3.29 integration working I'm now at the point where I came to the conclusion that I need to build jakarta-tomcat-connectors-jk-1.2.5-src/jk/native Correct me if I'm wrong but I came there by reading and skimming the

re: Tomcat 5 clustering question...

2004-04-14 Thread Spiegelberg, Eric
. Thanks, Eric - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Tomcat 5 clustering question...

2004-04-14 Thread Spiegelberg, Eric
? Thank you in advance, Eric - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Apache 1.3.x / Tomcat 5.0.x Process .jsp on Web Root Directory

2004-04-14 Thread Eric Noel
Ive managed to use modjk to link tomcat & apache and let tomcat process all .jsp from tomcat/webapps/* but what configuration do i need if i want to let apache process *.jsp from the apache's webroot (e.g. /var/www/html). Whenever i put any jsp page on apache root directory, it doesnt process t

[NEWBIE] Setting up a JDBC Realm and using RequestDispatcher

2004-04-06 Thread Eric Vogue
part of the web.xml) For the moment, what I get is: #1 and #2 are done correctly, then the RequestDispatcher send me to the secured page without asking for login. Thanks in advance!! Eric - Do you Yahoo!? Yahoo! Finance Tax Center - File online. File on time.

question about jsp:element and jsp:attribute

2004-04-06 Thread Eric Suen
Hi Is the following code correct? widths[i] if (bgColors[i] != null) { bgColors[i] } tomcat can run, but the generated java code is not correct: out = _jspx_page_context.pushBody(); out.print(widths[i]); String _jspx_temp0 = ((javax.servlet.jsp.tag

Only Tomcat multi instances!

2004-04-04 Thread eric sato
hi all, If anyone of u know this, pls do help. Thanks. i would like to have a main Tomcat, tomcatIntance1 and tomcatInstance2 running. Which end user only see Tomcat running. i would like this design without any Apache or IIS involved. I guess something to do with jk2.properties and server.xml

Only Tomcat for multi instances!

2004-04-04 Thread eric sato
hi all, If anyone of u know this, pls do help. Thanks. i would like to have a main Tomcat, tomcatIntance1 and tomcatInstance2 running. Which end user only see Tomcat running. i would like this design without any Apache or IIS involved. i guess i need to configure the jk2.properties and server.x

Re: connexion tomcat/mysql: IP vs localhost

2004-03-29 Thread eric sato
try here http://jakarta.apache.org/site/mail2.html#Tomcat - Original Message - From: [EMAIL PROTECTED] Date: Tuesday, March 30, 2004 0:41 am Subject: Re: connexion tomcat/mysql: IP vs localhost > How do I unsubscribe from this mail group, as I keep getting mails > every > to minutes? >

Multiple instance in Single DBCP

2004-03-29 Thread eric sato
hi all, Currently Tomcat is running in multiple instances. Each of the instance has its own Database Connection Pool(DBCP). How do i configure/make changes in order only has a single DBCP in multiple tomcat instances? It allows me more efficient to manage DB connection. Pls advise if you know th

Esoteric class loading question/loading constraints/loader constraints

2004-03-24 Thread Eric M. Kascic
I am somewhat stupified by some class loading results I am seeing from Tomcat. If I put some class X that refers to class Y in my servlet jar, the WebappClassLoader loads X. I DO NOT put class Y in my servlet.jar. Instead, I put class Y in a jar that is put in common/lib. When Y is finally loade

Re: Configure Apache for running Perl(cgi)

2004-03-18 Thread Jonathan Eric Miller
The reason I'm using it is because I have an application that is a CGI that generates Web server statistics. This is the only application that I'm using CGI for. To run Apache HTTP server would make things unnecessarily complex. Enabling CGI in Tomcat is trivial. i.e. Uncommenting a few lines in a

Re: Configure Apache for running Perl(cgi)

2004-03-18 Thread Jonathan Eric Miller
He said Apache Tomcat in his message. Tomcat supports running CGIs natively in standalone mode without having to use Apache HTTP server. One thing to watch out for is that Tomcat 5.0.16 had a bug in the CGIServlet. This is fixed in 5.0.18, so, be sure to use the latest version of Tomcat 5 if you a

<    1   2   3   4   5   6   7   8   9   10   >