DO NOT REPLY [Bug 34856] - MacOSX 10.4 and Java 5 jnilibs causes ZipException when Tomcat loads non-jars

2005-10-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=34856





--- Additional Comments From [EMAIL PROTECTED]  2005-10-05 07:16 ---
J2SE 5.0 Release 3 Developer Preview 2 is out which has a fix for this bug. If
someone is an ADC member, could they download (from http://connect.apple.com)
and test this release to see if this bug is fixed.

-- 
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]



DO NOT REPLY [Bug 33453] - Jasper should recompile JSP files whose datestamps change in either direction (not just newer)

2005-10-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=33453





--- Additional Comments From [EMAIL PROTECTED]  2005-10-05 03:05 ---
> On access compilation and its friend the development mode - which you are 
> using
> or you would not have this "issue" - should not be used in production

By "access compilation" are you referring to the development="true" mode which 
causes recompilation 
on every access?

We rely on our JSP pages to be compiled when the date changes and the only 
*reliable* way to do this is 
to touch *all* JSP files whenever we change something.   I suspect it is 
because of the problem Jonathon 
has pointed out.  Unfortunately, this means the webapp is very slow after each 
deployment.  If this 
problem won't be fixed, what is the recommended way to avoid recompiling all 
pages in a production 
environment?

-- 
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]



DO NOT REPLY [Bug 36923] New: - Deactivated EL expressions are not parsed for jsp expressions/scriptlets/etc

2005-10-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=36923

   Summary: Deactivated EL expressions are not parsed for jsp
expressions/scriptlets/etc
   Product: Tomcat 5
   Version: 5.5.9
  Platform: All
OS/Version: All
Status: NEW
  Severity: normal
  Priority: P3
 Component: Jasper
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


JavaServer Pages Specification 2.0, section JSP.3.3.2 says:
---
Since the syntactic pattern ${expr} was not reserved in the JSP specifications
before JSP 2.0, there may be situations where such a pattern appears but the
intention is not to activate EL expression evaluation but rather to pass through
the pattern verbatim. To address this, the EL evaluation machinery can be
deactivated as indicated in this section.
[...]
The default mode for JSP pages in a Web Application delivered using a web.xml
using the Servlet 2.3 or earlier format is to ignore EL expressions; this
provides for backward compatibility.
---

However, even with deactivated EL expression evaluation, jsp code like:
<%@ page isELIgnored="true" %>${<%= "Hello, world!" %>}

will produce output like:
${<%= "Hello, world!" %>}

which is of course not backwards-compatible with Servlet 2.3 / JSP 1.2 container
(e.g., Tomcat 4.x), where the output would be:
${Hello, world!}

The ${...} syntax is widely used, and any pre-2.0 jsp pages having it would be
incompatible with Tomcat 5.x even though the standard tries to ensure the
compatibility.

-- 
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]



DO NOT REPLY [Bug 36905] - Tomcat WebDAV characters bug

2005-10-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=36905


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |NEEDINFO




--- Additional Comments From [EMAIL PROTECTED]  2005-10-05 00:18 ---
With IE as the client the same behaviour is seen for collections as for files
and the cause is the same - IE does not encode ';' in file names.

Just to see what would happen, I tried the folder creation tests with DAV
Explorer 0.91. Using TCP Mon from the Apache Axis project (a very handy utility)
DAV Explorer is also getting the headers wrong but not in the same way as IE.

DAV tuncates files with '#' in the name internally before they ar even sent to
Tomcat. For file names that contain ';' DAV explorer does not truncate but
neither does it encode.

Since you also reported your own client was having problems, I am going to set
this a NEEDINFO. The information I need is a sample client program that
demonstrates a problem with Tomcat.

As I have seen no sign of Tomcat misbehaviour here, if there is no further
update after a few weeks I will close this report as invalid.

-- 
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]



DO NOT REPLY [Bug 36905] - Tomcat WebDAV characters bug

2005-10-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=36905





--- Additional Comments From [EMAIL PROTECTED]  2005-10-04 23:50 ---
Testing files with 5.5.x from CVS, IE6, XP(SP2+all patches), URIEncoding="UTF-8"
and port="8080":

'+', ' ' and '#' are OK for files, ';' gets truncated

Looking at the headers using ieHTTPHeaders (I was very impressed that this works
with web folders as well as normal web pages) the fault lies with IE. You can
see from the headers that '#' is encoded but ';' is not. If you try forcing IE
to send the correct headers by using a file name with '%B3' it correctly encodes
the '%' and you see '%25B3' in the headers and '%B3' in your webdav directory.

If you have a *simple* test client that shows that any of these characters are
not correctly handled by Tomcat's WebDAV servlet please attach it so I can
investigate further but all indications so far are that for files this is a
client issue not a Tomcat problem. Best of luck getting MS to fix it...

I also suggest you look at bug36303 which you may well run into if you haven't
already.

I'll look at collections next...

-- 
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]



DO NOT REPLY [Bug 36922] New: - setup.sh file mis-advertised and missing

2005-10-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=36922

   Summary: setup.sh file mis-advertised and missing
   Product: Tomcat 5
   Version: 5.5.9
  Platform: Other
   URL: http://jakarta.apache.org/tomcat/tomcat-5.5-
doc/setup.html
OS/Version: Linux
Status: NEW
  Severity: minor
  Priority: P3
 Component: Catalina
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


On the above web page, the documentation states:

The file $CATALINA_HOME/bin/jsvc/native/tomcat.sh can be used as a template for
starting Tomcat automatically at boot time from /etc/init.d. The file is
currently setup for running Tomcat 4.1.x, so it is necessary to edit it and
change the classname from BootstrapService to Bootstrap.

First off, $CATALINA_HOME/bin/jsvc is a file, not a directory.  Nowhere in
$CATALINA_HOME, does a tomcat.sh file exist; it isn't in the tar file.

-- 
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]



DO NOT REPLY [Bug 36540] - pooled cluster replication does not seem ensure synchronized replication in tomcat 5.5.11

2005-10-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=36540





--- Additional Comments From [EMAIL PROTECTED]  2005-10-04 21:01 ---
synchronous: send each session change to other cluster members before returning
response to client.

asychronous: same as synchronous, but use mutiple sender connections (use any
one, that is not currently busy).

fastasync: put session change message into local queue and then return response
to client. A seperate thread waits for messages coming into the queue and then
send the messages to the other cluster members.

waitforack: when ending the message, wait for an ACK type answering message from
the other cluster members before proceeding (make sending the messages more
reliable).

If one needs exact synchronization: synchronous are pooled mode with waitforack.
Application gets into trouble, when replication gets stuck.

If one can live with some latency between changes on the primary node and their
replication to the other nodes and on the other hand the cluster should
influence application performance and stability only very little: use session
stickyness in load balancers combined with fastasync and no waitforack.

synchronous/pooled without waitforack: lower latency for replication, although
synchronization is not exact.

fastasync with waitforack: decoupling replication from request/response but
ensuring that replication is checked for success.

You are right, we should make the docs more precise. The features are yet very
new and as usual documentation takes a while.

-- 
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]



DO NOT REPLY [Bug 36912] - website is not updated for version 1.2.14.1

2005-10-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=36912


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-10-04 19:56 ---
This has been fixed for our new TLP site (tomcat.apache.org) that will be going
live shortly.

-- 
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: r294884 - in /tomcat/site/trunk: docs/ xdocs/ xdocs/stylesheets/

2005-10-04 Thread markt
Author: markt
Date: Tue Oct  4 10:52:38 2005
New Revision: 294884

URL: http://svn.apache.org/viewcvs?rev=294884&view=rev
Log:
Add connectors to downloads

Added:
tomcat/site/trunk/docs/download-connectors.cgi   (with props)
tomcat/site/trunk/xdocs/download-connectors.cgi   (with props)
Modified:
tomcat/site/trunk/docs/bugreport.html
tomcat/site/trunk/docs/contact.html
tomcat/site/trunk/docs/download-33.html
tomcat/site/trunk/docs/download-41.html
tomcat/site/trunk/docs/download-55.html
tomcat/site/trunk/docs/download-connectors.html
tomcat/site/trunk/docs/findhelp.html
tomcat/site/trunk/docs/getinvolved.html
tomcat/site/trunk/docs/heritage.html
tomcat/site/trunk/docs/index.html
tomcat/site/trunk/docs/irc.html
tomcat/site/trunk/docs/legal.html
tomcat/site/trunk/docs/lists.html
tomcat/site/trunk/docs/resources.html
tomcat/site/trunk/docs/svn.html
tomcat/site/trunk/docs/whichversion.html
tomcat/site/trunk/docs/whoweare.html
tomcat/site/trunk/xdocs/stylesheets/project.xml

Modified: tomcat/site/trunk/docs/bugreport.html
URL: 
http://svn.apache.org/viewcvs/tomcat/site/trunk/docs/bugreport.html?rev=294884&r1=294883&r2=294884&view=diff
==
--- tomcat/site/trunk/docs/bugreport.html (original)
+++ tomcat/site/trunk/docs/bugreport.html Tue Oct  4 10:52:38 2005
@@ -64,6 +64,9 @@
 Apache Tomcat 3.3
 
 
+Apache Tomcat Connectors
+
+
 http://archive.apache.org/dist/";>Archives
 
 

Modified: tomcat/site/trunk/docs/contact.html
URL: 
http://svn.apache.org/viewcvs/tomcat/site/trunk/docs/contact.html?rev=294884&r1=294883&r2=294884&view=diff
==
--- tomcat/site/trunk/docs/contact.html (original)
+++ tomcat/site/trunk/docs/contact.html Tue Oct  4 10:52:38 2005
@@ -62,6 +62,9 @@
 Apache Tomcat 3.3
 
 
+Apache Tomcat Connectors
+
+
 http://archive.apache.org/dist/";>Archives
 
 

Modified: tomcat/site/trunk/docs/download-33.html
URL: 
http://svn.apache.org/viewcvs/tomcat/site/trunk/docs/download-33.html?rev=294884&r1=294883&r2=294884&view=diff
==
--- tomcat/site/trunk/docs/download-33.html (original)
+++ tomcat/site/trunk/docs/download-33.html Tue Oct  4 10:52:38 2005
@@ -62,6 +62,9 @@
 Apache Tomcat 3.3
 
 
+Apache Tomcat Connectors
+
+
 http://archive.apache.org/dist/";>Archives
 
 

Modified: tomcat/site/trunk/docs/download-41.html
URL: 
http://svn.apache.org/viewcvs/tomcat/site/trunk/docs/download-41.html?rev=294884&r1=294883&r2=294884&view=diff
==
--- tomcat/site/trunk/docs/download-41.html (original)
+++ tomcat/site/trunk/docs/download-41.html Tue Oct  4 10:52:38 2005
@@ -62,6 +62,9 @@
 Apache Tomcat 3.3
 
 
+Apache Tomcat Connectors
+
+
 http://archive.apache.org/dist/";>Archives
 
 

Modified: tomcat/site/trunk/docs/download-55.html
URL: 
http://svn.apache.org/viewcvs/tomcat/site/trunk/docs/download-55.html?rev=294884&r1=294883&r2=294884&view=diff
==
--- tomcat/site/trunk/docs/download-55.html (original)
+++ tomcat/site/trunk/docs/download-55.html Tue Oct  4 10:52:38 2005
@@ -62,6 +62,9 @@
 Apache Tomcat 3.3
 
 
+Apache Tomcat Connectors
+
+
 http://archive.apache.org/dist/";>Archives
 
 

Added: tomcat/site/trunk/docs/download-connectors.cgi
URL: 
http://svn.apache.org/viewcvs/tomcat/site/trunk/docs/download-connectors.cgi?rev=294884&view=auto
==
--- tomcat/site/trunk/docs/download-connectors.cgi (added)
+++ tomcat/site/trunk/docs/download-connectors.cgi Tue Oct  4 10:52:38 2005
@@ -0,0 +1,6 @@
+#!/bin/sh
+# Wrapper script around mirrors.cgi script
+# (we must change to that directory in order for python to pick up the
+#  python includes correctly)
+cd /www/www.apache.org/dyn/mirrors
+/www/www.apache.org/dyn/mirrors/mirrors.cgi $*

Propchange: tomcat/site/trunk/docs/download-connectors.cgi
--
svn:eol-style = native

Propchange: tomcat/site/trunk/docs/download-connectors.cgi
--
svn:exectuable = *

Modified: tomcat/site/trunk/docs/download-connectors.html
URL: 
http://svn.apache.org/viewcvs/tomcat/site/trunk/docs/download-connectors.html?rev=294884&r1=294883&r2=294884&view=diff
==
--- tomcat/site/trunk/docs/download-connectors.html (original)
+++ tomcat/site/trunk/docs/download-connectors.html Tue Oct  4 10:52:38 2005
@@ -62,6 +62,9 @@
 Apache Tomcat 3.3
 
 
+Apache Tomcat Connectors
+
+
 http://archive.apache.org/dist/";>Archives
 
 

Modified: tomcat/site/trunk

Tomcat 5.5.12 / Jasper2 -> showstoppers ?

2005-10-04 Thread Henri Gomez
Hi to all,

I don't know if they should be considered showstopper but while
playing with 5.5.12 for some of our new applications, I see these
problems :

When using Jasper2 in JSP precompilation step, it load needed taglibs
jars defined in web.xml, but didn't release all of them after build
(here is how it's invoked)




As such, when you're using ANT from eclipse and you specify ANT should
use the same JRE as the workspace, you're puzzled and should restart
eclipse ;-(


Another serious problem in Jasper2 precompilation is when web.xml
contains external entites living in the webapp. We fixed Jasper2 in
5.5.9 to fixe this behaviour at runtime, but it appears it's also
needed in precompilation step.

Here is a sample web.xml where you could see use of entities located
in base.xml and jsp.xml (also located in WEB-INF).




http://java.sun.com/dtd/web-app_2_3.dtd"; [





]>



...

&base;
&jsp;

...

  
http://jakarta.apache.org/taglibs/random-1.0
/WEB-INF/lib/taglibs-random.jar
  

  


Did these bugs are showstoppers or should they be postponed to 5.5.13 ?

Regards

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



DO NOT REPLY [Bug 36905] - Tomcat WebDAV characters bug

2005-10-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=36905


[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC|[EMAIL PROTECTED]|




--- Additional Comments From [EMAIL PROTECTED]  2005-10-04 18:36 ---
Taking me off the CC list since I get see all these via tomcat-dev anyway.

Please do not add other people's e-mail addresses to a bugzilla entry unless
they ask you to.

-- 
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]



DO NOT REPLY [Bug 36912] New: - website is not updated for version 1.2.14.1

2005-10-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=36912

   Summary: website is not updated for version 1.2.14.1
   Product: Tomcat 4
   Version: Unknown
  Platform: PC
OS/Version: Linux
Status: NEW
  Severity: minor
  Priority: P2
 Component: Connector:JK/AJP
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


Hi,

I was looking for the last version of mod_jk and I couldn't download it (wrong
url for 1.2.13). I did find the source after clicking on binaries's url and
browsing the ftp directories.

Could you update the website and provide a link to the right version ?

Thanks.

-- 
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]



DO NOT REPLY [Bug 36911] New: - Make fails while building jsvc on mac os x, multiple errors

2005-10-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=36911

   Summary: Make fails while building jsvc on mac os x, multiple
errors
   Product: Tomcat 5
   Version: 5.5.9
  Platform: Macintosh
OS/Version: Mac OS X 10.4
Status: NEW
  Severity: minor
  Priority: P2
 Component: Unknown
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


Using a binary distribution of jakarta-tomcat-5.5.9 with compat installed on Mac
OS X Server 10.4 with Developer Tools installed, I was following the directions
at this document to compile the jsvc binary:

http://jakarta.apache.org/tomcat/tomcat-5.5-doc/setup.html
(See section "Unix Daemon").

Rather than using startup.sh, I wanted to call jsvc so I could pass the -user
flag and run tomcat as a non-priveleged user.

Steps followed to build binary:
sudo tar zxvf jsvc.tar.gz
cd $CATALINA_HOME/bin/jsvc-src
sudo autoconf
sudo chmod u+x configure
sudo ./configure
sudo make

The make output produces the following error:
make failed, error:
dso-dyld.c:54: error: conflicting types for 'dso_init'
dso.h:24: error: previous declaration of 'dso_init' was here
dso-dyld.c:76: error: conflicting types for 'dso_unlink'
dso.h:26: error: previous declaration of 'dso_unlink' was here
dso-dyld.c: In function 'dso_symbol':
dso-dyld.c:109: warning: operation on 'x' may be undefined
dso-dyld.c: At top level:
dso-dyld.c:127: warning: function declaration isn't a prototype
make[1]: *** [dso-dyld.o] Error 1
make: *** [native/all] Error 2

The version of make on this system is:
GNU Make 3.80

uname -a for my system:
Darwin localhost 8.2.0 Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT
2005; root:xnu-792.2.4.obj~3/RELEASE_PPC Power Macintosh powerpc

Obviously, I can continue to run the service as root using startup.sh, but I
figured you should know about this.

I spent some time searching the database and was unable to find a duplicate, but
if one exists, my apologies.

Thanks!
Billy Gray

-- 
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]



DO NOT REPLY [Bug 36540] - pooled cluster replication does not seem ensure synchronized replication in tomcat 5.5.11

2005-10-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=36540





--- Additional Comments From [EMAIL PROTECTED]  2005-10-04 14:13 ---
(In reply to comment #12)
> The differenc between 5.5.9 and 5.5.11 is that waitForAck is on default false
> for all sender modes. 
> Can you check with this config:


The waitForAck was my problem indeed. Thanks you very much for pointing out. 

But now I'm a bit confused about the difference between pooled and
fastasyncqueue cluster replication really is. The docs state "synchronous
replication guarantees the session to be replicated before the request returns."
But obviousely waitForAck is the controlling setting. Isn't it best to just
ignore the waitForAck setting and have it set false for fastasyncqueue and true
for pooled? 

The docs also state that "Asynchronous replication, should be used if you have
sticky sessions until fail over", which implies that pooled should be used else.
But as this bug report turned out, sticky sessions are mandatory for correct
clustering. Maybe you should change the docs accordingly (This should go into
another bug report imo, but my bug 36542 was resolved as duplicate)

Thanks, 
Christoph



-- 
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]



DO NOT REPLY [Bug 36905] New: - Tomcat WebDAV characters bug

2005-10-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=36905

   Summary: Tomcat WebDAV characters bug
   Product: Tomcat 5
   Version: 5.5.12
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: major
  Priority: P2
 Component: Servlets:WebDAV
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]


When writing files to the server using Tomcats WebDAV I am not able to write
files that contain theese characters in the filename (or create folders):

; (semicolon)
+ (plus)
# (pound)

I know these are reserved characters, so I have tried to URL encode them, but
Tomcat ignores the URL encoding and writes the URL encoded filenames to disk.
Eg. "myfile;01.txt" is saved like "myfile%B301.txt" on the server. Tomcat is
configured to do URL Encoding. If I don't do URL Encoding it simply cuts the end
of the filename from semicolon like "myfile".

I also tested this in Tomcat 5.5.12 with same problems. I have tested several
clients. IE 6.0, DavExplorer and own code.

This is my Connector configuration in server.xml:
 

This is what Tomcat logs in stdout.log:
09:14:36,040  INFO MediaServiceImpl: destination = Scala/content/
09:14:36,056  INFO MediaServiceImpl: MediaItem saved! Identifier: 7
09:14:36,072  INFO MediaServiceImpl: MediaItemFile saved! Identifier: 1
09:14:36,290  INFO [/rome-planning]: webdav: DefaultServlet.init:  input buffer
size=2048, output buffer size=2048
09:14:36,290  INFO [/rome-planning]: webdav: [PROPFIND] /
[Fatal Error] :-1:-1: Premature end of file.
09:14:36,384  INFO [/rome-planning]: webdav: [PUT] /data/Scala/content/myfile

stderr.log reports nothing.

-- 
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]