billbarker | 1 Mar 01:55
Picon
Favicon

svn commit: r748944 - /tomcat/current/tc5.5.x/STATUS.txt

Author: billbarker
Date: Sun Mar  1 00:55:56 2009
New Revision: 748944

URL: http://svn.apache.org/viewvc?rev=748944&view=rev
Log:
vote

Modified:
    tomcat/current/tc5.5.x/STATUS.txt

Modified: tomcat/current/tc5.5.x/STATUS.txt
URL: http://svn.apache.org/viewvc/tomcat/current/tc5.5.x/STATUS.txt?rev=748944&r1=748943&r2=748944&view=diff
==============================================================================
--- tomcat/current/tc5.5.x/STATUS.txt (original)
+++ tomcat/current/tc5.5.x/STATUS.txt Sun Mar  1 00:55:56 2009
@@ -237,5 +237,5 @@
   Only a problem before 6.0.
   Patch backported from http://svn.eu.apache.org/viewvc?view=rev&revision=411577
   Patch available at https://issues.apache.org/bugzilla/attachment.cgi?id=23316
-  +1: rjung
+  +1: rjung, billbarker
   -1: 
Hanna1990 | 1 Mar 11:10
Picon

Running jsp in a different directory than ROOT?


I have written my first jsp application Hello World and succesfully run it on
a local machine by browsing http://localhost:8080/hello.jsp

Now I would like to make Tomcat doing the same thing in other directories
than ROOT. What should I do? I don't want to move all my new jsp-files into
ROOT-folder....  (I just installed Tomcat and JDK/JRE so I have the latest
versions)

Thanks 
--

-- 
View this message in context: http://www.nabble.com/Running-jsp-in-a-different-directory-than-ROOT--tp22271255p22271255.html
Sent from the Tomcat - Dev mailing list archive at Nabble.com.
sura | 1 Mar 11:53
Picon
Favicon

Re: Running jsp in a different directory than ROOT?

You can put your JSP files in any directory and make it a virtual directory by updating server.xml file

Ex:
<!--
<Host appBase="webapps" autoDeploy.......>
<Context path=”/resources” docBase=”E:/Internet-Server/tomcat/resources”
debug=”0″ privileged=”true”>
</Context>

</Host> 
-->
There is commented entry in server.xml as above. First stop the server and update it as you need and restart
your server. 

________________________________
From: Hanna1990 <email.kia <at> gmail.com>
To: dev <at> tomcat.apache.org
Sent: Sunday, March 1, 2009 3:40:35 PM
Subject: Running jsp in a different directory than ROOT?

I have written my first jsp application Hello World and succesfully run it on
a local machine by browsing http://localhost:8080/hello.jsp

Now I would like to make Tomcat doing the same thing in other directories
than ROOT. What should I do? I don't want to move all my new jsp-files into
ROOT-folder....  (I just installed Tomcat and JDK/JRE so I have the latest
versions)

Thanks 
--

-- 
(Continue reading)

markt | 1 Mar 13:47
Picon
Favicon
Gravatar

svn commit: r749019 - in /tomcat/tc6.0.x/trunk: ./ java/org/apache/catalina/ java/org/apache/catalina/connector/ java/org/apache/catalina/session/ java/org/apache/tomcat/util/http/ webapps/docs/ webapps/docs/config/

Author: markt
Date: Sun Mar  1 12:47:54 2009
New Revision: 749019

URL: http://svn.apache.org/viewvc?rev=749019&view=rev
Log:
Provide an option to use httpOnly for session cookies. Disabled by default.

Modified:
    tomcat/tc6.0.x/trunk/   (props changed)
    tomcat/tc6.0.x/trunk/STATUS.txt
    tomcat/tc6.0.x/trunk/java/org/apache/catalina/Manager.java
    tomcat/tc6.0.x/trunk/java/org/apache/catalina/connector/Request.java
    tomcat/tc6.0.x/trunk/java/org/apache/catalina/connector/Response.java
    tomcat/tc6.0.x/trunk/java/org/apache/catalina/session/ManagerBase.java
    tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/http/ServerCookie.java
    tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml
    tomcat/tc6.0.x/trunk/webapps/docs/config/manager.xml

Propchange: tomcat/tc6.0.x/trunk/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sun Mar  1 12:47:54 2009
@@ -1 +1 @@
-/tomcat/trunk:601180,606992,612607,630314,652744,653247,673796,673820,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,718360,719602,719626,719628,720046,720069,721040,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,747834,748344
+/tomcat/trunk:601180,606992,612607,630314,652744,653247,673796,673820,683982,684001,684081,684234,684269-684270,685177,687503,687645,689402,690781,691392,691805,692748,694992,695053,695311,696780,696782,698012,698227,698236,698613,699427,699634,701355,709294,709811,709816,710063,710066,710125,710205,711126,711600,712461,712467,718360,719602,719626,719628,720046,720069,721040,723404,723738,726052,727303,728032,728768,728947,729057,729567,729569,729571,729809,729815,729934,730250,730590,731651,732859,732863,734734,740675,740684,747834,748344

Modified: tomcat/tc6.0.x/trunk/STATUS.txt
URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=749019&r1=749018&r2=749019&view=diff
==============================================================================
(Continue reading)

bugzilla | 1 Mar 13:49
Picon
Favicon

DO NOT REPLY [Bug 44382] Need to add support for HTTPOnly session cookie parameter

https://issues.apache.org/bugzilla/show_bug.cgi?id=44382

--- Comment #17 from Mark Thomas <markt <at> apache.org>  2009-03-01 04:49:28 PST ---
This has been implemented in 6.0.x and will be included in 6.0.19 onwards. It
is disabled by default so you need to use:

<Context>
  <Manager useHttpOnly="true" />
</Context>

to enable it.

--

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
markt | 1 Mar 13:54
Picon
Favicon
Gravatar

svn commit: r749020 - /tomcat/tc6.0.x/trunk/STATUS.txt

Author: markt
Date: Sun Mar  1 12:54:35 2009
New Revision: 749020

URL: http://svn.apache.org/viewvc?rev=749020&view=rev
Log:
Respond to Mladen's comment.

Modified:
    tomcat/tc6.0.x/trunk/STATUS.txt

Modified: tomcat/tc6.0.x/trunk/STATUS.txt
URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=749020&r1=749019&r2=749020&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/STATUS.txt (original)
+++ tomcat/tc6.0.x/trunk/STATUS.txt Sun Mar  1 12:54:35 2009
@@ -102,6 +102,10 @@
   -0: mturk: We cannot change API in the middle of the life cycle. I'm fine with
       deprecating that in trunk, but IMO there is no reason to deprecate
       something in maintenance branch.
+      markt: I'd like to delete a lot of stuff (that is already unused) in tc7.
+      Deprecating it in tc6 doesn't stop people using it, nor does it change the
+      functionality of the API. It just gives folks that may be using this old
+      code a warning that it won't be there in the next version.
   -1: 

 * Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=38570
Pid | 1 Mar 14:25

Re: Running jsp in a different directory than ROOT?

This is not a matter for the Developers List.
The Tomcat Users list is the normal place for this type of query/discussion.

sura wrote:
> You can put your JSP files in any directory and make it a virtual directory by updating server.xml file
> 
> Ex:
> <!--
> <Host appBase="webapps" autoDeploy.......>
> <Context path=”/resources” docBase=”E:/Internet-Server/tomcat/resources”
debug=”0″ privileged=”true”>
> </Context>

Placing Context definitions in server.xml has been discouraged for a
long time.  This is bad advice and doesn't properly address the question.

p

> </Host> 
> -->
> There is commented entry in server.xml as above. First stop the server and update it as you need and restart
your server. 
> 
> 
> 
> ________________________________
> From: Hanna1990 <email.kia <at> gmail.com>
> To: dev <at> tomcat.apache.org
> Sent: Sunday, March 1, 2009 3:40:35 PM
> Subject: Running jsp in a different directory than ROOT?
(Continue reading)

sebb | 1 Mar 19:40
Picon

Re: svn commit: r749019 - in /tomcat/tc6.0.x/trunk: ./ java/org/apache/catalina/ java/org/apache/catalina/connector/ java/org/apache/catalina/session/ java/org/apache/tomcat/util/http/ webapps/docs/ webapps/docs/config/

On 01/03/2009, markt <at> apache.org <markt <at> apache.org> wrote:
> Author: markt
>  Date: Sun Mar  1 12:47:54 2009
>  New Revision: 749019
>
>  URL: http://svn.apache.org/viewvc?rev=749019&view=rev
>  Log:
>  Provide an option to use httpOnly for session cookies. Disabled by default.
>
...
==============================================================================
>  --- tomcat/tc6.0.x/trunk/java/org/apache/catalina/session/ManagerBase.java (original)
>  +++ tomcat/tc6.0.x/trunk/java/org/apache/catalina/session/ManagerBase.java Sun Mar  1 12:47:54 2009
>  @@ -217,7 +217,11 @@
>       */
>      protected PropertyChangeSupport support = new PropertyChangeSupport(this);
>
>  -
>  +    /**
>  +     * The flag that indicates that session cookies should use HttpOnly
>  +     */
>  +    protected boolean useHttpOnly = false;
>  +
>      // ------------------------------------------------------------- Security classes
>
>
>  @@ -655,6 +659,27 @@
>
>      }
>
(Continue reading)

bugzilla | 2 Mar 08:08
Picon
Favicon

Bug report for Tomcat 3 [2009/03/01]

+---------------------------------------------------------------------------+
| Bugzilla Bug ID                                                           |
|     +---------------------------------------------------------------------+
|     | Status: UNC=Unconfirmed NEW=New         ASS=Assigned                |
|     |         OPN=Reopened    VER=Verified    (Skipped Closed/Resolved)   |
|     |   +-----------------------------------------------------------------+
|     |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
|     |   |           MIN=Minor   NOR=Normal    ENH=Enhancement TRV=Trivial |
|     |   |   +-------------------------------------------------------------+
|     |   |   | Date Posted                                                 |
|     |   |   |          +--------------------------------------------------+
|     |   |   |          | Description                                      |
|     |   |   |          |                                                  |
|  412|Ver|Nor|2001-01-08|JspC on Windows fails to handle includes in subdir|
| 2350|Ver|Nor|2001-06-27|ServletConfig.getInitParameter() requires url-patt|
| 6488|Ver|Maj|2002-02-15|Error: 304. Apparent bug in default ErrorHandler c|
| 9737|Ver|Nor|2002-06-10|ArrayIndexOutOfBoundsException when sending just p|
+-----+---+---+----------+--------------------------------------------------+
| Total    4 bugs                                                           |
+---------------------------------------------------------------------------+
bugzilla | 2 Mar 08:08
Picon
Favicon

Bug report for Watchdog [2009/03/01]

+---------------------------------------------------------------------------+
| Bugzilla Bug ID                                                           |
|     +---------------------------------------------------------------------+
|     | Status: UNC=Unconfirmed NEW=New         ASS=Assigned                |
|     |         OPN=Reopened    VER=Verified    (Skipped Closed/Resolved)   |
|     |   +-----------------------------------------------------------------+
|     |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
|     |   |           MIN=Minor   NOR=Normal    ENH=Enhancement TRV=Trivial |
|     |   |   +-------------------------------------------------------------+
|     |   |   | Date Posted                                                 |
|     |   |   |          +--------------------------------------------------+
|     |   |   |          | Description                                      |
|     |   |   |          |                                                  |
|  278|Unc|Nor|2000-12-04|Bug in GetParameterValuesTestServlet.java file Bug|
|  279|Unc|Nor|2000-12-04|Logical Error in GetParameterValuesTestServlet Bug|
|  469|Unc|Nor|2001-01-17|in example-taglib.tld "urn" should be "uri" BugRat|
|  470|Unc|Nor|2001-01-17|FAIL positiveForward.jsp and positiveInclude.jsp B|
| 9634|New|Enh|2002-06-05|No tests exist for ServletContext.getResourcePaths|
|10703|New|Enh|2002-07-11|Need to test getRequestURI after RequestDispatcher|
|11336|New|Enh|2002-07-31|Test wrapped path methods with RD.foward()        |
|11663|New|Maj|2002-08-13|JSP precompile tests rely on Jasper specific behav|
|11664|New|Maj|2002-08-13|A sweep is needed of all Watchdog 4.0 tag librarie|
|11665|New|Maj|2002-08-13|ServletToJSPErrorPageTest and ServletToServletErro|
|11666|New|Maj|2002-08-13|SetBufferSize_1TestServlet is invalid.            |
|14004|New|Maj|2002-10-28|Incorrent behaviour of all attribute-related lifec|
|15504|New|Nor|2002-12-18|JSP positiveGetValues test relies on order preserv|
|24649|New|Nor|2003-11-12|getRemoteHost fails when agent has uppercase chara|
|29398|New|Nor|2004-06-04|Update site and note current status               |
+-----+---+---+----------+--------------------------------------------------+
| Total   15 bugs                                                           |
(Continue reading)


Gmane