svn commit: r353881 - /tomcat/container/branches/tc4.1.x/build.xml

2005-12-04 Thread markt
Author: markt
Date: Sun Dec  4 10:29:25 2005
New Revision: 353881

URL: http://svn.apache.org/viewcvs?rev=353881&view=rev
Log:
Update to remove all references to Jasper 1.

Modified:
tomcat/container/branches/tc4.1.x/build.xml

Modified: tomcat/container/branches/tc4.1.x/build.xml
URL: 
http://svn.apache.org/viewcvs/tomcat/container/branches/tc4.1.x/build.xml?rev=353881&r1=353880&r2=353881&view=diff
==
--- tomcat/container/branches/tc4.1.x/build.xml (original)
+++ tomcat/container/branches/tc4.1.x/build.xml Sun Dec  4 10:29:25 2005
@@ -21,9 +21,13 @@
   
   
 
+  
+  
+  
+
   
   
-  
+  
   
   
   
@@ -33,11 +37,6 @@
   
 
 
-  
-  
-  
-
-
   
   
@@ -224,13 +223,14 @@
   
 
 
-
 
   
 
 
 
-  
+  
+
+  
 
 
 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r353883 - /tomcat/container/branches/tc4.1.x/jasper/

2005-12-04 Thread markt
Author: markt
Date: Sun Dec  4 10:30:45 2005
New Revision: 353883

URL: http://svn.apache.org/viewcvs?rev=353883&view=rev
Log:
Remove Jasper 1 source from TC4 HEAD

Removed:
tomcat/container/branches/tc4.1.x/jasper/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r353884 - /tomcat/container/branches/tc4.1.x/catalina/src/share/org/apache/catalina/core/ApplicationContext.java

2005-12-04 Thread markt
Author: markt
Date: Sun Dec  4 10:34:35 2005
New Revision: 353884

URL: http://svn.apache.org/viewcvs?rev=353884&view=rev
Log:
Fix bug 13040. getContext() now allows retrieval of an external context that is
a sub-context of the current context.

Modified:

tomcat/container/branches/tc4.1.x/catalina/src/share/org/apache/catalina/core/ApplicationContext.java

Modified: 
tomcat/container/branches/tc4.1.x/catalina/src/share/org/apache/catalina/core/ApplicationContext.java
URL: 
http://svn.apache.org/viewcvs/tomcat/container/branches/tc4.1.x/catalina/src/share/org/apache/catalina/core/ApplicationContext.java?rev=353884&r1=353883&r2=353884&view=diff
==
--- 
tomcat/container/branches/tc4.1.x/catalina/src/share/org/apache/catalina/core/ApplicationContext.java
 (original)
+++ 
tomcat/container/branches/tc4.1.x/catalina/src/share/org/apache/catalina/core/ApplicationContext.java
 Sun Dec  4 10:34:35 2005
@@ -404,8 +404,8 @@
  * obtain RequestDispatcher objects or resources from the
  * context.  The given path must be absolute (beginning with a "/"),
  * and is interpreted based on our virtual host's document root.
- *
- * @param uri Absolute URI of a resource on the server
+ * @param uri a String specifying the context path of a web
+ * application in the container.
  */
 public ServletContext getContext(String uri) {
 
@@ -413,26 +413,24 @@
 if ((uri == null) || (!uri.startsWith("/")))
 return (null);
 
-// Return the current context if requested
-String contextPath = context.getPath();
-if (!contextPath.endsWith("/"))
-contextPath = contextPath + "/";
-
-if (((contextPath.length() > 1) && (uri.startsWith(contextPath))) ||
-((contextPath.equals("/")) && (uri.equals("/" {
-return (this);
-}
-
-// Return other contexts only if allowed
-if (!context.getCrossContext())
-return (null);
+// Use the host mapper to match the uri to a context
 try {
 Host host = (Host) context.getParent();
 Context child = host.map(uri);
-if (child != null)
-return (child.getServletContext());
-else
-return (null);
+if (child != null) {
+   // Without crossContext, can only return the current context
+if (context.getCrossContext()) {
+   return child.getServletContext();
+} else {
+   if (context == child) {
+   return (this);
+   } else {
+   return (null);
+   }
+}
+} else {
+   return (null);
+}
 } catch (Throwable t) {
 return (null);
 }
@@ -1105,28 +1103,6 @@
 }
 }
 parameters = results;
-
-}
-
-
-/**
- * List resource paths (recursively), and store all of them in the given
- * Set.
- */
-private static void listPaths(Set set, DirContext resources, String path)
-throws NamingException {
-
-Enumeration childPaths = resources.listBindings(path);
-while (childPaths.hasMoreElements()) {
-Binding binding = (Binding) childPaths.nextElement();
-String name = binding.getName();
-String childPath = path + "/" + name;
-set.add(childPath);
-Object object = binding.getObject();
-if (object instanceof DirContext) {
-listPaths(set, resources, childPath);
-}
-}
 
 }
 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 13040] - can't retrieve external context who's uri is a sub-dir of current context

2005-12-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=13040


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-12-04 19:36 ---
After some discussion on what the spec actually means on the dev list, we have
agreed a way forward for this bug and I have just commited a change that fixes
this issue for TC4. A similar change will be ported to TC5.

The dev discussion can be found on this thread
http://marc.theaimsgroup.com/?l=tomcat-dev&m=113286089307014&w=2

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r353887 - in /tomcat/container/tc5.5.x: catalina/src/share/org/apache/catalina/core/ApplicationContext.java webapps/docs/changelog.xml

2005-12-04 Thread markt
Author: markt
Date: Sun Dec  4 10:41:19 2005
New Revision: 353887

URL: http://svn.apache.org/viewcvs?rev=353887&view=rev
Log:
Fix bug 13040. getContext() now allows retrieval of an external context that is
a sub-context of the current context.
Ported from TC4.

Modified:

tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/ApplicationContext.java
tomcat/container/tc5.5.x/webapps/docs/changelog.xml

Modified: 
tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/ApplicationContext.java
URL: 
http://svn.apache.org/viewcvs/tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/ApplicationContext.java?rev=353887&r1=353886&r2=353887&view=diff
==
--- 
tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/ApplicationContext.java
 (original)
+++ 
tomcat/container/tc5.5.x/catalina/src/share/org/apache/catalina/core/ApplicationContext.java
 Sun Dec  4 10:41:19 2005
@@ -208,22 +208,9 @@
 if ((uri == null) || (!uri.startsWith("/")))
 return (null);
 
-// Return the current context if requested
-String contextPath = context.getPath();
-if (!contextPath.endsWith("/"))
-contextPath = contextPath + "/";
-
-if (((contextPath.length() > 1) && (uri.startsWith(contextPath))) ||
-((contextPath.equals("/")) && (uri.equals("/" {
-return (this);
-}
-
-// Return other contexts only if allowed
-if (!context.getCrossContext())
-return (null);
+Context child = null;
 try {
 Host host = (Host) context.getParent();
-Context child = null;
 String mapuri = uri;
 while (true) {
 child = (Context) host.findChild(mapuri);
@@ -234,17 +221,23 @@
 break;
 mapuri = mapuri.substring(0, slash);
 }
-if (child == null) {
-child = (Context) host.findChild("");
-}
-if (child != null)
-return (child.getServletContext());
-else
-return (null);
 } catch (Throwable t) {
 return (null);
 }
 
+if (child == null)
+return (null);
+
+if (context.getCrossContext()) {
+// If crossContext is enabled, can always return the context
+return child.getServletContext();
+} else if (child == context) {
+// Can still return the current context
+return context.getServletContext();
+} else {
+// Nothing to return
+return (null);
+}
 }
 
 
@@ -929,28 +922,6 @@
 }
 }
 parameters = results;
-
-}
-
-
-/**
- * List resource paths (recursively), and store all of them in the given
- * Set.
- */
-private static void listPaths(Set set, DirContext resources, String path)
-throws NamingException {
-
-Enumeration childPaths = resources.listBindings(path);
-while (childPaths.hasMoreElements()) {
-Binding binding = (Binding) childPaths.nextElement();
-String name = binding.getName();
-String childPath = path + "/" + name;
-set.add(childPath);
-Object object = binding.getObject();
-if (object instanceof DirContext) {
-listPaths(set, resources, childPath);
-}
-}
 
 }
 

Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewcvs/tomcat/container/tc5.5.x/webapps/docs/changelog.xml?rev=353887&r1=353886&r2=353887&view=diff
==
--- tomcat/container/tc5.5.x/webapps/docs/changelog.xml (original)
+++ tomcat/container/tc5.5.x/webapps/docs/changelog.xml Sun Dec  4 10:41:19 2005
@@ -22,6 +22,10 @@
 
   
 
+  
+13040Fix getContext() when used to obtain a context that is 
a sub-context
+of the current context. Ported from TC4. (markt) 
+  
 
   
 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r353896 - in /tomcat/container/branches/tc4.1.x: build.properties.default catalina/build.xml lib/mx4j.license

2005-12-04 Thread markt
Author: markt
Date: Sun Dec  4 11:24:23 2005
New Revision: 353896

URL: http://svn.apache.org/viewcvs?rev=353896&view=rev
Log:
Use mx4j license from mx4j distribution rather than a copy in the asf repo

Removed:
tomcat/container/branches/tc4.1.x/lib/mx4j.license
Modified:
tomcat/container/branches/tc4.1.x/build.properties.default
tomcat/container/branches/tc4.1.x/catalina/build.xml

Modified: tomcat/container/branches/tc4.1.x/build.properties.default
URL: 
http://svn.apache.org/viewcvs/tomcat/container/branches/tc4.1.x/build.properties.default?rev=353896&r1=353895&r2=353896&view=diff
==
--- tomcat/container/branches/tc4.1.x/build.properties.default (original)
+++ tomcat/container/branches/tc4.1.x/build.properties.default Sun Dec  4 
11:24:23 2005
@@ -189,6 +189,7 @@
 jmx.home=${base.path}/mx4j-1.1.1
 jmx.lib=${jmx.home}/lib
 jmx.jar=${jmx.lib}/mx4j-jmx.jar
+jmx.license=${jmx.home}/LICENSE
 jmx.loc=http://telia.dl.sourceforge.net/sourceforge/mx4j/mx4j-1.1.1.tar.gz
 
 

Modified: tomcat/container/branches/tc4.1.x/catalina/build.xml
URL: 
http://svn.apache.org/viewcvs/tomcat/container/branches/tc4.1.x/catalina/build.xml?rev=353896&r1=353895&r2=353896&view=diff
==
--- tomcat/container/branches/tc4.1.x/catalina/build.xml (original)
+++ tomcat/container/branches/tc4.1.x/catalina/build.xml Sun Dec  4 11:24:23 
2005
@@ -705,7 +705,7 @@
   
   
 
-
+
   
   
 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 37781] New: - Permission error causes malformed server.xml to be saved.

2005-12-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=37781

   Summary: Permission error causes malformed server.xml to be
saved.
   Product: Tomcat 5
   Version: 5.5.9
  Platform: Other
OS/Version: Linux
Status: NEW
  Severity: major
  Priority: P2
 Component: Webapps:Administration
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


If:

1)you have a context, and the META-INF directory is not writable by the user
tomcat runs as
2)you use the Admin application to change the server configuration 
3)you use the commit changes button

The save will abort, leaving a malformed server.xml and the user will be told
that "changes were saved successfully" (or something similar). In essence, the
write aborts on the host, and closing tags for engines, services, as well as
other hosts are not written.

I think the user needs to be informed that the save failed. In the best case,
write of the server.xml should be atomic so that a malformed server.xml is not
written.

Here is the error log from when it happens:

2005-12-01 14:00:36,843 INFO http-8080-Processor14
org.apache.catalina.storeconfig.StandardContextSF - Store Context  separate with
backup (at file /home/chd/ROOT/META-INF/context.xml.2005-12-01.14-00-36 )
 2005-12-01 14:00:36,844 ERROR http-8080-Processor14
org.apache.catalina.storeconfig.StoreConfig - java.io.FileNotFoundException:
/home/chd/ROOT/META-INF/context.xml.new (Permission denied)
 2005-12-01 14:00:36,844 INFO http-8080-Processor14
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/admin] - action:
Debugging -- changes saved to conf/server.xml
 2005-12-01 14:03:26,667 INFO http-8080-Processor6
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/admin] - action:
Entered TreeControlTestAction:perform()
 2005-12-01 14:03:26,667 INFO http-8080-Processor6
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/admin] - action:
tree param is null
 2005-12-01 14:03:26,667 INFO http-8080-Processor6
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/admin] - action:
Select event on Catalina:type=Host,host=calendar.chc1.org
 2005-12-01 14:03:39,512 INFO http-8080-Processor14
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/admin] - action:
Entered TreeControlTestAction:perform()
 2005-12-01 14:03:39,512 INFO http-8080-Processor14
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/admin] - action:
tree param is null
 2005-12-01 14:03:39,512 INFO http-8080-Processor14
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/admin] - action:
Select event on Catalina:type=Service,serviceName=Catalina
 2005-12-01 14:06:02,231 INFO http-8080-Processor9

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r353899 - /tomcat/container/branches/tc4.1.x/lib/jakarta-regexp-1.2.jar

2005-12-04 Thread markt
Author: markt
Date: Sun Dec  4 11:33:10 2005
New Revision: 353899

URL: http://svn.apache.org/viewcvs?rev=353899&view=rev
Log:
Remove jakarta-regexp-1.2.jar from repo since the build scripts use a newer
version from a different location

Removed:
tomcat/container/branches/tc4.1.x/lib/jakarta-regexp-1.2.jar


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r353900 - /tomcat/container/branches/tc4.1.x/lib/

2005-12-04 Thread markt
Author: markt
Date: Sun Dec  4 12:03:12 2005
New Revision: 353900

URL: http://svn.apache.org/viewcvs?rev=353900&view=rev
Log:
Remove empty directory

Removed:
tomcat/container/branches/tc4.1.x/lib/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r353901 - /tomcat/container/branches/tc4.1.x/.cvsignore

2005-12-04 Thread markt
Author: markt
Date: Sun Dec  4 12:04:26 2005
New Revision: 353901

URL: http://svn.apache.org/viewcvs?rev=353901&view=rev
Log:
Remove cvs config file

Removed:
tomcat/container/branches/tc4.1.x/.cvsignore


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



svn commit: r353902 - in /tomcat/container/branches/tc4.1.x: catalina/.cvsignore tester/.cvsignore webapps/.cvsignore

2005-12-04 Thread markt
Author: markt
Date: Sun Dec  4 12:06:42 2005
New Revision: 353902

URL: http://svn.apache.org/viewcvs?rev=353902&view=rev
Log:
Remove cvs config files

Removed:
tomcat/container/branches/tc4.1.x/catalina/.cvsignore
tomcat/container/branches/tc4.1.x/tester/.cvsignore
tomcat/container/branches/tc4.1.x/webapps/.cvsignore


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Host Manager Question

2005-12-04 Thread George Sexton
After one has used the host manager to deploy a new host, how do you force a
save of the server.xml so that when Tomcat is re-started the host is still
there?

George Sexton
MH Software, Inc.
http://www.mhsoftware.com/
Voice: 303 438 9585
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Host Manager Question

2005-12-04 Thread Yoav Shapira
Hi,
One way that comes to mind is to do anything (at all) in the Admin
webapp, then click its "commit changes" button.  This seems like a
workaround, but I've used it in the past anyways because usually after
deploying a new host I need to tweak some of its configuration...

Yoav

On 12/4/05, George Sexton <[EMAIL PROTECTED]> wrote:
> After one has used the host manager to deploy a new host, how do you force a
> save of the server.xml so that when Tomcat is re-started the host is still
> there?
>
> George Sexton
> MH Software, Inc.
> http://www.mhsoftware.com/
> Voice: 303 438 9585
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
Yoav Shapira
System Design and Management Fellow
MIT Sloan School of Management
Cambridge, MA, USA
[EMAIL PROTECTED] / www.yoavshapira.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



May Chun Chew/FEA/PEC is out of the office.

2005-12-04 Thread May Chun Chew




I will be out of the office starting  12/05/2005 and will not return until
12/13/2005.

I will respond to your message when I return. For urgent matters, pls
contact SP Lim at [EMAIL PROTECTED] or 63629384.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Host Manager Question

2005-12-04 Thread George Sexton
I'm really trying to come up with something that is scriptable. I'm also
concerned that the saving function seems to force a reload of contexts. 

I want to do something like:

1) Get an organization name from the user.

2) Create a web application/user name/database automatically.

3) Deploy a virtual host with .mydomain.name, with an alias of
"calendar.theirdomain.name"

I have automated creation of DNS entries for .mydomain.name. I
can also see how to script creation of the virtual host. I'm just down to
how to force a save. 

I guess I need to try looking at the source code for the admin application.
I just really hate struts and was hoping there was some simple way of
getting it done.



George Sexton
MH Software, Inc.
http://www.mhsoftware.com/
Voice: 303 438 9585
  

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On 
> Behalf Of Yoav Shapira
> Sent: Sunday, December 04, 2005 1:43 PM
> To: Tomcat Developers List
> Subject: Re: Host Manager Question
> 
> Hi,
> One way that comes to mind is to do anything (at all) in the Admin
> webapp, then click its "commit changes" button.  This seems like a
> workaround, but I've used it in the past anyways because usually after
> deploying a new host I need to tweak some of its configuration...
> 
> Yoav
> 
> On 12/4/05, George Sexton <[EMAIL PROTECTED]> wrote:
> > After one has used the host manager to deploy a new host, 
> how do you force a
> > save of the server.xml so that when Tomcat is re-started 
> the host is still
> > there?
> >
> > George Sexton
> > MH Software, Inc.
> > http://www.mhsoftware.com/
> > Voice: 303 438 9585
> >
> >
> >
> > 
> -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> 
> 
> --
> Yoav Shapira
> System Design and Management Fellow
> MIT Sloan School of Management
> Cambridge, MA, USA
> [EMAIL PROTECTED] / www.yoavshapira.com
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Host Manager Question

2005-12-04 Thread Yoav Shapira
Hi,
It may be a fairly simple addition to the Manager and/or HostManager
servlets, if someone wanted to write the enhancement patch ;)

Yoav

On 12/4/05, George Sexton <[EMAIL PROTECTED]> wrote:
> I'm really trying to come up with something that is scriptable. I'm also
> concerned that the saving function seems to force a reload of contexts.
>
> I want to do something like:
>
> 1) Get an organization name from the user.
>
> 2) Create a web application/user name/database automatically.
>
> 3) Deploy a virtual host with .mydomain.name, with an alias of
> "calendar.theirdomain.name"
>
> I have automated creation of DNS entries for .mydomain.name. I
> can also see how to script creation of the virtual host. I'm just down to
> how to force a save.
>
> I guess I need to try looking at the source code for the admin application.
> I just really hate struts and was hoping there was some simple way of
> getting it done.
>
>
>
> George Sexton
> MH Software, Inc.
> http://www.mhsoftware.com/
> Voice: 303 438 9585
>
>
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> > Behalf Of Yoav Shapira
> > Sent: Sunday, December 04, 2005 1:43 PM
> > To: Tomcat Developers List
> > Subject: Re: Host Manager Question
> >
> > Hi,
> > One way that comes to mind is to do anything (at all) in the Admin
> > webapp, then click its "commit changes" button.  This seems like a
> > workaround, but I've used it in the past anyways because usually after
> > deploying a new host I need to tweak some of its configuration...
> >
> > Yoav
> >
> > On 12/4/05, George Sexton <[EMAIL PROTECTED]> wrote:
> > > After one has used the host manager to deploy a new host,
> > how do you force a
> > > save of the server.xml so that when Tomcat is re-started
> > the host is still
> > > there?
> > >
> > > George Sexton
> > > MH Software, Inc.
> > > http://www.mhsoftware.com/
> > > Voice: 303 438 9585
> > >
> > >
> > >
> > >
> > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
> >
> > --
> > Yoav Shapira
> > System Design and Management Fellow
> > MIT Sloan School of Management
> > Cambridge, MA, USA
> > [EMAIL PROTECTED] / www.yoavshapira.com
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
Yoav Shapira
System Design and Management Fellow
MIT Sloan School of Management
Cambridge, MA, USA
[EMAIL PROTECTED] / www.yoavshapira.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Host Manager Question

2005-12-04 Thread George Sexton
I don't know. I remember the last time I tried to write a patch.

George Sexton
MH Software, Inc.
http://www.mhsoftware.com/
Voice: 303 438 9585
  

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On 
> Behalf Of Yoav Shapira
> Sent: Sunday, December 04, 2005 2:06 PM
> To: Tomcat Developers List
> Subject: Re: Host Manager Question
> 
> Hi,
> It may be a fairly simple addition to the Manager and/or HostManager
> servlets, if someone wanted to write the enhancement patch ;)
> 
> Yoav
> 
> On 12/4/05, George Sexton <[EMAIL PROTECTED]> wrote:
> > I'm really trying to come up with something that is 
> scriptable. I'm also
> > concerned that the saving function seems to force a reload 
> of contexts.
> >
> > I want to do something like:
> >
> > 1) Get an organization name from the user.
> >
> > 2) Create a web application/user name/database automatically.
> >
> > 3) Deploy a virtual host with .mydomain.name, 
> with an alias of
> > "calendar.theirdomain.name"
> >
> > I have automated creation of DNS entries for  orgname>.mydomain.name. I
> > can also see how to script creation of the virtual host. 
> I'm just down to
> > how to force a save.
> >
> > I guess I need to try looking at the source code for the 
> admin application.
> > I just really hate struts and was hoping there was some 
> simple way of
> > getting it done.
> >
> >
> >
> > George Sexton
> > MH Software, Inc.
> > http://www.mhsoftware.com/
> > Voice: 303 438 9585
> >
> >
> > > -Original Message-
> > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> > > Behalf Of Yoav Shapira
> > > Sent: Sunday, December 04, 2005 1:43 PM
> > > To: Tomcat Developers List
> > > Subject: Re: Host Manager Question
> > >
> > > Hi,
> > > One way that comes to mind is to do anything (at all) in the Admin
> > > webapp, then click its "commit changes" button.  This seems like a
> > > workaround, but I've used it in the past anyways because 
> usually after
> > > deploying a new host I need to tweak some of its configuration...
> > >
> > > Yoav
> > >
> > > On 12/4/05, George Sexton <[EMAIL PROTECTED]> wrote:
> > > > After one has used the host manager to deploy a new host,
> > > how do you force a
> > > > save of the server.xml so that when Tomcat is re-started
> > > the host is still
> > > > there?
> > > >
> > > > George Sexton
> > > > MH Software, Inc.
> > > > http://www.mhsoftware.com/
> > > > Voice: 303 438 9585
> > > >
> > > >
> > > >
> > > >
> > > 
> -
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > >
> > > >
> > >
> > >
> > > --
> > > Yoav Shapira
> > > System Design and Management Fellow
> > > MIT Sloan School of Management
> > > Cambridge, MA, USA
> > > [EMAIL PROTECTED] / www.yoavshapira.com
> > >
> > > 
> -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
> >
> > 
> -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> 
> 
> --
> Yoav Shapira
> System Design and Management Fellow
> MIT Sloan School of Management
> Cambridge, MA, USA
> [EMAIL PROTECTED] / www.yoavshapira.com
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Bug report for Tomcat 3 [2005/12/04]

2005-12-04 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=CriticalMAJ=Major |
| |   |   MIN=Minor   NOR=Normal  ENH=Enhancement   |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
| 2350|Ver|Nor|2001-06-27|ServletConfig.getInitParameter() requires url-patt|
| 2478|Opn|Cri|2001-07-06|Passing Session variables between JSP's and Servle|
| 4551|Opn|Nor|2001-10-31|Ctx( /tt01 ): IOException in: R( /tt01 + /com/abc/|
| 4980|New|Min|2001-11-20|Startup message indicates incorrect log file  |
| 4994|New|Nor|2001-11-21|Tomcat needs a mechanism for clean and certain shu|
| 5064|New|Cri|2001-11-25|Socket write error when include files is more than|
| 5108|New|Maj|2001-11-26|Docs for Tomcat 3.2.x appear to be for Tomcat 3.3 |
| 5137|New|Nor|2001-11-27|Null pointer in class loader after attempting to r|
| 5160|Unc|Maj|2001-11-28|'IllegalStateException'   |
| 5331|New|Nor|2001-12-09|getPathInfo vs URL normalization  |
| 5510|New|Blk|2001-12-19|How to call ejb deployed in JBoss from Tomcat serv|
| 5756|New|Nor|2002-01-08|jspc.bat exits with wrong ERRORLEVEL  |
| 5797|New|Nor|2002-01-10|UnCatched ? StringIndexOutOfBoundsException: Strin|
| 6027|New|Maj|2002-01-25|Tomcat  Automatically shuts down as service   |
| 6168|New|Blk|2002-02-01|IllegalStateException |
| 6451|New|Cri|2002-02-14|Stackoverflow |
| 6478|New|Enh|2002-02-14|Default Tomcat Encoding   |
| 6488|Ver|Maj|2002-02-15|Error: 304. Apparent bug in default ErrorHandler c|
| 6648|New|Nor|2002-02-25|jakarta-servletapi build with java 1.4 javadoc err|
| 6702|New|Cri|2002-02-27|win 2k services not working   |
| 6796|New|Cri|2002-03-01|Tomcat dies periodically  |
| 6989|New|Maj|2002-03-08|Unable to read tld file during parallel JSP compil|
| 7013|New|Cri|2002-03-10|Entering a servlet path with non-ISO8859-1 charact|
| 7227|New|Nor|2002-03-19| directive don't work |
| 7626|New|Nor|2002-03-29|classloader not working properly  |
| 7652|New|Cri|2002-04-01|Tomcat stalls periodically|
| 7785|New|Blk|2002-04-06|tomcat bug in context reloading   |
| 7863|New|Maj|2002-04-09|I have a problem when running Tomcat with IIS |
| 8187|New|Cri|2002-04-17|Errors when Tomcat used with MS Access database   |
| 8239|New|Cri|2002-04-18|Resource temporary unavailable|
| 8263|New|Cri|2002-04-18|url-pattern easy to circumvent|
| 9250|New|Maj|2002-05-20|outOfMemoryError  |
| 9367|New|Maj|2002-05-23|HttpSessionBindingEvent not thrown for HttpSession|
| 9390|New|Nor|2002-05-24|jasper compilation error in tomcat|
| 9480|New|Nor|2002-05-29|Data connection pooling   |
| 9607|New|Maj|2002-06-04|precompile JSP|
| 9737|Ver|Nor|2002-06-10|ArrayIndexOutOfBoundsException when sending just p|
|10047|New|Cri|2002-06-20|IllegalStateException |
|10202|New|Maj|2002-06-25|Tomcat is not responding in time  |
|10357|Unc|Blk|2002-06-30|java.lang.IllegalArgumentException: Short Read|
|10406|New|Cri|2002-07-02|IllegalStateException |
|11087|New|Blk|2002-07-23|IllegalStateException |
|11286|New|Maj|2002-07-30|Tomcat threads not respond if increase JVM size   |
|11466|New|Nor|2002-08-05|ContextManager: SocketException reading request   |
|12156|New|Cri|2002-08-29|Apache and Tomcat 3.3.1 Interworking problem  |
|12194|New|Maj|2002-08-30|Tomcat does not send WWW-Authenticate header  |
|12852|New|Nor|2002-09-20|May be error in _jspService() -> out.flushBuffers(|
|14386|New|Maj|2002-11-08|Date headers corrupted using setDateHeader|
|15632|New|Nor|2002-12-23|Problem with the Tomcat Sessions Parameter on URL |
|16363|New|Cri|2003-01-23|Stack Overflow accessing compiled JSP - Tomcat 3.2|
|17081|New|Min|2003-02-14|Some javadoc comment fixes|
|17915|New|Maj|2003

Bug report for Tomcat 4 [2005/12/04]

2005-12-04 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=CriticalMAJ=Major |
| |   |   MIN=Minor   NOR=Normal  ENH=Enhancement   |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
| 3839|Opn|Enh|2001-09-26|Problem bookmarking login page|
| 4227|Opn|Enh|2001-10-17|Invalid CGI path  |
| 5329|New|Enh|2001-12-08|NT Service exits startup before Tomcat is finished|
| 5795|New|Enh|2002-01-10|Catalina Shutdown relies on localhost causing prob|
| 5829|New|Enh|2002-01-13|StandardManager needs to cope with sessions throwi|
| 5985|New|Enh|2002-01-23|Tomcat should perform a more restrictive validatio|
| 6600|Opn|Enh|2002-02-20|enodeURL adds 'jsession' when 'isRequestedSessionI|
| 6614|New|Enh|2002-02-21|Have Bootstrap and StandardClassLoader use the sam|
| 6671|New|Enh|2002-02-25|Simple custom tag example uses old declaration sty|
| 7043|New|Enh|2002-03-12|database user and password for JDBC Based Store   |
| 7374|New|Enh|2002-03-22|Apache Tomcat/4.0.1 message on standard output|
| 7676|New|Enh|2002-04-02|Allow name property to use match experssions in  without className in server.xml produces N|
|11069|Opn|Enh|2002-07-23|Tomcat not flag error if tld is outside of /WEB-IN|
|11129|New|Enh|2002-07-24|New valve for putting the sessionIDs in the reques|
|11248|New|Enh|2002-07-29|DefaultServlet doesn't send expires header|
|11754|Opn|Enh|2002-08-15|Synchronous shutdown script - shutdown.sh should w|
|12069|New|Enh|2002-08-27|Creation of more HttpSession objects for one previ|
|12658|New|Enh|2002-09-15|a proxy host and port at the  element level |
|12766|New|Enh|2002-09-18|Tomcat should use tld files in /WEB-INF/ over vers|
|13309|Opn|Enh|2002-10-04|Catalina calls System.exit()  |
|13634|New|Enh|2002-10-15|Allowing system properties to be substituted in co|
|13689|Opn|Enh|2002-10-16|Classloader paths for 'Common' classes and librari|
|13731|New|Enh|2002-10-17|Final request, response, session and other variabl|
|13846|New|Nor|2002-10-22|If-Modified-Since results in incorrect headers|
|13941|New|Enh|2002-10-24|reload is VERY slow   |
|13965|New|Enh|2002-10-25|Catalina.sh correction request for Tru64 Unix |
|13983|New|Nor|2002-10-25|RMI call from Web Application throws SocketExcepti|
|14097|New|Enh|2002-10-30|hardcoded registry value for vm lets tomcat servic|
|14416|New|Enh|2002-11-10|blank tag name in TLD cause NullPointerException  |
|14635|New|Enh|2002-11-18|Should be possible not to have -MM-DD in log f|
|14766|New|Enh|2002-11-22|Redirect Vavle|
|14993|New|Enh|2002-12-02|Possible obselete synchronized declaration|
|15115|New|Enh|2002-12-05|correct docs... XML parser *cannot* be overridden |
|15417|Opn|Enh|2002-12-16|Add port for forced compilation of JSP pages  |
|15570|New|Nor|2002-12-20|incorrect role-name mapping for "*" with respect t|
|15688|New|Enh|2002-12-27|full-qualified names instead of imports   |
|15893|New|Enh|2003-01-08|Need a getPort() method on Connector or similar fu|
|15941|New|Enh|2003-01-10|Expose rootCause exceptions at deeper levels  |
|15946|New|Nor|2003-01-10|Documentation change  |
|16185|New|Nor|2003-01-16|UserDatabase is not bound in this context |
|16294|New|Enh|2003-01-21|Configurable URL Decoding.|
|16357|New|Enh|2003-01-23|"connection timeout reached"  |
|16531|New|Enh|2003-01-29|Updating already deployed ".war" files in a single|
|16579|New|Enh|2003-01-30|documentation page layout/style breaks wrapping to|
|16596|New|Enh|2003-01-30|option for disabling log rotation |
|17070|New|Enh|2003-02-14|The Catalina Ant tasks do not allow for 'reusable'|
|17146|New|Enh|2003-02-18|Simplify build.xml using  whose target performs a 'forward' do|
|21669|New|Enh|2003-07-16|JNDIRealm roleBase pattern enahncement|
|21804|New|Enh|2003-07-22|Tomcat ignores "allowLinking" resource on DefaultC|
|22113|New|Enh|2003-08-04|Improvable Exception Message "Cannot create resour|
|22278|New|Enh|2003-08-10|[PATCH] Incl

Bug report for Watchdog [2005/12/04]

2005-12-04 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=CriticalMAJ=Major |
| |   |   MIN=Minor   NOR=Normal  ENH=Enhancement   |
| |   |   +-+
| |   |   | 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   |
+---+

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Bug report for Tomcat 5 [2005/12/04]

2005-12-04 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=CriticalMAJ=Major |
| |   |   MIN=Minor   NOR=Normal  ENH=Enhancement   |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|17310|Ver|Nor|2003-02-22|;jsessionid confuses StandardHostcan't find Co|
|19803|Ver|Maj|2003-05-09|manager reload fails and disables app - Incompatib|
|19958|Ver|Maj|2003-05-15|Problems reading ServletInputStream   |
|21045|Ver|Nor|2003-06-24|Manager app does find resources   |
|21600|Ver|Nor|2003-07-15|'s lost after manager stop/start or rel|
|22679|Ver|Enh|2003-08-24|how to access ssl session ID out of tomcat to prev|
|22986|Ver|Nor|2003-09-08|Web apps with context XML file don't start if CATA|
|24413|Ver|Nor|2003-11-04|bundled JMX implementation not compliant to specif|
|24943|Ver|Nor|2003-11-24|Tomcat 5.0.14 / Windows 2000 Service does not star|
|25078|Ver|Nor|2003-11-29|Catalina Ant Serverinfo task always fails |
|27338|Ver|Maj|2004-03-01|Wrong mappings for JSP Documents (.jspx)  |
|28039|New|Enh|2004-03-30|Cluster Support for SingleSignOn  |
|28633|Ass|Enh|2004-04-27|Add JMX Support to ClusterManager |
|28634|Ass|Enh|2004-04-27|Extend StandardManager/StandardSession for DeltaMa|
|28709|Ver|Nor|2004-04-30|javax.servlet.http.HttpServletRequest.isRequestedS|
|28875|Ver|Nor|2004-05-10|Multi-byte characters in default error page aren't|
|29091|Opn|Nor|2004-05-19|Non-ascii characters are not handled correctly... |
|29160|Ver|Enh|2004-05-23|precompile problem: _jspx_meth_* (javax.servlet.js|
|29494|Opn|Enh|2004-06-10|No way to set PATH when running as a service on Wi|
|29497|Unc|Nor|2004-06-10|Connection pool, redeployment |
|29521|Ver|Cri|2004-06-11|No destroy methods called on service shutdown |
|30241|Ver|Enh|2004-07-21|Enhance build script to use branch argument when c|
|30833|Ver|Nor|2004-08-24|request.getServerPort() returns wrong port (WAS: r|
|31125|Opn|Nor|2004-09-08|conf/web.xml not valid|
|31804|Opn|Maj|2004-10-20|setParent() is not called on nested tags in a tag |
|32081|Inf|   |2004-11-05|Wrapper scripts require a JDK to be present.  |
|32180|New|Nor|2004-11-11|EL functions are executed in privileged context   |
|32280|Ver|Cri|2004-11-17|Problem clustering tomcat when a failed server is |
|32569|Ass|Nor|2004-12-07|ServletContextListener will not die   |
|32593|Inf|Maj|2004-12-09|Server (Apache 2.0.48) reached MaxClients setting |
|32754|Inf|Nor|2004-12-17|Can't modify thread configuration attributes of AJ|
|32832|Ver|Maj|2004-12-23|request.getSession(false) fails to return null.   |
|33180|Ver|Nor|2005-01-20|JSTL automatic type conversion gives unexpected re|
|33262|Inf|Nor|2005-01-27|Service Manager autostart should check for adminis|
|33356|Inf|Maj|2005-02-02|Incorrect parsing of tag attributes   |
|33407|Inf|Nor|2005-02-05|\$ is quoted even with el-ignored=true|
|33453|Opn|Enh|2005-02-08|Jasper should recompile JSP files whose datestamps|
|33494|New|Enh|2005-02-10|jscv configure script fails on x86_64 |
|33650|Inf|Enh|2005-02-19|Jasper performance for multiple files processing  |
|33671|Opn|Enh|2005-02-21|Manual Windows service installation with custom na|
|33831|Ver|Nor|2005-03-03|RequestDispatcher.forward and resource missing|
|34006|Ver|Nor|2005-03-14|Undeploy of webapps with antiResourceLocking in ME|
|34016|Ver|Nor|2005-03-15|antiResourceLocking webapp fails to deploy on Tomc|
|34033|Ver|Nor|2005-03-16|Cannot delete users using Administration Tool weba|
|34076|Inf|Nor|2005-03-18|overriding content.xml docBase with manager webapp|
|34319|New|Nor|2005-04-06|StoreBase.processExpires() is very inefficient|
|34396|Inf|   |2005-04-11|security exception using datasource in|
|35606|New|Maj|2005-07-05|Problem with Session cookies and multiple webapps |
|35635|New|Nor|2005-07-06|Tomcat service does not log startup error messages|
|35710|New|Enh|2005-07-12|Cross-Context Session Replication |
|35715|New|Enh|2005-07-13|Buffering in JK needs to be configurable for IIS  |
|35746|Inf

Re: Host Manager Question

2005-12-04 Thread Yoav Shapira
What happened?  (Excuse my short memory and laziness to search...)

Yoav

On 12/4/05, George Sexton <[EMAIL PROTECTED]> wrote:
> I don't know. I remember the last time I tried to write a patch.
>
> George Sexton
> MH Software, Inc.
> http://www.mhsoftware.com/
> Voice: 303 438 9585
>
>
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> > Behalf Of Yoav Shapira
> > Sent: Sunday, December 04, 2005 2:06 PM
> > To: Tomcat Developers List
> > Subject: Re: Host Manager Question
> >
> > Hi,
> > It may be a fairly simple addition to the Manager and/or HostManager
> > servlets, if someone wanted to write the enhancement patch ;)
> >
> > Yoav
> >
> > On 12/4/05, George Sexton <[EMAIL PROTECTED]> wrote:
> > > I'm really trying to come up with something that is
> > scriptable. I'm also
> > > concerned that the saving function seems to force a reload
> > of contexts.
> > >
> > > I want to do something like:
> > >
> > > 1) Get an organization name from the user.
> > >
> > > 2) Create a web application/user name/database automatically.
> > >
> > > 3) Deploy a virtual host with .mydomain.name,
> > with an alias of
> > > "calendar.theirdomain.name"
> > >
> > > I have automated creation of DNS entries for  > orgname>.mydomain.name. I
> > > can also see how to script creation of the virtual host.
> > I'm just down to
> > > how to force a save.
> > >
> > > I guess I need to try looking at the source code for the
> > admin application.
> > > I just really hate struts and was hoping there was some
> > simple way of
> > > getting it done.
> > >
> > >
> > >
> > > George Sexton
> > > MH Software, Inc.
> > > http://www.mhsoftware.com/
> > > Voice: 303 438 9585
> > >
> > >
> > > > -Original Message-
> > > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
> > > > Behalf Of Yoav Shapira
> > > > Sent: Sunday, December 04, 2005 1:43 PM
> > > > To: Tomcat Developers List
> > > > Subject: Re: Host Manager Question
> > > >
> > > > Hi,
> > > > One way that comes to mind is to do anything (at all) in the Admin
> > > > webapp, then click its "commit changes" button.  This seems like a
> > > > workaround, but I've used it in the past anyways because
> > usually after
> > > > deploying a new host I need to tweak some of its configuration...
> > > >
> > > > Yoav
> > > >
> > > > On 12/4/05, George Sexton <[EMAIL PROTECTED]> wrote:
> > > > > After one has used the host manager to deploy a new host,
> > > > how do you force a
> > > > > save of the server.xml so that when Tomcat is re-started
> > > > the host is still
> > > > > there?
> > > > >
> > > > > George Sexton
> > > > > MH Software, Inc.
> > > > > http://www.mhsoftware.com/
> > > > > Voice: 303 438 9585
> > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > -
> > > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > > >
> > > > >
> > > >
> > > >
> > > > --
> > > > Yoav Shapira
> > > > System Design and Management Fellow
> > > > MIT Sloan School of Management
> > > > Cambridge, MA, USA
> > > > [EMAIL PROTECTED] / www.yoavshapira.com
> > > >
> > > >
> > -
> > > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > >
> > > >
> > >
> > >
> > >
> > -
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > >
> > >
> >
> >
> > --
> > Yoav Shapira
> > System Design and Management Fellow
> > MIT Sloan School of Management
> > Cambridge, MA, USA
> > [EMAIL PROTECTED] / www.yoavshapira.com
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
Yoav Shapira
System Design and Management Fellow
MIT Sloan School of Management
Cambridge, MA, USA
[EMAIL PROTECTED] / www.yoavshapira.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Host Manager Question

2005-12-04 Thread Remy Maucherat

Yoav Shapira wrote:

Hi,
One way that comes to mind is to do anything (at all) in the Admin
webapp, then click its "commit changes" button.  This seems like a
workaround, but I've used it in the past anyways because usually after
deploying a new host I need to tweak some of its configuration...


Possibly, this stuff just calls operation "storeConfig" on the server 
MBean. I didn't fully verify this, and don't really remember.


Rémy

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 37381] - pageContext.forward causes Illegal to clear() when buffer size == 0

2005-12-04 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=37381





--- Additional Comments From [EMAIL PROTECTED]  2005-12-05 01:39 ---
Created an attachment (id=17145)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=17145&action=view)
Patch to PageContextImpl to fix the bug

Patch created from Eclipse/SVN to fix the problem.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]