Re: possibility of different classpaths under the same web application

2006-10-17 Thread David Smith
. --David Rocky Agrawal wrote: Hi everyone, I have a web application in which I have different user domains/groups. There are some classes, which are customized according to the user groups/domain with the same quantified class name, but in different jar files. Based on the login information, I

Re: new tomcat installation failes to start

2006-10-18 Thread David Smith
long in your install. --David Assaf Flatto wrote: David #rpm -qa *sun-compat* java-1.4.2-sun-compat-1.4.2.10-1jpp As you can see the compat rpm is installed. Assaf David Smith wrote: These messages make me think you are trying to run tomcat 5.5 on a 1.4.x JVM. If so, download and instal

Re: Database connection pooling errors in Tomcat 5.5.17

2006-10-18 Thread David Smith
The "normal method" uses DriverManager.getConnection() which appears to cast a wider net in resolving database URLs. Maybe someone who's seen the DriverManager class source can comment? --David Saurabh Nanda wrote: Thanks. I got it working: 1. Removed the oracle driver f

Re: After stopping tomcat, the tomcat process still appears to be running

2006-10-18 Thread David Smith
mcat won't exit until the threads are properly cleaned up. --David Tomas Hulek wrote: AFAIK Tomcat does not call System.exit() - at least did not in version 4.1.*, when we solved the very s

Re: load files on tomcat

2006-10-18 Thread David Smith
e second returns an input stream you can use directly. --David harl3kin wrote: Hey again, thanks for your replies. I just want to read the resource file and I tried the getResource() method, it can't find the resource though. When I get the absolute path of the context, I receive the file

Re: Confused about getRemoteUser and Apache authentication

2006-10-18 Thread David Smith
together. You could try it. My suspicion is it should work. --David Joe Pluta wrote: I am trying to authenticate via Apache and use getRemoteUser in Tomcat. I want to serve static pages via Apache and run a web application through Tomcat. I am receiving a null for getRemoteUser in my si

Re: Confused about getRemoteUser and Apache authentication

2006-10-18 Thread David Smith
Not a problem. We have a custom auth module for Apache httpd, no equivalent for tomcat :-( where we need to do exactly this. --David Joe Pluta wrote: Thanks, David. I swear I tried that on one of my attempts, but evidently I didn't save the file or didn't bounce the server or

Re: problem in getting database connection from remote machine using JNDI

2005-10-26 Thread David Delbecq
Just my 2 cents Mysql does authentification not based on username:password but based on [EMAIL PROTECTED]:password Possible the selected user is allowed only for localhost or, even better, that mysql does not listen on any interface other than localhost (default configuration for security reasons)

Re: Tomcat User Permession

2005-10-27 Thread David Delbecq
y-constraint in the web.xml (see http://e-docs.bea.com/wls/docs81/webapp/web_xml.html#1017885) Once again, tomcat is a java web applications server, not a webserver serving static content. If you want to server static content, apache web srver would better suit your needs. regards, David Delbecq

Re: How to share resources across two applications

2005-10-27 Thread David Delbecq
Hi, maybe the problem is not were we thought it was. If you get a NullPointerException a (1) (i mean not somewhere deeper inside 1 but exactly at 1), that can only mean getServletContext() returned false. This may be the case if servelt was not properly initialized. Check your init(ServletConfig co

Re: static server implementation?

2005-10-27 Thread David Smith
SSL content and the user has to configure it to behave otherwise. Nothing in the response will change that. Otherwise, a simple servlet should be able to do what you are asking without a problem and without all the forwarding/redirecting/request wrapping complexity. --David Maurice Yarrow

Re: static server implementation?

2005-10-27 Thread David Rees
On 10/27/05, Leon Rosenberg <[EMAIL PROTECTED]> wrote: > > You simply can't rely on browser caching behaving. Especially https > caching. Firefox / Galleon cache everything they can get, this is > really ugly, especially if the cache dynamical content with all > headers set (I've seen versions of m

Re: deploy a war on startup

2005-10-27 Thread David Delbecq
Try removing webapps/webAppName/ and work/Catalina/Hostname/webAppName directories. I don't know if it is a recommanded way, but it give tomcat no other choice than exploding the war again :) Iratxe Etxeberria Sainz-Ezquerra a écrit : > > > > >Hello! >I am using tomcat 5.0.28. When we have the

Re: static server implementation?

2005-10-29 Thread David Rees
On 10/27/05, Maurice Yarrow <[EMAIL PROTECTED]> wrote: > (For Internet Explorer:) > Do you happen to know which are the "right headers" to set, > especially for images ?? If not, maybe you could point me > to a good source of info for caching rules for IE. Use these links for further reading: ht

TC 5.5 practical limit on number of webapps it can support

2005-10-29 Thread David Wall
ks or other issues I need to be aware of? Each web app will likely be pretty small (2-10 web pages), with some having its own database while others having no database. Thanks, David - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: TC 5.5 practical limit on number of webapps it can support

2005-10-29 Thread David Wall
start them, though I've not tried doing as many as 10 redeploys without TC having also been restarted. Thanks, David - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: TC 5.5 practical limit on number of webapps it can support

2005-10-29 Thread David Kerber
al Message----- From: David Wall [mailto:[EMAIL PROTECTED] Sent: Saturday, October 29, 2005 11:41 AM To: Tomcat Users List Subject: TC 5.5 practical limit on number of webapps it can support Is there any practical limit to the number of webapps I can run in a single instance of TC 5.5? We would like

Re: TC 5.5 practical limit on number of webapps it can support

2005-10-30 Thread David Wall
F/classes area, with the choice most likely depending on whether the webapp has lots of classes or not. David - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

OT: Tomcat/JVM dump

2005-10-31 Thread David Boyer
We have a Tomcat app that is hanging every 3-4 days. I know this is off-topic, but I'd appreciate any help in resolving this. I've posted the JVM dump on my web page at http://web.bvu.edu/staff/david/jvmdmp.txt Additional details: JDK 1.4.2_08 on Windows Server 2003 Enterprise, Tom

Re: OT: Tomcat/JVM dump

2005-10-31 Thread David Boyer
you already upgraded to the latest version of to c3p0? I experienced hangs with an older version of c3p0 (0.8.4.5?), too. David Boyer wrote: > We have a Tomcat app that is hanging every 3-4 days. I know this is > off-topic, but I'd appreciate any help in resolving this. I've posted

Re: question about web-inf/lib

2005-11-02 Thread David Kerber
John MccLain wrote: we currently have 1 project in tomcat webapps dir. We want to add another project there. The problemn is that we would like to have both projects' web-inf/lib populated with the same set of libraries (jar files). When we kick off Tomcat with this configuration,The second cont

Problem when going to my "default" web site

2005-11-04 Thread David Thielen
weird error http://www.windwardreports.com <http://www.windwardreports.com/> - works (based on header) Any idea why this would happen? Thanks - dave David Thielen <http://www.windwardreports.com> www.windwardreports.com 303-499-2544

Asking again: Problem when going to my "default" web site

2005-11-06 Thread David Thielen
Hi; I have IIS and Tomcat and except for this one problem, it is working fine. IIS has 18 websites that are all the same IP address and requests are routed to each based on the header. These all work fine, both htm and jsp. If the requesting header does not match any of those specified for the 1

Re: j_security_check event?=20

2005-11-08 Thread David Smith
You could just have a filter watch request.getRemoteUser(). When it returns a not empty string, check for the other stuff (cookies, session info, etc., ...) and add as necessary. --David [EMAIL PROTECTED] wrote: Hi everyone, first of all i would like to thanks you guys out there who help

Re: Tomcat 5.0 : howto make a webapp the ROOT webapp the proper way

2005-11-08 Thread David Smith
To answer the question, yes. Any webapp in the webapps folder named ROOT will become the root app. --David Caldarale, Charles R wrote: From: Francis Galiegue [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat 5.0 : howto make a webapp the ROOT webapp the proper way Will renaming the directory

Re: Tomcat 5.0 : howto make a webapp the ROOT webapp the proper way

2005-11-08 Thread David Smith
in config/Catalina/localhost with a tag that looks something like: --David MC Moisei wrote: That implies that I can have more than one application in ROOT folder...that would require some URL filtering in each app. Also if I look under webapps/ROOT folder there is a WEB-INF in there...

Re: ports 8007 and 8009 dosn't coming up

2005-11-09 Thread David Smith
I would imagine the catalina.out log should have some relevant info. Those connector configs look really old. What version of Tomcat are you working with? --David jane wrote: Is there anyone who can help me to bring this connectors up? On Wednesday 09 November 2005 10:30, Janem wrote

Re: ports 8007 and 8009 dosn't coming up

2005-11-10 Thread David Smith
I say old because I don't think the org.apache.tomcat.* package name has been used since tomcat 3 days. You might want to take a very close look at the Tomcat 4 documentation for getting AJP 13 connector running. --David jane wrote: Hi Thank's for replying. How do you mean it&#x

Re: tomcat 5.5.9 basic config

2005-11-13 Thread David Smith
Just finish the docBase attribute as in: --David Michael Chaplin wrote: I'm stumped on a simple issue. I have only one webapp in my tomcat5/webapps directory called "crypto" my context tags within the host tag of my server.xml is: I would expect that b

Re: default security w/TC4+ tips

2005-11-21 Thread David Smith
combination of reviewing/testing the web application code and running with a security manager turned on to limit exposure of the tomcat-users.xml file. Essentially only the core tomcat code and possibly the admin webapp needs ever be able to read that info. --David Chris Pat wrote: Hello If I

Re: Servlets (total beginner)

2005-11-22 Thread David Rickard
am I doing wrong? Do I have to edit web.xml in order to inform Tomcat that I have deployed new servlet? While testing JSPs I didn't had to do this for new JSP page. Btw, is there a good tutorial (or tool) about configuring web.xml file? -- David Rickard Software Engineer TechBooks/GTS

Re: SSL Certificate Beginner Question

2005-11-29 Thread David Wall
n your webapp): (after any servlet-mapping XML elements, before the session-config and/or welcome-file-list XML elements of web-app element in WEB-INF/web.xml) Entire site /* GET POST CONFIDENTIAL Hope that helps... David

Re: SSL Certificate Beginner Question

2005-11-30 Thread David Wall
element that causes Tomcat to automatically issue a redirect using https:// (in production, this is typically set to redirectPort="443" for standard HTTPS). But if you just say https:// or https://:8443, then it should let you test before t

Re: Deploying Servlet Project from Windows to Fedora

2005-12-01 Thread David Delbecq
PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- David Delbecq Royal Meteorological Institute of Belgium - Pingouins dans les champs, hiver méchant - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Deploying Servlet Project from Windows to Fedora

2005-12-01 Thread David Smith
, but Linux isn't. 32 vs. 64 bit won't make a difference. Also take a look at your catalina.out and other log files for exceptions during startup/deployment. They can point you in the right direction. --David Aydın Toprak wrote: but The system works fine under Windows ... I

how to get jboss jndi in tomcat5.x

2005-12-01 Thread David Chen
for me. However, just wonder if any other options to set up jndi resource for my web application to talk to jboss without changing my source code? Any sample example about how to create such kind of jndi resource in ? Thanks a lot in advance, highly appreciated any suggestion. David

Re: Please Help Me

2005-12-02 Thread David Delbecq
Make it your home page! > http://www.yahoo.com/r/hs > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- David Delbecq Royal Meteo

Help needed to set tomcat5.0.28 and IIS 5

2005-12-02 Thread David Chen
idate failed for testWorker [Fri Dec 02 17:19:02 2005] [1260:1744] [error] jk_worker.c (256): failed to create worker testWorker Thanks a lot for any comments or suggestions. David

RE: Help needed to set tomcat5.0.28 and IIS 5

2005-12-02 Thread David Chen
mples/index.html] is a servlet url - should redirect to testWorker So, it seems redirect to my testWorker fine. Anyone knows what the problem is it? Thanks a lot again David -Original Message- From: David Chen [mailto:[EMAIL PROTECTED] Sent: Friday, December 02, 2005 5:25 PM To: users@to

Re: reason for beta vote (5.5.13)?

2005-12-05 Thread David Smith
ed stable in a couple of weeks. --David Ronald Klop wrote: Hello, I'm searching the net for a message with the reason for the beta status of 5.5.13 in stead of stable. And I can't really find it. Any pointers? Ronald. --

How can I get TomCat5.0.28 use JK1.2

2005-12-05 Thread David Chen
s: how can I set up TomCat5.0.28 to use JK1.2.15? By the way did anyone get TomCat5.0.28 + JK1.2.15 + IIS 5 working? Could you please share some of your experience? Thanks a lot in advance, highly appreciated any comments or suggestions. David

Re: Question concerning java.lang.NoClassDefFoundError: javax/servlet/ServletContext

2005-12-06 Thread David Smith
I take it you also included j2ee.jar in that search? --David Armand Rock wrote: Hi, I'm getting the same error. I searched my entire computer for any jar/zip files containing javax.servlet.ServletContext and renamed all of them to ".original" so that they wouldn't be rea

RE: Re: How can I get TomCat5.0.28 use JK1.2

2005-12-06 Thread David Chen
Thank you Bill for clarifying. -Original Message- From: news [mailto:[EMAIL PROTECTED] Sent: Monday, December 05, 2005 10:25 PM To: users@tomcat.apache.org Subject: Re: How can I get TomCat5.0.28 use JK1.2 "David Chen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL

What's the difference between .zip and .exe from download site?

2005-12-06 Thread David Chen
?). Anything else besides? So, then what is that .zip download for? In which scenarios we should use .zip instead of .exe to install TomCat on Windows system? Thanks a lot David

Did any one get TomCat5.0.28 + IIS 5 + JK1.2 work

2005-12-06 Thread David Chen
is if any one get TomCat5.0.28 work with IIS 5 by using JK1.2? if so, could you please share some of your experience? Thanks a lot David

RE: Did any one get TomCat5.0.28 + IIS 5 + JK1.2 work

2005-12-06 Thread David Chen
Thank you Carl, because our potential customer is using IIS as their web server, so, the first thing to persuade them to buy our web applications built from java servlets is to show them that they can still live with IIS. Thanks a lot David -Original Message- From: Carl Olivier [mailto

RE: What's the difference between .zip and .exe from download sit e?

2005-12-06 Thread David Chen
those registry keys ourselves if using .zip download. Thanks a lot David -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 06, 2005 5:14 PM To: Tomcat Users List Subject: RE: What's the difference between .zip and .exe from download

RE: What's the difference between .zip and .exe from download sit e?

2005-12-06 Thread David Chen
I see, thanks a lot again. I'll give it a try. Thanks David -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 06, 2005 5:31 PM To: Tomcat Users List Subject: RE: What's the difference between .zip and .exe from download sit

Re: how to better save a trans in DBCP?

2005-12-07 Thread David Smith
No. Connection.close only returns the connection to the pool so it can be used by another request. --David pc leung wrote: Will a Connection.close() close a connection and decrease the number of connections in connection pool? Connection con = null; try { ds = (DataSource

Re: Question concerning java.lang.NoClassDefFoundError: javax/servlet/ServletContext

2005-12-07 Thread David Smith
Tell me more about this ClassFinder class. It's not a part of Java's API and I'm wondering if it's not running it's own classloader independant of tomcat's classloader mechanism. --David John Poley wrote: Thank you for your comments thus far. I have been unable t

Re: Question concerning java.lang.NoClassDefFoundError: javax/servlet/ServletContext

2005-12-08 Thread David Smith
to comment on this? --David Armand Rock wrote: I personally have not changed any classpath settings. The classes are build using Eclipse SDK Version 3.1.1 with the Tomcat plugin from sysdeo (3.1.0.beta). I have noticed that the NoClassDefFoundError occurs on specific pages but only the first time

Re: Multiple thread pools in Tomcat 5.5

2005-12-09 Thread David Kerber
Mikolaj Rydzewski wrote: Kirk Gray wrote: This e-mail is intended only for the personal and confidential use of the recipient(s) named above. It may include Blackboard confidential and proprietary information, and is not for redistribution. I wonder if you'll bue sued because this email is

Re: Selective auto-deploy of web-apps?

2005-12-09 Thread David Smith
Or IMHO, use a request filter to check for the database and then redirect the use to a "not available" or "out of order" page. This can easily happen before any processing starts and the servlet need not be any the wiser. --David Michael Hackett wrote: Quoting &

Re: Please respond to my query --- in need of help badly!!

2005-12-12 Thread David Smith
manager, check it's settings. --David Nehal Sangoi wrote: >Hi, > >I am facing problems while opening lookups for another tomcat instance thru >apache url of one tomcat instance. Here is, what i am doing -- > >Logon to apache url of one tomcat instance. >click on lookup --

RE: Help needed to set tomcat5.0.28 and IIS 5

2005-12-12 Thread David Chen
Hi, there: Actually, no response so far for uring JK1.2 connector to integrate tomcat 5.0.28 with IIS 5. However, by using JK2 connector (which was deprecated), I got tomcat 5.0.28 and IIS 5 working together fine. So, currently, we just using JK2 instead of JK1.2 Thanks a lot David

Tomcat change in PageContextImpl.setAttribute from 4.1.30 to 4.1.31 makes 4.1.31 unusable... please confirm if it`s a bug ?????

2005-12-12 Thread David Gagnon
on what I can do? Or where I'm wrong? Thanks for your help! /David 4.1.31: public void setAttribute(String name, Object o, int scope) { if (name == null) { throw new NullPointerException("name may not be null"); } if (o == null) {

Re: Tomcat change in PageContextImpl.setAttribute from 4.1.30 to 4.1.31 makes 4.1.31 unusable... please confirm if it`s a bug ?????

2005-12-12 Thread David Gagnon
Hi As state in the javadoc it should throw NullPointerException if name is null (wich make sense). But in the code they also throw an exception if the the value (o) is null! Regards /David setAttribute public abstract void *setAttribute*(java.lang.String name

Re: Servlet with URL pattern "*." is not working.

2005-12-12 Thread David Smith
That's true if the web.xml file validates against the servlet spec 2.3 dtd instead of the servlet spec 2.4 schema. tomcat 5.0 and up supports servlet spec 2.4 which allows for elements to be out of order. --David Martin Gainty wrote: > Akhthar > I thought the servlet / se

Re: Tomcat change in PageContextImpl.setAttribute from 4.1.30 to 4.1.31 makes 4.1.31 unusable... please confirm if it`s a bug ?????

2005-12-12 Thread David Gagnon
tead and everything works perfectly. Thanks for your help /David On 12/12/05, David Gagnon <[EMAIL PROTECTED]> wrote: Hi As state in the javadoc it should throw NullPointerException if name is null (wich make sense). But in the code they also throw an exception if the the v

Re: Securing File System Resources ?

2005-12-13 Thread David Smith
the flag, redirects the user to a friendly error page. -David Dov Rosenberg wrote: >Our application has its own security model that controls access to our >information based on our own roles and permissions. We store files related >to our application on the file system where our appli

Trying to use Tomcat Servlet for Proxy Server - problem with HTTPS pages

2005-12-13 Thread David Stidolph
block in the server.xml file and creating the key. By description, it should work, but doGet in my servlet never gets called. I do not know if the problem is in my Tomcat settings or my IE settings. Any suggestions would be most welcome - I'm really stumped. I'll provide any details sugges

Re: Tomcat 5 error 404

2005-12-14 Thread David Smith
You should be able to find more info for this problem in the logs. Catalina.out in particular should be able to shed some light. Take a look and post any relevant exceptions. --David Bliesner, Christopher P wrote: Hello, I am currently using Tomcat 5.0.28 on Unix and I have been able to

Re: Tomcat 5 error 404

2005-12-14 Thread David Smith
Curious it isn't mentioned at all -- not even as a deploy failure. Is there a manager.xml file in conf/Catalina/localhost? If it's missing, that could explain this behavior. Also check to see if the manager webapp is installed in server/webapps. --David Bliesner, Christoph

Re: Most recent timestamp value of files in folder in UNIX

2005-12-15 Thread David Rickard
nator.(17b) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- David Rickard Software Engineer TechBooks/GTS Your Single Source Solution! Los Angeles CA * York, PA * Boston,MA * New Delhi, India Visit us on the World Wide

Re: Many questions are left unanswered.

2005-12-16 Thread David Delbecq
, Bharathi a écrit : > Hi Mark, > > Many questions in this forum are left unanswered . It would be > nice if I , atleast, get a "don't know" answer to some of my mails! > > Thanks & Regards, > Prathibha. > -- David Delbecq Royal Meteor

Re: Tomcat and iptables?

2005-12-16 Thread David Smith
Look at the connectors you have enabled in server.xml. All those should be included. The shutdown port does not need to be included since it binds to localhost. -- David Sebastian Funk wrote: Hi, I've run a Tomcat-server and it worked fine. Now I've installed "iptables&q

Re: Help, Tomcat 4.1.31 no response

2005-12-17 Thread David Smith
Have you taken a look at your log files? It could be a memory leak in your app as well. -- David zhang chao wrote: > My Operating System: RedHat 9 > JVM version: j2sdk 1.4.2_09 > Tomcat: tomcat 4.1.31 > Hardware configuration: Dual PIII 1G, 512MB memory > users: about 30 &

Tomcat 4.1.31, Weird problem. Once in a while an attribute in the session is not found... look like a RACE?! Is that possible????

2005-12-19 Thread David Gagnon
Hi all, I have a really wreird problem. I have a web site and I get a NullPointerException once in a while because the WcPresentationConstants.CURRENT_RESOURCE is null. UkResource resource = (UkResource) param.request.getSession().getAttribute(WcPresentationConstants.CURRENT_RESOURCE); But this

Re: Tomcat 4.1.31, Weird problem. Once in a while an attribute in the session is not found... look like a RACE?! Is that possible????

2005-12-19 Thread David Gagnon
Hi, In catalina.out I get nothing more than the null pointer exception. I also included the log from localhost_log.2005-12-15 where we can see the actual request. Thanks for you help! Regards /David localhost_log.2005-12-15 2005-12-15 15:19:56 StandardContext[/webCatalog

Re: Tomcat 4.1.31, Weird problem. Once in a while an attribute i n the session is not found... look like a RACE?! Is that possible????

2005-12-19 Thread David Gagnon
Hum I tried and haven't be able to reproduce.. but so far that the best explanation about what can cause the race... Thanks I will put some code in to avoid double submit! Regards /David Tobias Meyer wrote: >Just a thought - What would happen to your application if the user >double-

Re: tomcat 5.x context path priority

2005-12-20 Thread David Smith
hat's chosen. --David foo java wrote: Hi, I am trying to find a "documented" solution for one of my problems with tomcat contexts. I would like to ask about the tomcat servlet container( 5.x) and it's prioritised handling of the context paths in the following situati

Re: Please Help! Error in using Packages

2005-12-20 Thread David Smith
org/tomcat-4.1-doc/appdev/index.html Here's a page that describes the element you need to write into server.xml: http://tomcat.apache.org/tomcat-4.1-doc/config/context.html In general, the docs on the tomcat site are fairly complete and should be used along with your book. --David T

Re: tomcat 5.x context path priority

2005-12-20 Thread David Smith
Just looking up some other info, I ran accross this which directly answers your question: http://tomcat.apache.org/tomcat-5.5-doc/config/context.html --David David Smith wrote: I'm not sure there is a documented spec on this at the container (tomcat) level. One of the tomcat devel

Re: how are relative pages/images retrieved?

2005-12-20 Thread David Smith
ath. This must be written in some RFC if you're interested. > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > Yes. Specifically the HTML spec 4.0

Re: tomcat 5.x context path priority

2005-12-21 Thread David Smith
t path is simply "" while the admin webapp's context path is "/admin". Admin being the longest match wins. By extension if you had a context named admins and the request is to /admins/index.html, it would go to the admins context instead of the admin context. Again, longe

Re: Tomcat undeploys application(context)

2005-12-22 Thread David Smith
I've always used the manager app to stop/start the webapps when doing updates of classes and jars. Never had a problem. You'll still have to restart tomcat if you update anything in the common or shared directories of tomcat. --David BATCHELOR, SCOTT (CONTRACTOR) wrote: Dariu

Re: hex dump

2006-01-04 Thread David Delbecq
Yahoo! DSL – Something to write home about. > Just $16.99/mo. or less. > dsl.yahoo.com > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] &

Re: Configuration Question

2006-01-04 Thread David Delbecq
permanently' response. > Many thanks, > > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- David Delbecq Royal Meteorolo

Re: Comparing Tomcat Performance on Windows vs. Linux

2006-01-05 Thread David Kerber
Ours is more of a small-to-medium environment than it is enterprise, but we put antivirus on our servers... Tim Funk wrote: Interesting. In enterprise environments, I also hear it common to see antivirus software also run on windows servers too. (Yes, you read that correctly) I'd be curious t

Re: Migration

2006-01-06 Thread David Delbecq
ding this. > > Thanks > > > > > > Send instant messages to your online friends http://in.messenger.yahoo.com -- David Delbecq Royal Meteorological Institute of Belgium - Pingouins dans les champs, hiver méchant ---

Re: accessing port 8443 with http

2006-01-06 Thread David Smith
27;s public key certificate. --David Patrick S Ward wrote: I have a Tomcat 5.5.9 web application server running on a webserver listening on port 8443. Why is it that when I access http://:8443, I am prompted to download a file of the format application/octet-stream from any browser from any platfor

Re: Single Thread is deprecated?

2006-01-06 Thread David Kerber
Christian Stalp wrote: Remy Maucherat wrote: It's deprecated because it is confusing, but it is actually very useful performance wise in some cases, since it does pooling. I will make sure this feature remains available in the future. That means, I still can use it?! Deprecated is not proh

Re: war file deployment question

2006-01-06 Thread David Smith
These methods allow you to use context relative paths to resources. --David Jignesh Shah wrote: Hi, I have a war file that works fine under JRun and Jetty. Now when I deploy it under $CATALINA_HOME/webapps directory, the war file creates its usual tree under webapps. Now this is what it looks

Re: war file deployment question

2006-01-06 Thread David Smith
ealPath() to get the file system absolute path to a resource in your webapp, but that only works if the webapp is not being executed from a .war file. --David Jignesh Shah wrote: Yes David, I do use relative path in my jsp's. What wonders me is I have lots of images in the images directo

apache mod_jk tomcat, 404 errors

2006-01-09 Thread David Isaacson
me know if you need more info Thanks in advance David Isaacson Apache config: ServerName www.abc.com ServerAlias abc.com DirectoryIndex index.jsp index.html DocumentRoot /mnt/nas/static JkMount /*.jsp abc JkMount /servlet/* abc JkMount /*.do abc workers.properties: worker.list=

Re: Concept for modeling hierarchical data

2006-01-10 Thread David Smith
abbit project is one implementation of it and currently used in the Magnolia CMS. JSR-170 spec: http://www.jcp.org/en/jsr/detail?id=170 Jackrabbit project: http://incubator.apache.org/projects/jackrabbit.html Magnolia CMS: http://www.magnolia.info --

Re: Session from a tag

2006-01-11 Thread David Delbecq
I have a bean stored there > that I want to use in my tag. How can I retrieve this. I can't find this > information anywhere. > > Thanks. > > Thom Hehl > Heavyweight Software for Heavyweight Needs > www.heavyweightsoftware.com -- David Delbecq Roya

Re: Session from a tag

2006-01-11 Thread David Delbecq
getJspContext().getAttribute("someKey",PageContext.SESSION_SCOPE) Le Mercredi 11 Janvier 2006 16:19, Thom Hehl a écrit : > This explains the code I found. What if you extend SimpleTagSupport. > What's the difference? > > David Delbecq wrote: > > >to expose

Re: Tomcat integegrated with Apache

2006-01-12 Thread David Smith
Perl) and the tomcat content is only a small part of the overall site design. --David Pete Alvin wrote: Thanks for that advice! Sounds like I need to run the compat thing to get Tomcat5.5 to work with 1.4.2. NEW QUESTION: I'm trying to get Tomcat running on a new BSD box and my IT guys

Tomcat 5.5 system requirements

2006-01-12 Thread David Schwartz
Is there a list of Tomcat 5.5 system requirements for a windows based install? David Schwartz - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: forwarding JDOM-Objects

2006-01-13 Thread David Delbecq
WorkerThread.java:80) > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684) > > Is this caused by the single thread? I wortk with Eclipse, and this has no problem finding a class. Hmmm but maybe tomcat. > Anyway I send this mail away. > &

java.net.BindException issue

2006-01-13 Thread David McMinn
I tried installing the latest version and received this error message in the logs: :SEVERE: Error starting endpoint java.net.BindException: Address already in use: JVM_Bind What should I do now? David

Re: unpack war

2006-01-17 Thread David Delbecq
log." suffix=".txt" > timestamp="true"/> > > > > so what's going wrong here. > > regards, > Mahesh Bhandare > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] >

Re: Dynamic Datasource Configuration - JNDI read only context

2006-01-17 Thread David Smith
ng it from there as needed. --David Rob Gregory wrote: Hi Guys and thanks in advance for any pointers. I am running Tomcat 5.5.9 and would like to remove the need to specify database configuration details within the context.xml file e.g. I need to provide (apache commons db) datasource

Re: Encrypting/Protecting JSP/Struts source code

2006-01-17 Thread David Smith
;s harder although not impossible for a less than honorable admin to reverse engineer. One of the benefits to this is there is no delay on the first request to a JSP because the server is compiling it. That's a big plus even if you aren't concerned with releasing source code. --Da

JNDI-based c3p0 pool in META-INF/context.xml not releasing resources?

2006-01-17 Thread David Perkowski
I have outlined here. Can anyone offer suggestions, or share experiences that could illuminate a path forward? Thanks very much. David - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Does tomcat 5.0 officially support JDK1.5?

2006-01-18 Thread David Smith
mbination. It should work fine. --David - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: how to configure the tomcat 5.5.12 for a port 80 in linux (Gentoo)??

2006-01-19 Thread David Smith
inaries for some platforms on the website: http://jakarta.apache.org/commons/daemon --David - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Database Connectivity of JSP(Tomcat 4.x) with Oracle 8i

2006-01-19 Thread David Smith
I'd recommend checking that your classes12.jar file is valid. This should work: $JAVA_HOME/bin/jar -v -t -f webapps/ROOT/WEB-INF/lib/classes12.jar It'll list the table of contents of the archive and be verbose about it. Replace -t with -x to extract files for further inspection.

Re: Oracle 8i JDBC Driver for jdk1.5?

2006-01-20 Thread David Delbecq
your PATH if you are using the JDBC OCI > driver > > but i'm not getting the info. regarding Oracle 8i JDBC Driver for jdk1.5. > > Kindly help. > > Thanks & Regards, > Vidhi > > > > -

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