getServletContext() returns / for default context defined outside of server.xml

2005-07-22 Thread Martin Bromley
Hi, I'm trying to setup the default Context for a Host, without defining it in server.xml. In conf/Catalina/localhost I've created a file named .xml, and defined the Context within it, without defining the path - I understand from the Tomcat docs that it should be inferred as . This is all

error count for http connector and localhost/ default context seem to increment for no reason: mbean bug?

2005-07-01 Thread Annie Wang
whenever i access any web application deployed on tomcat, i notice that error count for localhost/ default[/] increments (request count also increments, not sure either if request count is suppose to increment..). http connector error count also increments. i'm checking these counter values via

Re: error count for http connector and localhost/ default context seem to increment for no reason: mbean bug?

2005-07-01 Thread Mark Thomas
The errors are almost certainly 404s in response to the browser's request for favicon.ico every time you request a page. The Tomcat distro does not include a favicon.ico hence the 404 response. Mark Annie Wang wrote: whenever i access any web application deployed on tomcat, i notice that

Re: error count for http connector and localhost/ default context seem to increment for no reason: mbean bug?

2005-07-01 Thread Annie Wang
thanks mark! it's working okay now w/the favicon.ico. -annie On 7/1/05, Mark Thomas [EMAIL PROTECTED] wrote: The errors are almost certainly 404s in response to the browser's request for favicon.ico every time you request a page. The Tomcat distro does not include a favicon.ico hence the 404

Re: How do I reset the Default Context for all tomcat application in a Server Container??

2005-01-11 Thread Troy Simpson
I was afraid I was going to have to do it for each application. I was hoping that I could set a Tomcat Server Wide Base URL then let each webapp append to it. Does anyone think that this might be a benefitial feature for a future release? Thanks Troy -- Troy Simpson Applications

Re: How do I reset the Default Context for all tomcat application in a Server Container??

2005-01-11 Thread Parsons Technical Services
PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Tuesday, January 11, 2005 12:15 PM Subject: Re: How do I reset the Default Context for all tomcat application in a Server Container?? I was afraid I was going to have to do it for each application. I was hoping that I could set

How do I reset the Default Context for all tomcat application in a Server Container??

2005-01-10 Thread Troy Simpson
I have two instances of Tomcat 5.0.28 running with one instances of Apache 2.0.52. Is there a way to reset Applications Context (URL) Paths. For example, the Welcome to tomcat page is set to ROOT (http://www.domain.com/) and I would like to reset it to (http://www.domain.com/dli/) I would like

Re: How do I reset the Default Context for all tomcat application in a Server Container??

2005-01-10 Thread Parsons Technical Services
Doug - Original Message - From: Troy Simpson [EMAIL PROTECTED] To: tomcat-user tomcat-user@jakarta.apache.org Sent: Monday, January 10, 2005 9:16 PM Subject: How do I reset the Default Context for all tomcat application in a Server Container?? I have two instances of Tomcat 5.0.28

Init parameters in default context

2004-04-23 Thread Keith Hankin
I am trying to specify init context parameters in the default context in server.xml as follows: Context path= docBase=ROOT debug=0 Parameter name=configDir value=C:\config override=false/ /Context This is the only context I have listed in server.xml. Then I have my Servlet class

RE: Init parameters in default context

2004-04-23 Thread Mark Thomas
-Original Message- From: Keith Hankin [mailto:[EMAIL PROTECTED] I am trying to specify init context parameters in the default context in server.xml as follows: Context path= docBase=ROOT debug=0 Parameter name=configDir value=C:\config override=false/ /Context

RE: Change default Context

2004-03-31 Thread Shapira, Yoav
Hi, The default context is just the one whose path is (the empty string). It's not the one whose path is /IBS1 or anything except . What you're asking for is not to change the default context, but to do a redirect from the context whose path is to the one whose path is /IBS1. This distinction

Change default Context

2004-03-30 Thread UmamaheswarKalluru
Hi, I need to change the default context that is used by Tomcat 5 from ROOT to IBS1. i.e when I type http://localhost it should go to http://localhost/IBS1. Any ideas where to modify this? Thank you, Best Regards, Uma

Default Context in Tomcat 5.0.19

2004-03-25 Thread Chaikin, Yaakov Y (US SSA)
Hi, I am a bit confused about this one. I am able to run servlets using the invoker servlet by placing the classes in the ROOT/WEB-INF/classes directory. Yet, I don't see in server.xml any mention of the default context. Has this changed since 4.1.x version? I've looked into conf/Catalina

RE: Default Context in Tomcat 5.0.19

2004-03-25 Thread LILES, DAVID (CONTRACTOR)
: Default Context in Tomcat 5.0.19 Hi, I am a bit confused about this one. I am able to run servlets using the invoker servlet by placing the classes in the ROOT/WEB-INF/classes directory. Yet, I don't see in server.xml any mention of the default context. Has this changed since 4.1.x version? I've

Re: Default context for web app

2003-12-17 Thread Adam Hardy
On 12/17/2003 12:39 AMnbsp;Kent Boogaart wrote: Didn't work. So I can't do what you're doing. Strange. Are you dead certain you don't have an /eSM/ context? Adam Hi Adam, It's a bit hard to tell for certain since I have disabled the manager app. However, I can tell you that there is only one

Re: Default context for web app

2003-12-16 Thread Adam Hardy
On 12/16/2003 12:00 AMnbsp;Kent Boogaart wrote: When I do that, I get a context at / and a context at eSM. In $TOMCAT_HOME/work/Standalone/localhost/ tomcat makes both _ and eSM. I use exactly the same context config as you, except some I don't declare since the defaults are the same. The only one

Re: Default context for web app

2003-12-16 Thread Adam Hardy
On 12/16/2003 10:15 AMnbsp;Adam Hardy wrote: I'll experiment: if I put all my context info in the server.xml, then maybe it will work. Didn't work. So I can't do what you're doing. Strange. Are you dead certain you don't have an /eSM/ context? Adam -- struts 1.1 + tomcat 5.0.16 + java 1.4.2

Re: Default context for web app

2003-12-16 Thread Kent Boogaart
Didn't work. So I can't do what you're doing. Strange. Are you dead certain you don't have an /eSM/ context? Adam Hi Adam, It's a bit hard to tell for certain since I have disabled the manager app. However, I can tell you that there is only one directory below work/Standalone/localhost and it

Re: Default context for web app

2003-12-15 Thread Kent Boogaart
When I do that, I get a context at / and a context at eSM. In $TOMCAT_HOME/work/Standalone/localhost/ tomcat makes both _ and eSM. I use exactly the same context config as you, except some I don't declare since the defaults are the same. The only one I don't recognise is 'displayName' - can't see

Re: Default context for web app

2003-12-12 Thread Adam Hardy
On 12/12/2003 12:15 AM Kent Boogaart wrote: I am currently running against version 4.1.27 of Tomcat. I did not alter the name of my deploy directory. Here is my Context element (with env entries removed): Context className=org.apache.catalina.core.StandardContext cachingAllowed=true

RE: Default context for web app

2003-12-11 Thread Shapira, Yoav
Howdy, Glad to hear the advice on autoDeploy worked -- thanks for posting the followup. Yoav Shapira Millennium ChemInformatics -Original Message- From: Kent Boogaart [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 10, 2003 6:52 PM To: '[EMAIL PROTECTED]' Subject: Re: Default

Re: Default context for web app

2003-12-11 Thread Adam Hardy
On 12/11/2003 12:51 AM Kent Boogaart wrote: Wow - thanks for all the help people. Just thought I'd update you on how I resolved this. Firstly, I removed all Context elements from conf/server.xml except my own. Then I set autoDeploy to false on the Host element. This almost got everything working

Re: Default context for web app

2003-12-11 Thread Kent Boogaart
Hi Adam, I am currently running against version 4.1.27 of Tomcat. I did not alter the name of my deploy directory. Here is my Context element (with env entries removed): Context className=org.apache.catalina.core.StandardContext

Default context for web app

2003-12-10 Thread Kent Boogaart
Hi all, I am trying make my web application available via the default context. In other words, when I type http://localhost:8080/ in a browser on the local machine I want my web app to appear rather than the Tomcat default web app. I figured I'd just need to alter my context's path to (empty

Re: Default context for web app

2003-12-10 Thread Adam Hardy
On 12/10/2003 08:53 AM Kent Boogaart wrote: Hi all, I am trying make my web application available via the default context. In other words, when I type http://localhost:8080/ in a browser on the local machine I want my web app to appear rather than the Tomcat default web app. I figured I'd just

RE: Default context for web app

2003-12-10 Thread Shapira, Yoav
ChemInformatics -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 10, 2003 6:48 AM To: Tomcat Users List Subject: Re: Default context for web app On 12/10/2003 08:53 AM Kent Boogaart wrote: Hi all, I am trying make my web application available via

Re: Default context for web app

2003-12-10 Thread Ben Souther
: Hi all, I am trying make my web application available via the default context. In other words, when I type http://localhost:8080/ in a browser on the local machine I want my web app to appear rather than the Tomcat default web app. I figured I'd just need to alter my context's path

Re: Default context for web app

2003-12-10 Thread Adam Hardy
-string-path context. Yoav Shapira Millennium ChemInformatics -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 10, 2003 6:48 AM To: Tomcat Users List Subject: Re: Default context for web app On 12/10/2003 08:53 AM Kent Boogaart wrote: Hi all, I am

RE: Default context for web app

2003-12-10 Thread Shapira, Yoav
Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 10, 2003 9:07 AM To: Tomcat Users List Subject: Re: Default context for web app Yoav, from my brief experiment, if you don't place it in ROOT, then like the Kent said it gets deployed twice. e.g. I put my app in APPBASE

[OT] Re: Default context for web app

2003-12-10 Thread Graham Reeds
Howdy, It's deployed twice if you also have autoDeploy enabled. ROOT has NOTHNING special. Maybe for the next release we should change the name ROOT to something else just so people stop thinking there's something special about it ;) SHRUB? Blame Monty Python. G.

Re: Default context for web app

2003-12-10 Thread Adam Hardy
] Sent: Wednesday, December 10, 2003 9:07 AM To: Tomcat Users List Subject: Re: Default context for web app Yoav, from my brief experiment, if you don't place it in ROOT, then like the Kent said it gets deployed twice. e.g. I put my app in APPBASE/gargantus/ and set the context xml: path

RE: Default context for web app

2003-12-10 Thread Shapira, Yoav
-Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 10, 2003 10:02 AM To: Tomcat Users List Subject: Re: Default context for web app At risk of getting you totally exasperated :0 , I beg to differ. If I have no context entries in server.xml

Re: Default context for web app

2003-12-10 Thread Kent Boogaart
Wow - thanks for all the help people. Just thought I'd update you on how I resolved this. Firstly, I removed all Context elements from conf/server.xml except my own. Then I set autoDeploy to false on the Host element. This almost got everything working as required. However, the admin and manager

Re: Tomcat 5.0.7 Host default Context docBase

2003-08-23 Thread Dominique Batard
downloaded 5.0.9, I'll give it a try .. Dom - Original Message - From: John Corrigan [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, August 21, 2003 7:07 AM Subject: RE: Tomcat 5.0.7 Host default Context docBase Looks like it is complaining about the path. Have you

Re: Tomcat 5.0.7 Host default Context docBase

2003-08-22 Thread Dominique Batard
] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, August 21, 2003 7:07 AM Subject: RE: Tomcat 5.0.7 Host default Context docBase Looks like it is complaining about the path. Have you tried using C:\edevis instead of C:/edevis for your appBase and docBase? -Original Message

RE: Tomcat 5.0.7 Host default Context docBase

2003-08-22 Thread Shapira, Yoav
Howdy, Whatever I use in the docBase and workDir properties of Context in Host Host and Context support different attributes. Host doesn't have a docBase, it has an appBase (by default $CATALINA_HOME/webapps). workDir from any context overrides that of the Host for that context. Yoav Shapira

Re: Tomcat 5.0.7 Host default Context docBase

2003-08-22 Thread Dominique Batard
an absolute path in each of these Context attributes, as it is documented. Dom - Original Message - From: Shapira, Yoav [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, August 22, 2003 3:22 PM Subject: RE: Tomcat 5.0.7 Host default Context docBase Howdy, Whatever I

Tomcat 5.0.7 Host default Context docBase

2003-08-20 Thread Dominique Batard
=common resolveHosts=false/ Logger className=org.apache.catalina.logger.FileLogger directory=logs prefix=edevis_log. suffix=.txt timestamp=true/ Context path= docBase=c:/edevis reloadable=true workDir=c:/edevis/work/org/apache/jsp/ /Host Whatever I put in this virtual host default context

RE: Tomcat 5.0.7 Host default Context docBase

2003-08-20 Thread John Corrigan
default Context docBase Hi Trying to run a Tomcat 4.1.24 web app using Tomcat 5.0.7. Host and context parameters : Host name=edevis debug=0 appBase=c:/edevis unpackWARs=true autoDeploy=true Valve className=org.apache.catalina.valves.AccessLogValve directory=logs prefix=edevis_access_log

Setup Default Context to point to specific webapp

2003-07-09 Thread David Nelson
I realize this may seem terribly simple to a few of you but I have yet to tweak my server.xml to generate a mod_jk.conf that will correctly handle the www.mysight.com/ address. What am I missing? I do have tomcat 4.1.18 and Apache2 relatively communicating at this point via mod_jk I think.

Re: Setup Default Context to point to specific webapp

2003-07-09 Thread John Turner
If its causing a problem for you, skip the auto generation and modify httpd.conf by hand. The auto generation only works for the simplest of configurations, anyway. John On Wed, 9 Jul 2003 14:04:18 -0500, David Nelson [EMAIL PROTECTED] ind.com wrote: I realize this may seem terribly simple

RE: Setup Default Context to point to specific webapp

2003-07-09 Thread David Nelson
List Subject: Re: Setup Default Context to point to specific webapp If its causing a problem for you, skip the auto generation and modify httpd.conf by hand. The auto generation only works for the simplest of configurations, anyway. John On Wed, 9 Jul 2003 14:04:18 -0500, David Nelson [EMAIL

Re: Setup Default Context to point to specific webapp

2003-07-09 Thread John Turner
, -Dave -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 2:07 PM To: Tomcat Users List Subject: Re: Setup Default Context to point to specific webapp If its causing a problem for you, skip the auto generation and modify httpd.conf by hand

Re: Setup Default Context to point to specific webapp

2003-07-09 Thread David Nelson
I have that set, still no luck. same error. - Original Message - From: John Turner [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 2:38 PM Subject: Re: Setup Default Context to point to specific webapp First thing I would try is: JkMount

Re: Setup Default Context to point to specific webapp

2003-07-09 Thread John Turner
error. - Original Message - From: John Turner [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 2:38 PM Subject: Re: Setup Default Context to point to specific webapp First thing I would try is: JkMount /* ajp13 John On Wed, 9 Jul 2003 14:29:55 -0500

loadOnStartup: Default Context Resources unavailable?

2003-07-02 Thread Christian Wiedmann
I'm having a problem with code that is trying to use a Resource (DataSource) registered with JNDI out of a Struts Plugin at startup time. I was hoping someone on the list might have suggestions on how to deal with this. More specifically, it appears as if the Default Context has not been copied

RE: loadOnStartup: Default Context Resources unavailable?

2003-07-02 Thread Shapira, Yoav
Howdy, Is there a better place to put the Resource/ResourceParams than in the Default Context? In the Context element for your own context. Yoav Shapira This e-mail, including any attachments, is a confidential business communication, and may contain information that is confidential

RE: loadOnStartup: Default Context Resources unavailable?

2003-07-02 Thread Christian Wiedmann
Hi, Thanks for the quick response. That's fair, and I did discover that this works. I was hoping for a more global place to put the Resources. The issue is that the apps are currently getting deployed using Warp and/or ant. The Default Context is advantageous in this environment since any

RE: loadOnStartup: Default Context Resources unavailable?

2003-07-02 Thread Yoav Shapira
Howdy, Is there a place to put these definitions so that a new application deployed out of ant, for example, would be able to pick them up? GlobalNamingResources in the server.xml file. Am I missing an easy way to create the context with resources using ant? No, you're not AFAIK. I still

Re: Default Context

2003-06-23 Thread Scott M Stark
to become the default context in Tomcat container bundle together with JBoss? If i point to the IP address on which JBoss is running i will automatically directed to the application. (Like the Root context of Tomcat) Regards, Stephen Ting

Default Context

2003-06-22 Thread Stephen Ting
Hi All, How do i configure my web application to become the default context in Tomcat container bundle together with JBoss? If i point to the IP address on which JBoss is running i will automatically directed to the application. (Like the Root context of Tomcat) Regards, Stephen Ting

Default Context load-on-startup

2003-03-03 Thread Tomcat-RND
Hi, I am Using Tomact 4.1.18, I am unable to locate the Resouces of DefaultContext from a load-on-startup servlet. Is it a limitation or any other configuration required? Anybody please help out.. Thanks and Regards, Pratt.

Default Context load-on-startup

2003-03-03 Thread Tomcat-RND
Hi, I am Using Tomact 4.1.18, I am unable to locate the Resouces of DefaultContext from a load-on-startup servlet. Is it a limitation or any other configuration required? Where can i get the documenation for this, Anybody please help me out.. Thanks and Regards, Pratt.

Default Context

2003-02-28 Thread Tomcat
Hi, Is there any limitation in using the JNDI resources configured under DefaultContext in load-on-startup servlets. For load-on-startup servlet, it is giving null values to the Resource parameters configured. If load-on-startup is removed, it is working fine if the servlet is accessed manually.

Default Context

2003-02-28 Thread Tomcat
Hi, Is there any limitation in using the JNDI resources configured under DefaultContext in load-on-startup servlets. For load-on-startup servlet, it is giving null values to the Resource parameters configured. If load-on-startup is removed, it is working fine if the servlet is accessed

Default Context

2003-02-28 Thread Prathap
Hi, Is there any limitation in using the JNDI resources configured under DefaultContext in load-on-startup servlets. For load-on-startup servlet, it is giving null values to the Resource parameters configured. If load-on-startup is removed, it is working fine if the servlet is accessed

Default Context

2002-10-05 Thread glen
In tomcat3.x, a URL like http:/mycomputer/servlet/someservlet would be redirected to http:/mycomputer/ROOT/servlet/someservlet or to whatever was defined as the default context. So far I have not been able to get this behavious in tomcat4.x. Redirect and Rewrite won't work because most of our

RE: tomcat 4.1.10: war deploy in default context not working.

2002-09-11 Thread gabriele . garuglieri
For anyone interested, this is a bug. Refer to http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12521 HTML Manager cannot deploy war file with path=/ Regards, Gabriele. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

tomcat 4.1.10: war deploy in default context not working.

2002-09-09 Thread gabriele . garuglieri
Hi all, Environment: tomcat 4.1.10 ant 1.5 solaris 2.8 JDK 1.4.0_01 I have an application that to work must be deployed in the default context /. It is working fine both when i define it with app.xml into webapps and when i load it dynamically using the manager install

RE: tomcat 4.1.10: war deploy in default context not working.

2002-09-09 Thread gabriele . garuglieri
Pls, anybody listening? This problem is a real show stopper for us. Can someone tell me if it's a real bug or something wrong that i'm doing? Thanks, Gabriele. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Default context

2002-08-10 Thread Henrik Oddershede
Hi. I'm having a problem with my Tomcat-4.0.4 running on solaris. I want Tomcat to create a default context for every user who has a .public_dw3/tomcat in their home dir. To accomplish that, I have edited server.xml and added the following lines in the host-tag: Listener className

Re: Tomcat 4.0.4 MyApp as default context - ClassNotFoundException: org.hsql.jdbcDriver

2002-06-24 Thread Martin Jacobson
Jakarta Tomcat Newsgroup (@Basebeans.com) wrote: Subject: Tomcat 4.0.4 MyApp as default context - ClassNotFoundException: org.hsql.jdbcDriver From: Matt Raible [EMAIL PROTECTED] === I have an entry for my web-application in server.xml so I can use a JDBCRealm and a JNDI Datasource. When

Re: Tomcat 4.0.4 MyApp as default context - ClassNotFoundException: org.hsql.jdbcDriver

2002-06-24 Thread @Basebeans.com
Subject: Re: Tomcat 4.0.4 MyApp as default context - ClassNotFoundException: org.hsql.jdbcDriver From: Matt Raible [EMAIL PROTECTED] === I've been using Tyrex on 4.0.1 for over 6 months, I was just making an attempt to make my application accessible from http://localhost/ rather than from http

Tomcat 4.0.4 MyApp as default context - ClassNotFoundException: org.hsql.jdbcDriver

2002-06-22 Thread @Basebeans.com
Subject: Tomcat 4.0.4 MyApp as default context - ClassNotFoundException: org.hsql.jdbcDriver From: Matt Raible [EMAIL PROTECTED] === I have an entry for my web-application in server.xml so I can use a JDBCRealm and a JNDI Datasource. When I change my context's path from Context path

Default context when using Apache and Tomcat together

2002-05-13 Thread Shimon Crown
The Tomcat document config/context.html contains the following statement : You may define as many Context elements as you wish, nested within a Host element in conf/server.xml. Each such Context MUST have a unique context path, which is defined by the path attribute. In addition, you MUST define

Tomcat and Apache default context

2002-02-19 Thread nathan phillips
I've been trying to get multiple virtual host working the way I want with my Tomcat4.0.1/Apache1.3 configuration for too long and seem to be at a loss. I am unable to map an application as a default root to my virtual host. In essence I want to be able to access my application by using

Re: Tomcat and Apache default context

2002-02-19 Thread rsequeira
Try mapping the ROOT (webapps/Root) context with a virtual host RS nathan phillips [EMAIL PROTECTED] on 02/19/2002 11:01:44 AM Please respond to Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: Tomcat and Apache default context I've been trying to get multiple

Re: Tomcat and Apache default context

2002-02-19 Thread nathan phillips
I have and any other permutation I can think of. Thanks though. From: [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Tomcat and Apache default context Date: Tue, 19 Feb 2002 11:33:01 -0600 MIME-Version: 1.0 Received: from

default context with webapp vs. mod_jk

2002-01-24 Thread Ching-Kuan Thum
Hi, The current behavior of webapp with default context like WebAppDeploy examples conn / will capture all URI regardless of the content type (dynamic or static). This poses a problem when Tomcat is deployed with Apache. Is this behavior going be fixed like that ? Any plan

how to deploy default context

2001-11-13 Thread Jeff Ramin
warpConnection /examples/ These statements let me get at the examples webapp that comes with Tomcat. I want to replace the default context w/ my own application, as all the links are set up as the default (ie. I need to be able to access it via localhost/index.jsp and not localhost/webapp name

Re: how to deploy default context

2001-11-13 Thread Kevin Barnes
to replace the default context w/ my own application, as all the links are set up as the default (ie. I need to be able to access it via localhost/index.jsp and not localhost/webapp name/index.jsp). From reading the docs, my only guess at the correct Apache directive would be this: WebAppDeploy

Configuring default context

2001-07-26 Thread Wirianto . Djunaidi
Hi, I need help with configuring the context with Tomcat 3.2.2 on Windows NT. Basically I only want one context with my tomcat server, I had removed other context from webapps directory except mine and change the server.xml with this for the context: Context path=/ docBase=webapps/ROOT

Change default context path of auto-loaded webapps??

2001-07-03 Thread Tim Moore
I'd like all my webapps to be accessed as http://server/webapps/app rather than http://server/app. (To make it easier to configure the connector from IIS.) Is it possible to do this automatically for all auto-loaded webapps? Or would I have to create an explicit context definition for each one?

How to get rid of default context pathes

2001-03-04 Thread mikhail malamud
I deleted default Context paths /examples /test /admin from the server.xml but they still show up when I start up the tomcat. Where do I need to delete 'em? Thanks, Mikhail - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: How to get rid of default context pathes

2001-03-04 Thread Thomas Riemer
You need to actually physically remove them out of ${java.home}/webapps mikhail malamud wrote: I deleted default Context paths /examples /test /admin from the server.xml but they still show up when I start up the tomcat. Where do I need to delete 'em? Thanks, Mikhail

default context

2001-02-16 Thread Christoph Rooms
Hi, Under my /webapps dir I have a few contexts. I want to define 1 as the default one. (So I don't have to define a context in the url), So if no context is defined in the url, I will go to this url ... this is what I putted in my server.xml Context path=" " docBase="webapps/rnb"

RE: default context

2001-02-16 Thread Chris Richard Adams
: Christoph Rooms [mailto:[EMAIL PROTECTED]] Sent: Friday, February 16, 2001 6:27 PM To: [EMAIL PROTECTED] Subject: default context Hi, Under my /webapps dir I have a few contexts. I want to define 1 as the default one. (So I don't have to define a context in the url), So if no context

RE: default context

2001-02-16 Thread Christoph Rooms
quot;/ /ContextManager Context path="/rnb" docBase="webapps/ROOT" / Watch out ... without the second part ... it doesn't work :) greetz, Christoph -Original Message- From: Chris Richard Adams [mailto:[EMAIL PROTECTED]] Sent: vrijdag 16 februari 2001 23:28 To: [EMAIL P