Re: Documentation Error

2005-04-01 Thread Ian F. Darwin
Durfee, Bernard wrote:
The documentation at http://www.uportal.org/administrators/building.html
does not mention the server.home property...
 

Wrong list. This is the list for problems with Tomcat. We have nothing 
to do with uportal.

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


Documentation Error

2005-04-01 Thread Durfee, Bernard
The documentation at http://www.uportal.org/administrators/building.html
does not mention the server.home property...

"Before deploying uPortal you may need to modify the build.properties.
Edit the file and find the deploy.home property."

...should read...

"Before deploying uPortal you may need to modify the build.properties.
Edit the file and find the server.home and deploy.home properties."

Bernard Durfee

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



DO NOT REPLY [Bug 18079] - Documentation error: configuration of resource caching (BaseDirContext).

2004-03-16 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=18079>.
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=18079

Documentation error: configuration of resource caching (BaseDirContext).

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-03-16 23:43 ---
This has been fixed in TC4.

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



DO NOT REPLY [Bug 23071] - Documentation & error handling re use of JRE

2003-10-03 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23071>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23071

Documentation & error handling re use of JRE

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE



--- Additional Comments From [EMAIL PROTECTED]  2003-10-03 14:30 ---


*** This bug has been marked as a duplicate of 23203 ***

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



DO NOT REPLY [Bug 23071] New: - Documentation & error handling re use of JRE

2003-09-10 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23071>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23071

Documentation & error handling re use of JRE

   Summary: Documentation & error handling re use of JRE
   Product: Tomcat 4
   Version: 4.1.27
  Platform: PC
OS/Version: Windows NT/2K
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Unknown
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Although the documentation does state that Tomcat needs a full JDK, rather than 
just a JRE, on no less than two occasions, a year apart, I have fallen in to 
the trap of thinking that all I need to install is the JRE. (No Java 
development would be carried out on the machines to which I was installing 
Tomcat.)

When the startup.bat file is executed in such cases, the error handling is 
misleading; an error message states that JAVA_HOME has not been set correctly. 
In fact, JAVA_HOME is quite correct - the problem is that JRE's do not contain 
tools such as javac.exe.

I strongly suggest that semi-conscious ;-) users are protected from this 
pitfall by the addition to the documentation of a prominent but brief 
explanation of why a JRE is insufficient to run Tomcat.

An additional suggestion, in the perhaps unlikely event that you have time to 
hand, would be to correct the error handling.

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



DO NOT REPLY [Bug 18079] New: - Documentation error: configuration of resource caching (BaseDirContext).

2003-03-17 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18079>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18079

Documentation error: configuration of resource caching (BaseDirContext).

   Summary: Documentation error: configuration of resource caching
(BaseDirContext).
   Product: Tomcat 4
   Version: 4.1.18
  Platform: All
OS/Version: All
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


According to online documentation, to de-activate caching of resources, we must
use the "cached" attribute of  element (nested in a  element).  



  



This is incorrect.  The org.apache.catalina.core.StandardContext will set the
caching value on the DirContext to the same value specified in the undocumented
"cachingAllowed" attribute of  (which default to true):

(from org/apache/catalina/core/StandardContext.java)

 public synchronized void setResources(DirContext resources) {

if (started) {
throw new IllegalStateException
(sm.getString("standardContext.resources.started"));
}

DirContext oldResources = this.webappResources;
if (oldResources == resources)
return;

if (resources instanceof BaseDirContext) {
((BaseDirContext) resources).setCached(isCachingAllowed());
}
if (resources instanceof FileDirContext) {
filesystemBased = true;
}
this.webappResources = resources;

// The proxied resources will be refreshed on start
this.resources = null;

support.firePropertyChange("resources", oldResources,
   this.webappResources);

}

Because of that, the "cached" attribute of the  element is useless. 
The only way to de-activate caching is to disable it at the context level:



I think the correct behaviour would be to logical-AND the "cachingAllowed"
property of the Context and the "cached" property of the DirContext.

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



FYI: [Fwd: documentation error]

2003-01-08 Thread Henri Gomez
<<< text/plain; charset=ISO-8859-1; format=flowed: Unrecognized >>>
--- Begin Message ---
I wished to point out that in the jakarta/tomcat documentation, there is an
error.  

Under server configuration reference, Host
(webapps\tomcat-docs\config\host.html), it shows, under the section heading
request filters, an example of using the valve xml tag for the server.xml
configuration file.


  ...
  
  
  ...


The problem is in the regular expression, it should read:


  ...
  
  
  ...


Without the '\w' and the '\d' the server will not start, as the regular
expression engine will throw an exception.

Excellent job, else, guys!  Thanks,

Shawn Stoffer
 <> 



Stoffer, Shawn D.vcf
Description: Binary data
--- End Message ---
--
To unsubscribe, e-mail:   
For additional commands, e-mail: 


FW: documentation error

2003-01-07 Thread Pier Fumagalli
Not acked... FYI...

Pier

-- Forwarded Message
> From: "Stoffer, Shawn D" <[EMAIL PROTECTED]>
> Date: Tue, 7 Jan 2003 11:55:11 -0700
> To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
> Subject: documentation error
> 
> I wished to point out that in the jakarta/tomcat documentation, there is an
> error.  
> 
> Under server configuration reference, Host
> (webapps\tomcat-docs\config\host.html), it shows, under the section heading
> request filters, an example of using the valve xml tag for the server.xml
> configuration file.
> 
> 
> ...
> allow="*.mycompany.com,www.yourcompany.com"/>
> deny="192.168.1.*"/>
> ...
> 
> 
> The problem is in the regular expression, it should read:
> 
> 
> ...
> allow="\w*.mycompany.com,www.yourcompany.com"/>
> deny="192.168.1.\d*"/>
> ...
> 
> 
> Without the '\w' and the '\d' the server will not start, as the regular
> expression engine will throw an exception.
> 
> Excellent job, else, guys!  Thanks,
> 
> Shawn Stoffer
> <>
> 

-- End of Forwarded Message




Stoffer, Shawn D.vcf
Description: Binary data
--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>


DO NOT REPLY [Bug 12952] - Documentation error for Tyrex Connection Pooling

2002-09-24 Thread bugzilla

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12952>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12952

Documentation error for Tyrex Connection Pooling

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2002-09-24 12:14 ---
Fixed (will be in 4.1.13).

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




DO NOT REPLY [Bug 12952] New: - Documentation error for Tyrex Connection Pooling

2002-09-24 Thread bugzilla

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12952>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12952

Documentation error for Tyrex Connection Pooling

   Summary: Documentation error for Tyrex Connection Pooling
   Product: Tomcat 4
   Version: 4.1.10
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Webapps:Documentation
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]




  
name
myDataSource
  


Notice the "value" is closed by "name" rather than "value"

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




[DOCUMENTATION ERROR] FW: The Tomcat 4 Servlet-JSP Container - Class Loader INFO

2002-02-28 Thread Paulo Gaspar


-Original Message-
From: CTP Steve Temple [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 28, 2002 2:57 PM
To: [EMAIL PROTECTED]
Subject: The Tomcat 4 Servlet-JSP Container - Class Loader INFO


Hi,

Just a quick one, I noticed that on the following page under Quick Start the
s is missing from the end of /WEB-INF/classes

 http://jakarta.apache.org/tomcat/tomcat-4.0-doc/class-loader-howto.html

Thanks

Steve

--
Steve Temple
Software Engineer
CTP information management
+44 (0)1242 542271
[EMAIL PROTECTED]
www.ctpi.co.uk



The Tomcat 4 Servlet-JSP Container - Class Loader INFO.url
Description: Binary data

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 


DO NOT REPLY [Bug 6486] - Documentation error for RPM install

2002-02-19 Thread bugzilla

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6486>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6486

Documentation error for RPM install

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2002-02-19 17:51 ---
The correct way is to use tomcat4 and jasper4 now in
TC 4.0.2

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




DO NOT REPLY [Bug 6486] - Documentation error for RPM install

2002-02-15 Thread bugzilla

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6486>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6486

Documentation error for RPM install

[EMAIL PROTECTED] changed:

   What|Removed |Added

  Component|Unknown |Installable Packages

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




DO NOT REPLY [Bug 6486] New: - Documentation error for RPM install

2002-02-15 Thread bugzilla

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6486>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6486

Documentation error for RPM install

   Summary: Documentation error for RPM install
   Product: Tomcat 4
   Version: 4.0.2 Final
  Platform: PC
OS/Version: Linux
Status: NEW
  Severity: Major
  Priority: Other
 Component: Unknown
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


If you install tomcat4-4.0.2-1.noarch.rpm, the instructions in the
RUNNING.TXT file are incorrect (startup.sh does not exist). It needs
to reference the created /etc/rc.d/rc*.d/S80tomcat4 script (which
doesn't appear to work anyway, but that's another problem).

///Peter

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