DO NOT REPLY [Bug 35809] New: - JkMountCopy don't work

2005-07-21 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=35809.
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=35809

   Summary: JkMountCopy don't work
   Product: Tomcat 5
   Version: 5.5.9
  Platform: All
OS/Version: Linux
Status: NEW
  Severity: major
  Priority: P2
 Component: Native:JK
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


The JkMountCopy option does not have any effects due to a bug in the
merge_jk_config function of mod_jk.c.

The patch to correct this problem is attached with this bug report.

-- 
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 35809] - JkMountCopy don't work

2005-07-21 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=35809.
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=35809





--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 08:59 ---
Created an attachment (id=15727)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=15727action=view)
Patch to correct the bug


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



cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/ant/jmx JMXAccessorTask.java

2005-07-21 Thread pero
pero2005/07/21 00:19:12

  Modified:catalina/src/share/org/apache/catalina/ant/jmx
JMXAccessorTask.java
  Log:
  Fix get Array Length
  
  Revision  ChangesPath
  1.8   +3 -3  
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/ant/jmx/JMXAccessorTask.java
  
  Index: JMXAccessorTask.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/ant/jmx/JMXAccessorTask.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- JMXAccessorTask.java  19 Jul 2005 08:38:27 -  1.7
  +++ JMXAccessorTask.java  21 Jul 2005 07:19:12 -  1.8
  @@ -554,7 +554,7 @@
   if(isEcho()) {
   if (result.getClass().isArray()) {
   Object array[] = (Object[]) result;
  -for (int i = 0; i  array.length; i++) {
  +for (int i = 0; i  Array.getLength(result); i++) {
   handleOutput(name + . + i + = + Array.get(result, 
i));
   }
   } else
  @@ -619,7 +619,7 @@
   if (isSeparatearrayresults()) {
   Object array[] = (Object[]) result;
   int size = 0 ;
  -for (int i = 0; i  array.length; i++) {
  +for (int i = 0; i  Array.getLength(result); i++) {
   if(setProperty(propertyPrefix + . + size , 
Array.get(result, i))) {
   size++;
   }
  
  
  

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



Trouble with multipart/form-data and servletname

2005-07-21 Thread Eric Hartmann
Hello,

I'm testing our applicatio under Tomcat 5.5.9 (under Linux and with sun
jdk 1.4.2_08) and I have the following behaviour:

The getServletName() return
org.apache.catalina.INVOKER.com.sharedvalue.document.servlet.admin.UploadFiles
when I use a form with enctype=multipart/form-data that call a servlet
named com.sharedvalue.document.servlet.admin.UploadFiles. I was
expecting com.sharedvalue.document.servlet.admin.UploadFiles. This
behaviour occurs only when the form is a multipart.

As this breaks some functionnality in our application, I would like to
know it's a normal behaviour ?

Thanks in advance,

-Eric

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



Re: New tag ?

2005-07-21 Thread Peter Rossbach

Yes,

I also think we can build a 5.5.10 release with all the new stuff. The 
new cluster redesign version is yet only tested under small
load. Better I commit my new jkstatus task after my three week holiday 
for next release (5.5.11).


I have add a new lib (catalina-jmx-ant.jar) for jmx ant tasks to 
server/lib and two ant scripts include at bin, but I have not test the 
release

included this things also.

Greetings from ApacheCon
Peter

Remy Maucherat schrieb:


Hi,

I think the APR capabilities that we added are now sufficiently stable 
to warrant testing. If the other areas that saw changes recently 
(clustering, JK) are ok too, then it could be a good idea to release a 
new build.


Rémy

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



cvs commit: jakarta-tomcat-catalina/webapps/docs monitoring.xml

2005-07-21 Thread pero
pero2005/07/21 01:49:33

  Modified:webapps/docs monitoring.xml
  Log:
  Add a note for JSR 160 Connector from Sun and local firewall problems!!
  
  Revision  ChangesPath
  1.4   +5 -3  jakarta-tomcat-catalina/webapps/docs/monitoring.xml
  
  Index: monitoring.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/monitoring.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- monitoring.xml1 Jul 2005 16:52:19 -   1.3
  +++ monitoring.xml21 Jul 2005 08:49:32 -  1.4
  @@ -61,6 +61,8 @@
   other user! Remove all other users under windows to access this file.
   /li
   /ol
  +bNote:/bThe JSR 160 JMX-Adaptor opens a second data protocol port. 
That is a problem
  +when you have installed a local firewall.br/
   /p
   pActivate JMX MX4J Http Adaptor with Java 1.4:
   ol
  @@ -425,12 +427,12 @@
   failonerror=false
   name=Catalina:type=Cluster,host=${tomcat.application.host}
   resultproperty=cluster
  -/
  +/gt;
   lt;jmx:get
   
name=Catalina:type=IDataSender,host=${tomcat.application.host},senderAddress=${cluster.backup.address},senderPort=${cluster.backup.port}
 
   attribute=connected
   resultproperty=datasender.connected
  -if=cluster.0.name /
  +if=cluster.0.name /gt;
   /source
   /p  
   
  @@ -608,7 +610,7 @@
   operation=getSessionAttribute
   resultproperty=hellogt;
lt;arg value=${sessionid.0}/gt;
  - lt;arg value=Hello/gt;
  + lt;arg value=Hello /gt;
lt;/jmx:invokegt;
   /source
   /p
  
  
  

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



Tomcat win32 installer source scripts

2005-07-21 Thread Robert Oschwald
Hi all,

I'm looking for the win32 installer script files for tomcat 5.0.28 but had no
luck so far.

As CVS browsing is disabled on the jakarta homepage, I downloaded a lot of
projects using rsync but didn't have luck.
Can you please give me a hint?

Thanks,
Robert








___ 
Gesendet von Yahoo! Mail - Jetzt mit 1GB Speicher kostenlos - Hier anmelden: 
http://mail.yahoo.de

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



DO NOT REPLY [Bug 35812] New: - CoyoteRequestFacade.getSession getting nothing - time out?

2005-07-21 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=35812.
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=35812

   Summary: CoyoteRequestFacade.getSession getting nothing - time
out?
   Product: Tomcat 4
   Version: 4.1.8
  Platform: Other
OS/Version: other
Status: NEW
  Severity: normal
  Priority: P2
 Component: Connector:Coyote HTTP/1.1
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


I'm not sure it's MVC(Stucts) or tomcat bug, but a project using STUCTS with 
Tomcat 4.1.8 encountered the following error.

the time for business-logic processing about 40-50 seconds in a servlet, it 
seemed Tomcat tried to display the JSP without letting the servlet to finish 
all procedure, then poped up


   at org.apache.coyote.tomcat4.CoyoteRequestFacade.getSession
(CoyoteRequestFacade.java:365)

at org.apache.coyote.tomcat4.CoyoteRequestFacade.getSession
(CoyoteRequestFacade.java:375)

at myclass.getApplicationData(UtilSession.java:34)

at myclass.addApplicationData(UtilSession.java:56)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)

at org.apache.coyote.tomcat4.CoyoteRequestFacade.getSession
(CoyoteRequestFacade.java:365)

at org.apache.coyote.tomcat4.CoyoteRequestFacade.getSession
(CoyoteRequestFacade.java:375)

at myclass.getApplicationData(UtilSession.java:34)

at myclass.addApplicationData(UtilSession.java:56)
.BaseController.doService(BaseController.java:774)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)

at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter
(ApplicationFilterChain.java:247)

at org.apache.catalina.core.ApplicationFilterChain.doFilter
(ApplicationFilterChain.java:193)

at org.apache.catalina.core.StandardWrapperValve.invoke
(StandardWrapperValve.java:260)

at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNex
t(StandardPipeline.java:643)

at org.apache.catalina.core.StandardPipeline.invoke
(StandardPipeline.java:480)

at org.apache.catalina.core.ContainerBase.invoke
(ContainerBase.java:995)

at org.apache.catalina.core.StandardContextValve.invoke
(StandardContextValve.java:191)

at 
org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNex
t(StandardPipeline.java:643)

at org.apache.catalina.core.StandardPipeline.invoke
(StandardPipeline.java:480)

at org.apache.catalina.core.ContainerBase.invoke
(ContainerBase.java:995)

at org.apache.catalina.core.StandardContext.invoke
(StandardContext.java:2415)


Actually myclass has been modified, no need for it to send msg to tomcat-
class.


sorry if it's a bug from somewhere, like stucts controller time handling. but 
so far I had no way to find out the time-setting factor in stucts.

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



Re: binary streaming / content-type problem with mod_jk ?

2005-07-21 Thread Jérôme Chauvin

Thanks for your answer Henri :)
I agree with you, finally I don't think the problem comes from mod_jk
It may be Apache (using mod_jk and Tomcat) like described by Stuart 
Hynd in his post on this page : http://www.junlu.com/msg/107218.html


Or, perhaps, QuickTime 6 which is more weaker than QT7 which doesn't 
care about the thing which makes the problem (and I would like to know 
where this thing comes from).


But the incredible thing is that, using this : 
http://localhost:8080/my_test/BinaryStreamingit works perfectly on 
QT6  (without the 8080 port, the latence problem appears - QT6 or the 
servlet or Apache, is waiting for the video file entirely created 
before starting to play it)...



Any other suggestions or opinions about this mystery ? :)



Jérôme Chauvin

OPSOMAI
77, rue de Charonne
75011 Paris - France
Tél : +33 (0)1 58 39 38 22
Fax : +33 (0)1 43 70 70 72
@ : [EMAIL PROTECTED]
URL : http://www.opsomai.com

Le 20 juil. 05, à 23:24, Henri Gomez a écrit :

not true, mod_jk didn't change the mime type provided by servlet 
output.


I'm doing it on productions servers to handle on the fly generated PDFs

2005/7/20, Jérôme Chauvin [EMAIL PROTECTED]:

Any ideas ?
It would be helpful :)
Thanks,

Jérôme Chauvin

Le 19 juil. 05, à 10:09, Jérôme Chauvin a écrit :


Hi all !

I've developed a servlet (BinaryStreaming based on
StreamingContent by Raj Behera) which does a binary stream of a 
mpeg

video file which is created progressively (by another
servlet/software/Unix command/... not important ) and finally read 
and

played by Quicktime.
I use Apache and Tomcat so I've installed mod_jk

All work well (- MacOS and Windows) but... :
If I go on http://localhost:8080/my_test/BinaryStreaming it
works well with QuickTime 7 and QuickTime 6 (6, 6.5, 6.5.2, ...).

I have mod_jk so I can go on
http://localhost/my_test/BinaryStreaming   and here it still 
works

well with QT7.
But QT6 seems to wait that the video file is entirely created to 
start

the viewing instead of starting to play the movie as soon as there is
data in it, progressively.
- like it does with QT7 and QT6 with :8080  OR  when I use QT7
without :8080.

I think it's due to mod_jk but I've no idea to make it work


I've found that another person had a similar problem, but no answer
was given :
http://www.junlu.com/msg/107218.html

This message was posted in 09/2004 and it seems that Apache causes
problems with pre-defined MIME-Types.



Does someone have an answer or an idea ? :-)
I really need to fix this ! :(

Thanks in advance.  :o)

Regards,

Jérôme

---
Jérôme Chauvin

OPSOMAI
77, rue de Charonne
75011 Paris - France
Tél : +33 (0)1 58 39 38 22
Fax : +33 (0)1 43 70 70 72
@ : [EMAIL PROTECTED]
URL : http://www.opsomai.com




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



Re: Support JSS in Tomcat

2005-07-21 Thread Remy Maucherat

Christine Ho wrote:

Thanks. It works.

JSS can be used under either Mozilla Public License
(MPL) or LGPL. Is MPL or LGPL compatible with ASF
license? The good thing about JSS is that it is
FIPS-140 compliant.


First, the Tomcat portion of the code needs to be donated to the ASF. 
The code cannot import LGPL packages, but I don't know about MPL (I'd 
say it's ok).


Rémy

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



cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/ant/jmx JMXAccessorTask.java

2005-07-21 Thread pero
pero2005/07/21 03:45:46

  Modified:catalina/src/share/org/apache/catalina/ant/jmx
JMXAccessorTask.java
  Log:
  remove useless array cast
  
  Revision  ChangesPath
  1.9   +1 -3  
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/ant/jmx/JMXAccessorTask.java
  
  Index: JMXAccessorTask.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/ant/jmx/JMXAccessorTask.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- JMXAccessorTask.java  21 Jul 2005 07:19:12 -  1.8
  +++ JMXAccessorTask.java  21 Jul 2005 10:45:45 -  1.9
  @@ -553,7 +553,6 @@
   protected void echoResult(String name,Object result ) {
   if(isEcho()) {
   if (result.getClass().isArray()) {
  -Object array[] = (Object[]) result;
   for (int i = 0; i  Array.getLength(result); i++) {
   handleOutput(name + . + i + = + Array.get(result, 
i));
   }
  @@ -617,7 +616,6 @@
   }
   } else if (result.getClass().isArray()) {
   if (isSeparatearrayresults()) {
  -Object array[] = (Object[]) result;
   int size = 0 ;
   for (int i = 0; i  Array.getLength(result); i++) {
   if(setProperty(propertyPrefix + . + size , 
Array.get(result, i))) {
  
  
  

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



Re: New tag ?

2005-07-21 Thread Remy Maucherat

Peter Rossbach wrote:

Yes,

I also think we can build a 5.5.10 release with all the new stuff. The 
new cluster redesign version is yet only tested under small
load. Better I commit my new jkstatus task after my three week holiday 
for next release (5.5.11).


Sounds good.

I have add a new lib (catalina-jmx-ant.jar) for jmx ant tasks to 
server/lib and two ant scripts include at bin, but I have not test the 
release

included this things also.


It should be included, no problem (it uses patterns like server/**, and 
the installer uses server/lib).


Rémy

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



RE: New tag ?

2005-07-21 Thread Yoav Shapira
Hi,
I'm OK with cutting 5.5.10 tomorrow or Saturday.  If that's too early, let's
pick a different time.

After 5.5.10, I want to talk about SVN migration again ;)  I'm aware of the
lack of satisfaction among the CVS GUI users, but infra is cutting off CVS
on January 1st, and for me personally, August seems like a great time to do
the transition since it's traditionally a low-activity period.

Yoav Shapira
System Design and Management Fellow
MIT Sloan School of Management / School of Engineering
Cambridge, MA USA
[EMAIL PROTECTED] / [EMAIL PROTECTED]

 -Original Message-
 From: Remy Maucherat [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, July 20, 2005 6:43 AM
 To: Tomcat Developers List
 Subject: New tag ?
 
 Hi,
 
 I think the APR capabilities that we added are now sufficiently stable
 to warrant testing. If the other areas that saw changes recently
 (clustering, JK) are ok too, then it could be a good idea to release a
 new build.
 
 Rémy
 
 -
 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]



cvs commit: jakarta-tomcat-catalina/webapps/docs apr.xml

2005-07-21 Thread remm
remm2005/07/21 06:24:53

  Modified:webapps/docs apr.xml
  Log:
  - Add sources location.
  
  Revision  ChangesPath
  1.7   +2 -0  jakarta-tomcat-catalina/webapps/docs/apr.xml
  
  Index: apr.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/apr.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- apr.xml   13 Jul 2005 16:20:16 -  1.6
  +++ apr.xml   21 Jul 2005 13:24:53 -  1.7
  @@ -72,6 +72,8 @@
   /p
   
   p
  +  The wrapper library sources are located in the Tomcat sources bundle, 
in the 
  +  codejakarta-tomcat-connectors/jni/native/code.
 Once the build environment is installed, the wrapper library can be 
compiled using:
 source./configure amp;amp; make amp;amp; make install/source
   /p
  
  
  

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



Re: New tag ?

2005-07-21 Thread Remy Maucherat

Yoav Shapira wrote:

Hi,
I'm OK with cutting 5.5.10 tomorrow or Saturday.  If that's too early, let's
pick a different time.


I don't have further code changes to add in this build, it seems.


After 5.5.10, I want to talk about SVN migration again ;)  I'm aware of the
lack of satisfaction among the CVS GUI users, but infra is cutting off CVS
on January 1st, and for me personally, August seems like a great time to do
the transition since it's traditionally a low-activity period.


It's not really a UI thing for me. One feature I use often are revision 
lists for a particular file, to be able to tell where a bug has been 
introduced (I then do diffs between revisions). It seems with SVN I have 
to retrieve the full revision list for the repository (which will take 
hours). If someone can offer a workaround for this problem, then I'll 
support a move to SVN :)


Rémy

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



DO NOT REPLY [Bug 35819] New: - Removal of WorkDir on undeploy

2005-07-21 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=35819.
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=35819

   Summary: Removal of WorkDir on undeploy
   Product: Tomcat 5
   Version: 5.5.9
  Platform: PC
OS/Version: Windows 2000
Status: NEW
  Severity: normal
  Priority: P2
 Component: Catalina
AssignedTo: tomcat-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


When an app is undeployed via the manager (that was previously deployed with the
manager), its associated work directory is not removed from Tomcat.  This is on
Windows 2000, whether Tomcat is executed as a service OR from the command line.
 This can lead to stale JSPs being executed, among other things.

Looking at the source code, it appears as though the work dir was *intended* to
be removed when the Context is destroyed.  The following patch to the 5.5.9 code
base seems to fix the problem:

---
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/ContextConfig.java.orig
2005-03-26 13:24:02.0 -0500
+++
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/ContextConfig.java
2005-07-15 15:00:36.156708000 -0400
@@ -1240,7 +1240,7 @@
 // Called from StandardContext.destroy()
 if (log.isDebugEnabled())
 log.debug(sm.getString(contextConfig.destroy));
-String workDir = ((StandardContext) context).getWorkDir();
+String workDir = ((StandardContext) context).getWorkPath();
 if (workDir != null)
 ExpandWar.delete(new File(workDir));
 }

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



Re: New tag ?

2005-07-21 Thread edegraaf
Remy,

I some how got on your Tomcat development distribution listing.  Could
you please work with the distribution team member to remove me from this
activity.

Thank you,

Everett DeGraaf
Abex Division
Parker Hannifin Corporation
Phone:  269 384.4014
FAX:  269 384.4025
e-mail: [EMAIL PROTECTED]



   
  Remy Maucherat
   
  [EMAIL PROTECTED]To:   Tomcat Developers 
List tomcat-dev@jakarta.apache.org
   cc:  
   
  07/21/2005 07:34 Subject:  Re: New tag ?  
   
  AM
   
  Please respond to 
   
  Tomcat   
   
  Developers List  
   

   




Peter Rossbach wrote:
 Yes,

 I also think we can build a 5.5.10 release with all the new stuff. The
 new cluster redesign version is yet only tested under small
 load. Better I commit my new jkstatus task after my three week holiday
 for next release (5.5.11).

Sounds good.

 I have add a new lib (catalina-jmx-ant.jar) for jmx ant tasks to
 server/lib and two ant scripts include at bin, but I have not test the
 release
 included this things also.

It should be included, no problem (it uses patterns like server/**, and
the installer uses server/lib).

Rémy

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




-
PLEASE NOTE: The preceding information may be confidential or privileged.
It only should be used or disseminated for the purpose of conducting
business with Parker. If you are not an intended recipient, please notify
the sender by replying to this message and then delete the information from
your system. Thank you for your cooperation.


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



Re: Support JSS in Tomcat

2005-07-21 Thread Bill Barker

- Original Message -
From: Remy Maucherat [EMAIL PROTECTED]
To: Tomcat Developers List tomcat-dev@jakarta.apache.org
Sent: Thursday, July 21, 2005 3:03 AM
Subject: Re: Support JSS in Tomcat


Christine Ho wrote:
 Thanks. It works.

 JSS can be used under either Mozilla Public License
 (MPL) or LGPL. Is MPL or LGPL compatible with ASF
 license? The good thing about JSS is that it is
 FIPS-140 compliant.

First, the Tomcat portion of the code needs to be donated to the ASF.
The code cannot import LGPL packages, but I don't know about MPL (I'd
say it's ok).


MPL is listed as ok on http://wiki.apache.org/jakarta/LicenceIssues.

Rémy





This message is intended only for the use of the person(s) listed above as the 
intended recipient(s), and may contain information that is PRIVILEGED and 
CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or 
distribute this message or any attachment. If you received this communication 
in error, please notify us immediately by e-mail and then delete all copies of 
this message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through 
the Internet is not secure. Do not send confidential or sensitive information, 
such as social security numbers, account numbers, personal identification 
numbers and passwords, to us via ordinary (unencrypted) e-mail.


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



Re: Support JSS in Tomcat

2005-07-21 Thread Jean-frederic Clere

Bill Barker wrote:


- Original Message -
From: Remy Maucherat [EMAIL PROTECTED]
To: Tomcat Developers List tomcat-dev@jakarta.apache.org
Sent: Thursday, July 21, 2005 3:03 AM
Subject: Re: Support JSS in Tomcat


 


Christine Ho wrote:
   


Thanks. It works.

JSS can be used under either Mozilla Public License
(MPL) or LGPL. Is MPL or LGPL compatible with ASF
license? The good thing about JSS is that it is
FIPS-140 compliant.
 


First, the Tomcat portion of the code needs to be donated to the ASF.
The code cannot import LGPL packages, but I don't know about MPL (I'd
say it's ok).

   



MPL is listed as ok on http://wiki.apache.org/jakarta/LicenceIssues.
 


But it says in comments:

(confirm. 1.0, 1.1 different?)

 


Rémy
   







This message is intended only for the use of the person(s) listed above as the 
intended recipient(s), and may contain information that is PRIVILEGED and 
CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or 
distribute this message or any attachment. If you received this communication 
in error, please notify us immediately by e-mail and then delete all copies of 
this message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through 
the Internet is not secure. Do not send confidential or sensitive information, 
such as social security numbers, account numbers, personal identification 
numbers and passwords, to us via ordinary (unencrypted) e-mail.


-
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: New tag ?

2005-07-21 Thread Jean-frederic Clere

Remy Maucherat wrote:


Yoav Shapira wrote:


Hi,
I'm OK with cutting 5.5.10 tomorrow or Saturday.  If that's too 
early, let's

pick a different time.



I don't have further code changes to add in this build, it seems.

After 5.5.10, I want to talk about SVN migration again ;)  I'm aware 
of the
lack of satisfaction among the CVS GUI users, but infra is cutting 
off CVS
on January 1st, and for me personally, August seems like a great time 
to do

the transition since it's traditionally a low-activity period.



In my new work, I can't use cvs (only http/https it accepted by the proxy).



It's not really a UI thing for me. One feature I use often are 
revision lists for a particular file, to be able to tell where a bug 
has been introduced (I then do diffs between revisions). It seems with 
SVN I have to retrieve the full revision list for the repository 
(which will take hours). If someone can offer a workaround for this 
problem, then I'll support a move to SVN :)


How do you do this in cvs?



Rémy

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



DO NOT REPLY [Bug 35812] - CoyoteRequestFacade.getSession getting nothing - time out?

2005-07-21 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=35812.
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=35812


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 20:39 ---
Nothing here to indicate a Tomcat bug. Please use the tomcat-user mailing list.

-- 
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 and sites

2005-07-21 Thread Keith Wannamaker

Remy, you're right, this isn't good--

$ time svn praise CHANGES | wc
svn: Caught signal
real25m56.794s

Side question-- is the website move just waiting to be done by somebody? 
 I don't mind moving things over and putting a redirect at the old one, 
if it is time for that.


Also, I tried to subscribe to [EMAIL PROTECTED] but no joy, I assume 
the lists are not up yet?


Thanks,
Keith


Remy Maucherat wrote:
introduced (I then do diffs between revisions). It seems with SVN I have 
to retrieve the full revision list for the repository (which will take 
hours). If someone can offer a workaround for this problem, then I'll 
support a move to SVN :)


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



cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2005-07-21 Thread yoavs
yoavs   2005/07/21 12:57:17

  Modified:catalina/src/conf catalina.properties
   catalina/src/share/org/apache/catalina/startup
catalina.properties
   webapps/docs changelog.xml
  Log:
  Bugzilla 34746.
  
  Revision  ChangesPath
  1.13  +2 -0  
jakarta-tomcat-catalina/catalina/src/conf/catalina.properties
  
  Index: catalina.properties
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/conf/catalina.properties,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- catalina.properties   20 Oct 2004 12:28:58 -  1.12
  +++ catalina.properties   21 Jul 2005 19:57:17 -  1.13
  @@ -54,6 +54,8 @@
   # foo/*.jar: Add all the JARs of the specified folder as class 
   #  repositories
   # foo/bar.jar: Add bar.jar as a class repository 
  +# Please note that foe individual jar files, e.g. bar.jar, you need the URL 
form
  +# starting with file:.
   
shared.loader=${catalina.base}/shared/classes,${catalina.base}/shared/lib/*.jar
   
   #
  
  
  
  1.8   +2 -0  
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/catalina.properties
  
  Index: catalina.properties
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/catalina.properties,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- catalina.properties   20 Oct 2004 12:28:57 -  1.7
  +++ catalina.properties   21 Jul 2005 19:57:17 -  1.8
  @@ -54,6 +54,8 @@
   # foo/*.jar: Add all the JARs of the specified folder as class 
   #  repositories
   # foo/bar.jar: Add bar.jar as a class repository 
  +# Please note that for single jars, e.g. bar.jar, you need the URL form
  +# starting with file:.
   
shared.loader=${catalina.base}/shared/classes,${catalina.base}/shared/lib/*.jar
   
   #
  
  
  
  1.325 +3 -0  jakarta-tomcat-catalina/webapps/docs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/changelog.xml,v
  retrieving revision 1.324
  retrieving revision 1.325
  diff -u -r1.324 -r1.325
  --- changelog.xml 21 Jul 2005 04:12:33 -  1.324
  +++ changelog.xml 21 Jul 2005 19:57:17 -  1.325
  @@ -78,6 +78,9 @@
Update JULI to provide support for taking over java.util.logging 
bootstrap configuration,
and move the default properties file to 
${catalina.base}/conf/logging.properties (remm)
  /update
  +   fix
  + bug34746/bug: Updated catalina.properties instructions per Bill 
Edwards' suggestion. (yoavs)
  +   /fix
   /changelog
 /subsection
 
  
  
  

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



DO NOT REPLY [Bug 34746] - Specifying an explict jar file pathname in shared.loader property fails

2005-07-21 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=34746.
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=34746


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 21:57 ---
Documentation clarified per your instructions: 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]



cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2005-07-21 Thread yoavs
yoavs   2005/07/21 13:14:57

  Modified:catalina/src/share/org/apache/catalina/deploy
SecurityCollection.java
   webapps/docs changelog.xml
  Log:
  Bugzilla 34805: http://issues.apache.org/bugzilla/show_bug.cgi?id=34805
  
  Revision  ChangesPath
  1.5   +21 -2 
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/deploy/SecurityCollection.java
  
  Index: SecurityCollection.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/deploy/SecurityCollection.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SecurityCollection.java   13 May 2004 20:40:49 -  1.4
  +++ SecurityCollection.java   21 Jul 2005 20:14:57 -  1.5
  @@ -19,6 +19,10 @@
   
   
   import org.apache.catalina.util.RequestUtil;
  +
  +import org.apache.commons.logging.Log;
  +import org.apache.commons.logging.LogFactory;
  +
   import java.io.Serializable;
   
   
  @@ -39,6 +43,8 @@
   
   public class SecurityCollection implements Serializable {
   
  +private static Log log = LogFactory.getLog(SecurityCollection.class);
  +
   
   // --- 
Constructors
   
  @@ -180,10 +186,23 @@
   
   if (pattern == null)
   return;
  +
  +// Bugzilla 34805: add friendly warning.
  +if(pattern.endsWith(*)) {
  +  if (pattern.charAt(pattern.length()-1) != '/') {
  +if (log.isDebugEnabled()) {
  +  log.warn(Suspicious url pattern: \ + pattern + \ +
  +- see 
http://java.sun.com/aboutJava/communityprocess/first/jsr053/servlet23_PFD.pdf; +
  + section 11.2 );
  +}
  +  }
  +}
  +
   pattern = RequestUtil.URLDecode(pattern);
   String results[] = new String[patterns.length + 1];
  -for (int i = 0; i  patterns.length; i++)
  +for (int i = 0; i  patterns.length; i++) {
   results[i] = patterns[i];
  +}
   results[patterns.length] = pattern;
   patterns = results;
   
  
  
  
  1.326 +3 -0  jakarta-tomcat-catalina/webapps/docs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/changelog.xml,v
  retrieving revision 1.325
  retrieving revision 1.326
  diff -u -r1.325 -r1.326
  --- changelog.xml 21 Jul 2005 19:57:17 -  1.325
  +++ changelog.xml 21 Jul 2005 20:14:57 -  1.326
  @@ -179,6 +179,9 @@
   bug35769/bug: Correct implementation of 
javax.naming.Context.composeName( Name, Name)
   in multiple places. Patch provided by Laurent Simon. (markt)
 /fix
  +  add
  +bug34805/bug: Add warning for suspicious security patterns, as 
suggested by Ralf Hauser. (yoavs)
  +  /add
   /changelog
 /subsection
 
  
  
  

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



DO NOT REPLY [Bug 34805] - warn about invalid security contraint url patterns

2005-07-21 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=34805.
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=34805


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 22:15 ---
Warning added to SecurityCollection.  Thanks for this useful suggestion.

-- 
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 34928] - Context not identified in error log (context descriptor)

2005-07-21 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=34928.
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=34928


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 22:28 ---
Turn on debugging for Digester, which is parsing the file, as documented at
http://jakarta.apache.org/commons/digester/commons-digester-1.6/docs/api/org/apache/commons/digester/package-summary.html#doc.Logging.

-- 
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 34929] - Context not identified in error log (application web.xml)

2005-07-21 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=34929.
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=34929


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 22:30 ---
Turn on debug logging for the org.apache.catalina.startup package.

-- 
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 35214] - Javadoc for Embedded class references 'main' method that does not exist

2005-07-21 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=35214.
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=35214


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 22:34 ---
This has been fixed for a while, will show up on the web site when the next 5.0
release is made.  (Don't hold your breath).

-- 
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 35229] - alert user about expired certificates in client cert authentication in an understandable way

2005-07-21 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=35229.
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=35229


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 22:36 ---
No action/response in 1.5 months, closing this, at least for now.

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



Re: Support JSS in Tomcat

2005-07-21 Thread Bill Barker

- Original Message -
From: Jean-frederic Clere [EMAIL PROTECTED]
To: Tomcat Developers List tomcat-dev@jakarta.apache.org
Sent: Thursday, July 21, 2005 11:33 AM
Subject: Re: Support JSS in Tomcat


Bill Barker wrote:

- Original Message -
From: Remy Maucherat [EMAIL PROTECTED]
To: Tomcat Developers List tomcat-dev@jakarta.apache.org
Sent: Thursday, July 21, 2005 3:03 AM
Subject: Re: Support JSS in Tomcat




Christine Ho wrote:


Thanks. It works.

JSS can be used under either Mozilla Public License
(MPL) or LGPL. Is MPL or LGPL compatible with ASF
license? The good thing about JSS is that it is
FIPS-140 compliant.


First, the Tomcat portion of the code needs to be donated to the ASF.
The code cannot import LGPL packages, but I don't know about MPL (I'd
say it's ok).




MPL is listed as ok on http://wiki.apache.org/jakarta/LicenceIssues.


But it says in comments:

(confirm. 1.0, 1.1 different?)


IANAL, but the relevant parts of 1.0  1.1 look the same.  Of course, it's
up to the Tomcat PMC to decide the policy on importing MPLed classes :).



Rémy








This message is intended only for the use of the person(s) listed above as the 
intended recipient(s), and may contain information that is PRIVILEGED and 
CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or 
distribute this message or any attachment. If you received this communication 
in error, please notify us immediately by e-mail and then delete all copies of 
this message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through 
the Internet is not secure. Do not send confidential or sensitive information, 
such as social security numbers, account numbers, personal identification 
numbers and passwords, to us via ordinary (unencrypted) e-mail.


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



cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/resources LocalStrings.properties

2005-07-21 Thread yoavs
yoavs   2005/07/21 13:50:56

  Modified:catalina/src/share/org/apache/catalina/startup
HostConfig.java
   webapps/docs changelog.xml
   jasper2/src/share/org/apache/jasper/compiler
BeanRepository.java Validator.java
   jasper2/src/share/org/apache/jasper/resources
LocalStrings.properties
  Log:
  Bugzilla 35386: http://issues.apache.org/bugzilla/show_bug.cgi?id=35386
  
  Revision  ChangesPath
  1.62  +8 -5  
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/HostConfig.java
  
  Index: HostConfig.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/HostConfig.java,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- HostConfig.java   15 May 2005 16:29:24 -  1.61
  +++ HostConfig.java   21 Jul 2005 20:50:56 -  1.62
  @@ -547,14 +547,17 @@
* @param file
*/
   protected void deployDescriptor(String contextPath, File contextXml, 
String file) {
  -DeployedApplication deployedApp = new 
DeployedApplication(contextPath);
  -
  -if (deploymentExists(contextPath))
  +if (deploymentExists(contextPath)) {
   return;
  +}
  +
  +DeployedApplication deployedApp = new 
DeployedApplication(contextPath);
   
   // Assume this is a configuration descriptor and deploy it
  -if(log.isDebugEnabled())
  +if(log.isDebugEnabled()) {
   log.debug(sm.getString(hostConfig.deployDescriptor, file));
  +}
  +
   Context context = null;
   try {
   synchronized (digester) {
  
  
  
  1.327 +3 -0  jakarta-tomcat-catalina/webapps/docs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/changelog.xml,v
  retrieving revision 1.326
  retrieving revision 1.327
  diff -u -r1.326 -r1.327
  --- changelog.xml 21 Jul 2005 20:14:57 -  1.326
  +++ changelog.xml 21 Jul 2005 20:50:56 -  1.327
  @@ -249,6 +249,9 @@
   bug35696/bug: Make certain that release is called for custom 
tags 
when tag-pooling is disabled. (billbarker)
 /fix
  +  fix
  +bug35386/bug: Make useBean resources use consistent spelling, 
from Kurt Huwig. (yoavs)
  +  /fix
   /changelog
 /subsection
 
  
  
  
  1.5   +1 -1  
jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/BeanRepository.java
  
  Index: BeanRepository.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/BeanRepository.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- BeanRepository.java   17 Mar 2004 19:23:03 -  1.4
  +++ BeanRepository.java   21 Jul 2005 20:50:56 -  1.5
  @@ -63,7 +63,7 @@
} else if (scope.equals(application)) {
appBeans.addElement(s);
} else {
  - errDispatcher.jspError(n, jsp.error.useBean.badScope);
  + errDispatcher.jspError(n, jsp.error.usebean.badScope);
}

putBeanType(s, type);
  
  
  
  1.120 +4 -4  
jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/Validator.java
  
  Index: Validator.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/Validator.java,v
  retrieving revision 1.119
  retrieving revision 1.120
  diff -u -r1.119 -r1.120
  --- Validator.java25 Jun 2004 19:05:05 -  1.119
  +++ Validator.java21 Jul 2005 20:50:56 -  1.120
  @@ -510,13 +510,13 @@
BeanRepository beanInfo = pageInfo.getBeanRepository();
   
if (className == null  type == null)
  - err.jspError(n, jsp.error.useBean.missingType);
  + err.jspError(n, jsp.error.usebean.missingType);
   
if (beanInfo.checkVariable(name))
  - err.jspError(n, jsp.error.useBean.duplicate);
  + err.jspError(n, jsp.error.usebean.duplicate);
   
if (session.equals(scope)  !pageInfo.isSession())
  - err.jspError(n, jsp.error.useBean.noSession);
  + err.jspError(n, jsp.error.usebean.noSession);
   
Node.JspAttribute jattr
= getJspAttribute(beanName, null, null,
  @@ -524,7 +524,7 @@
  java.lang.String.class, n, false);
n.setBeanName(jattr);
if (className != null  jattr != null)
  - err.jspError(n, jsp.error.useBean.notBoth);
  + 

DO NOT REPLY [Bug 35571] - JspC misinterprets uriRoot when executed as ant task

2005-07-21 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=35571.
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=35571





--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 23:04 ---
Hmm, I like this patch and went to implement it, but FileUtils#getFileUtils
appears to be gone...

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



cvs commit: jakarta-tomcat-connectors/jk/xdocs index.xml

2005-07-21 Thread yoavs
yoavs   2005/07/21 14:11:40

  Modified:webapps/docs changelog.xml index.xml jasper-howto.xml
ssl-howto.xml
   jk/xdocs index.xml
  Log:
  Bugzilla 35090: http://issues.apache.org/bugzilla/show_bug.cgi?id=35090
  
  Revision  ChangesPath
  1.328 +3 -0  jakarta-tomcat-catalina/webapps/docs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/changelog.xml,v
  retrieving revision 1.327
  retrieving revision 1.328
  diff -u -r1.327 -r1.328
  --- changelog.xml 21 Jul 2005 20:50:56 -  1.327
  +++ changelog.xml 21 Jul 2005 21:11:39 -  1.328
  @@ -81,6 +81,9 @@
  fix
bug34746/bug: Updated catalina.properties instructions per Bill 
Edwards' suggestion. (yoavs)
  /fix
  +   fix
  + bug35090/bug: Minor documentation typo fix. (yoavs)
  +   /fix
   /changelog
 /subsection
 
  
  
  
  1.23  +2 -2  jakarta-tomcat-catalina/webapps/docs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/index.xml,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- index.xml 16 May 2005 11:18:59 -  1.22
  +++ index.xml 21 Jul 2005 21:11:39 -  1.23
  @@ -26,7 +26,7 @@
   web applications and web services./p
   
   pSelect one of the links from the navigation menu (to the left) to drill
  -down to the more detailed documenation that is available.  Each available
  +down to the more detailed documentation that is available.  Each available
   manual is described in more detail below./p
   
   /section
  @@ -120,7 +120,7 @@
   - Reference manual that documents all available elements and attributes
 that may be placed into a Apache Tomcat 5 codeconf/server.xml/code 
file.
   /li
  -lia 
href=http://jakarta.apache.org/tomcat/connectors-doc/index.html;strongJK 
Documenation/strong/a
  +lia 
href=http://jakarta.apache.org/tomcat/connectors-doc/index.html;strongJK 
Documentation/strong/a
   - Complete documentation and HOWTOs on the JK native webserver connector,
 used to interface Apache Tomcat with servers like Apache HTTPd, IIS
 and others./li
  
  
  
  1.27  +1 -1  jakarta-tomcat-catalina/webapps/docs/jasper-howto.xml
  
  Index: jasper-howto.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/jasper-howto.xml,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- jasper-howto.xml  4 Apr 2005 11:11:51 -   1.26
  +++ jasper-howto.xml  21 Jul 2005 21:11:39 -  1.27
  @@ -74,7 +74,7 @@
   code300/code seconds./li
   
   listrongcompiler/strong - Which compiler Ant should use to compile JSP
  -pages.  See the Ant documenation for more information. If the value is not 
set,
  +pages.  See the Ant documentation for more information. If the value is not 
set,
   then the default Eclipse JDT Java compiler will be used instead of using 
Ant. 
   No default value./li
   
  
  
  
  1.16  +1 -1  jakarta-tomcat-catalina/webapps/docs/ssl-howto.xml
  
  Index: ssl-howto.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/ssl-howto.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- ssl-howto.xml 23 Mar 2005 16:31:41 -  1.15
  +++ ssl-howto.xml 21 Jul 2005 21:11:39 -  1.16
  @@ -429,7 +429,7 @@
   /li
   /ul
   pNow you have a file called codecertreq.csr/code that you can submit 
to the Certificate Authority (look at the
  -documenation of the Certificate Authority website on how to do this). In 
return you get a Certificate./p
  +documentation of the Certificate Authority website on how to do this). In 
return you get a Certificate./p
   /subsection
   
   subsection name=Importing the Certificate
  
  
  
  1.40  +1 -1  jakarta-tomcat-connectors/jk/xdocs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/xdocs/index.xml,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -r1.39 -r1.40
  --- index.xml 13 Jul 2005 15:42:44 -  1.39
  +++ index.xml 21 Jul 2005 21:11:40 -  1.40
  @@ -20,7 +20,7 @@
   
   /p
   pSelect one of the links from the navigation menu (to the left) to drill
  -down to the more detailed documenation that is available.  Each available
  +down to the more detailed documentation that is available.  Each available
   manual is described in more detail below./p
   
   /section
  
  
  

-
To unsubscribe, 

DO NOT REPLY [Bug 35090] - Documentation typo

2005-07-21 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=35090.
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=35090


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 23:11 ---
I've fixed the typos: thanks for pointing them out.

-- 
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 35114] - Jasper JSPC does not support a failonerr from Ant

2005-07-21 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=35114.
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=35114


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 23:24 ---
Implemented.  Thanks for the idea and contribution.  Next time, please use a
diff -u format.

-- 
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 35156] - Stream closed exception

2005-07-21 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=35156.
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=35156


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 23:27 ---
Assuming problem did go away, since no response given by original poster.

-- 
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 35788] - Suggestion for Google SiteSearch of FAQ

2005-07-21 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=35788.
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=35788


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 23:34 ---
Implemented: I like it!  Anything that removes JavaScript is good.  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]



cvs commit: jakarta-tomcat-catalina/webapps/docs changelog.xml

2005-07-21 Thread yoavs
yoavs   2005/07/21 14:40:56

  Modified:catalina/src/share/org/apache/catalina/startup
ContextConfig.java
   webapps/docs changelog.xml
  Log:
  Bugzilla 35819: http://issues.apache.org/bugzilla/show_bug.cgi?id=35819
  
  Revision  ChangesPath
  1.65  +4 -2  
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/ContextConfig.java
  
  Index: ContextConfig.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/ContextConfig.java,v
  retrieving revision 1.64
  retrieving revision 1.65
  diff -u -r1.64 -r1.65
  --- ContextConfig.java16 Mar 2005 11:37:43 -  1.64
  +++ ContextConfig.java21 Jul 2005 21:40:56 -  1.65
  @@ -1240,7 +1240,9 @@
   // Called from StandardContext.destroy()
   if (log.isDebugEnabled())
   log.debug(sm.getString(contextConfig.destroy));
  -String workDir = ((StandardContext) context).getWorkDir();
  +
  +// Changed to getWorkPath per Bugzilla 35819.
  +String workDir = ((StandardContext) context).getWorkPath();
   if (workDir != null)
   ExpandWar.delete(new File(workDir));
   }
  
  
  
  1.330 +4 -0  jakarta-tomcat-catalina/webapps/docs/changelog.xml
  
  Index: changelog.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/changelog.xml,v
  retrieving revision 1.329
  retrieving revision 1.330
  diff -u -r1.329 -r1.330
  --- changelog.xml 21 Jul 2005 21:23:47 -  1.329
  +++ changelog.xml 21 Jul 2005 21:40:56 -  1.330
  @@ -182,6 +182,10 @@
 add
   bug34805/bug: Add warning for suspicious security patterns, as 
suggested by Ralf Hauser. (yoavs)
 /add
  +  fix
  +bug35819/bug: Use getWorkPath for deleting work directory on 
context destroy, as suggested
  +  by Rob Steele. (yoavs)
  +  /fix
   /changelog
 /subsection
 
  
  
  

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



DO NOT REPLY [Bug 35819] - Removal of WorkDir on undeploy

2005-07-21 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=35819.
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=35819


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 23:41 ---
I've implemented this for 5.5.10: thanks for the contribution.

-- 
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 34818] - Request alternating color scheme for html manager

2005-07-21 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=34818.
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=34818


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 23:42 ---
URL not found, 404 when I click on it.  If you're still interested and really
think alternate background rows will make a big difference for this scenario. 
Please reopen this issue and submit your patches here in our standard diff -u
format.  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 35571] - JspC misinterprets uriRoot when executed as ant task

2005-07-21 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=35571.
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=35571





--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 23:45 ---
Yeah the old factory method was newFileUtils() which was deprecated in Ant 1.6.3
(pretty recently) by getFileUtils().

-- 
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 35054] - warn if appBase is not existing as a File or directory

2005-07-21 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=35054.
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=35054


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |NEEDINFO




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 23:45 ---
I don't understand: your patches actually remove logging statements, yet the
title of this issue asks to add a warning, no?

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



Re: Support JSS in Tomcat

2005-07-21 Thread Jean-frederic Clere

Bill Barker wrote:


- Original Message -
From: Jean-frederic Clere [EMAIL PROTECTED]
To: Tomcat Developers List tomcat-dev@jakarta.apache.org
Sent: Thursday, July 21, 2005 11:33 AM
Subject: Re: Support JSS in Tomcat


 


Bill Barker wrote:

   


- Original Message -
From: Remy Maucherat [EMAIL PROTECTED]
To: Tomcat Developers List tomcat-dev@jakarta.apache.org
Sent: Thursday, July 21, 2005 3:03 AM
Subject: Re: Support JSS in Tomcat




 


Christine Ho wrote:


   


Thanks. It works.

JSS can be used under either Mozilla Public License
(MPL) or LGPL. Is MPL or LGPL compatible with ASF
license? The good thing about JSS is that it is
FIPS-140 compliant.


 


First, the Tomcat portion of the code needs to be donated to the ASF.
The code cannot import LGPL packages, but I don't know about MPL (I'd
say it's ok).



   


MPL is listed as ok on http://wiki.apache.org/jakarta/LicenceIssues.


 


But it says in comments:

(confirm. 1.0, 1.1 different?)

   



IANAL, but the relevant parts of 1.0  1.1 look the same.  Of course, it's
up to the Tomcat PMC to decide the policy on importing MPLed classes :).
 


The following worried me a little:
http://mail-archives.apache.org/mod_mbox/jakarta-jmeter-dev/200403.mbox/[EMAIL 
PROTECTED]

 

 


Rémy


   







This message is intended only for the use of the person(s) listed above as the 
intended recipient(s), and may contain information that is PRIVILEGED and 
CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or 
distribute this message or any attachment. If you received this communication 
in error, please notify us immediately by e-mail and then delete all copies of 
this message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through 
the Internet is not secure. Do not send confidential or sensitive information, 
such as social security numbers, account numbers, personal identification 
numbers and passwords, to us via ordinary (unencrypted) e-mail.


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



DO NOT REPLY [Bug 35745] - Realm JDBCRealm userTable userRoleTable not real parameters?

2005-07-21 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=35745.
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=35745


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 23:54 ---
Thank you for the compliments, we're glad you like Tomcat.  You can inspect the
JDBCRealm (and its more recent, more recommended brother, DataSourceRealm) and
any class you think is relevant, and you'll find none of these credential
columns are hard-coded.  I personally have used the JDBCRealm with all sorts of
table names and column names, without a problem.  Accordingly, I'm closing this
issue as invalid.  I suggest you use the tomcat-user mailing list for further
advice about debugging your situation.

I also did add one logging statement to JDBCRealm which will output the
credentials query, if you have the class configured for DEBUG-level logging. 
That'll be in 5.5.10.

-- 
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 35641] - Error decoding request in Tomcat server on submit of a jsp page

2005-07-21 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=35641.
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=35641


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Additional Comments From [EMAIL PROTECTED]  2005-07-21 23:55 ---
Can you reproduce this reliably?  I can't on my little IIS/Tomcat test setup. 
Are you using the latest mod_jk?  Does tomcat standalone work OK?  I suggest
using the tomcat-user mailing list for further discussion and help debugging
this issue.

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



cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/realm JDBCRealm.java

2005-07-21 Thread yoavs
yoavs   2005/07/21 14:56:55

  Modified:catalina/src/share/org/apache/catalina/realm JDBCRealm.java
  Log:
  Minor logging addition.
  
  Revision  ChangesPath
  1.15  +6 -1  
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/realm/JDBCRealm.java
  
  Index: JDBCRealm.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/realm/JDBCRealm.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- JDBCRealm.java8 Mar 2005 23:03:01 -   1.14
  +++ JDBCRealm.java21 Jul 2005 21:56:54 -  1.15
  @@ -487,6 +487,11 @@
   sb.append( WHERE );
   sb.append(userNameCol);
   sb.append( = ?);
  +
  +if(containerLog.isDebugEnabled()) {
  +containerLog.debug(credentials query:  + sb.toString());
  +}
  +
   preparedCredentials =
   dbConnection.prepareStatement(sb.toString());
   }
  
  
  

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



Re: Support JSS in Tomcat

2005-07-21 Thread Bill Barker

- Original Message -
From: Jean-frederic Clere [EMAIL PROTECTED]
To: Tomcat Developers List tomcat-dev@jakarta.apache.org
Sent: Thursday, July 21, 2005 2:53 PM
Subject: Re: Support JSS in Tomcat


Bill Barker wrote:

- Original Message -
From: Jean-frederic Clere [EMAIL PROTECTED]
To: Tomcat Developers List tomcat-dev@jakarta.apache.org
Sent: Thursday, July 21, 2005 11:33 AM
Subject: Re: Support JSS in Tomcat




Bill Barker wrote:



- Original Message -
From: Remy Maucherat [EMAIL PROTECTED]
To: Tomcat Developers List tomcat-dev@jakarta.apache.org
Sent: Thursday, July 21, 2005 3:03 AM
Subject: Re: Support JSS in Tomcat






Christine Ho wrote:




Thanks. It works.

JSS can be used under either Mozilla Public License
(MPL) or LGPL. Is MPL or LGPL compatible with ASF
license? The good thing about JSS is that it is
FIPS-140 compliant.




First, the Tomcat portion of the code needs to be donated to the ASF.
The code cannot import LGPL packages, but I don't know about MPL (I'd
say it's ok).





MPL is listed as ok on http://wiki.apache.org/jakarta/LicenceIssues.




But it says in comments:

(confirm. 1.0, 1.1 different?)




IANAL, but the relevant parts of 1.0  1.1 look the same.  Of course, it's
up to the Tomcat PMC to decide the policy on importing MPLed classes :).


The following worried me a little:
http://mail-archives.apache.org/mod_mbox/jakarta-jmeter-dev/200403.mbox/%3C
[EMAIL PROTECTED]


I don't think that anybody is proposing bundling jss34.jar with Tomcat.  It
would be an optional dependency much like PureTLS is now.  Anybody that
wanted to use it would have to download it from mozilla.org and install it.
And as Remy pointed out, Christine would have to agree to donate her code to
the ASF, at which point it would be licensed under ASFL.

My reading of MPL-1.1 (again IANAL) is that:
  import org.mozilla.some.package.SomeClass;

isn't viral, so that there isn't any problem with having
o.a.t.u.net.jss.JSSServerSocketFactory with an ASF license.





Rémy













This message is intended only for the use of the person(s) listed above as the 
intended recipient(s), and may contain information that is PRIVILEGED and 
CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or 
distribute this message or any attachment. If you received this communication 
in error, please notify us immediately by e-mail and then delete all copies of 
this message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through 
the Internet is not secure. Do not send confidential or sensitive information, 
such as social security numbers, account numbers, personal identification 
numbers and passwords, to us via ordinary (unencrypted) e-mail.


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



Michael Bünermann/HBF/Minden/kampa/DE ist außer Haus .

2005-07-21 Thread Michael . Buenermann

Ich werde ab  22.07.2005 nicht im Büro sein. Ich kehre zurück am
26.07.2005.

Ich werde Ihre Nachricht nach meiner Rückkehr beantworten. In dringenden
Fällen wenden Sie sich bitte Herrn Bagehorn
([EMAIL PROTECTED]). Herr Bagehorn hat die Rufnummer
0571/93425-80) Alternativ erreichen Sie mich auch über die Funk-Rufnummer:
0171/99 33 525.

Re: cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler Generator.java

2005-07-21 Thread Jan Luehe
Bill,

[EMAIL PROTECTED] wrote:
 billbarker2005/07/20 20:59:10
 
   Modified:jasper2/src/share/org/apache/jasper/compiler Generator.java
   Log:
   Make certain that release is called for custom tags when tag-pooling is 
 disabled.
   
   Fix for Bug #35696
   
   Revision  ChangesPath
   1.241 +9 -2  
 jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/Generator.java
   
   Index: Generator.java
   ===
   RCS file: 
 /home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/Generator.java,v
   retrieving revision 1.240
   retrieving revision 1.241
   diff -u -r1.240 -r1.241
   --- Generator.java  5 Apr 2005 23:14:43 -   1.240
   +++ Generator.java  21 Jul 2005 03:59:10 -  1.241
   @@ -2278,15 +2278,19 @@
out.printin(if ();
out.print(tagHandlerVar);
out.println(
   -.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE));
   +.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) 
 {);
out.pushIndent();
   +if(!n.implementsTryCatchFinally()) {
   +out.printin(tagHandlerVar);
   +out.println(.release(););
   +}

I believe the above 4 added lines need to be replaced with this:

+if (!n.implementsTryCatchFinally()) {
+
+if (isPoolingEnabled) {
+out.printin(n.getTagHandlerPoolName());
+out.print(.reuse();
+out.print(tagHandlerVar);
+out.println(););
+} else {
+out.printin(tagHandlerVar);
+out.println(.release(););
+}
+}


Jan


if (isTagFile || isFragment) {
out.printil(throw new SkipPageException(););
} else {
out.printil((methodNesting  0) ? return true; : 
 return;);
}
out.popIndent();
   -
   +out.printil(});
// Synchronize AT_BEGIN scripting variables
syncScriptingVars(n, VariableInfo.AT_BEGIN);

   @@ -2317,6 +2321,9 @@
out.print(.reuse();
out.print(tagHandlerVar);
out.println(););
   +} else {
   +out.printin(tagHandlerVar);
   +out.println(.release(););
}

if (n.implementsTryCatchFinally()) {
   
   
   
 
 -
 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: cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler Generator.java

2005-07-21 Thread Bill Barker


- Original Message - 
From: Jan Luehe [EMAIL PROTECTED]

To: Tomcat Developers List tomcat-dev@jakarta.apache.org
Sent: Thursday, July 21, 2005 6:24 PM
Subject: Re: cvs commit: 
jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler 
Generator.java




Bill,

[EMAIL PROTECTED] wrote:

billbarker2005/07/20 20:59:10

  Modified:jasper2/src/share/org/apache/jasper/compiler 
Generator.java

  Log:
  Make certain that release is called for custom tags when tag-pooling is 
disabled.


  Fix for Bug #35696

  Revision  ChangesPath
  1.241 +9 -2 
jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/Generator.java


  Index: Generator.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/Generator.java,v

  retrieving revision 1.240
  retrieving revision 1.241
  diff -u -r1.240 -r1.241
  --- Generator.java 5 Apr 2005 23:14:43 - 1.240
  +++ Generator.java 21 Jul 2005 03:59:10 - 1.241
  @@ -2278,15 +2278,19 @@
   out.printin(if ();
   out.print(tagHandlerVar);
   out.println(
  -.doEndTag() == 
javax.servlet.jsp.tagext.Tag.SKIP_PAGE));
  +.doEndTag() == 
javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {);

   out.pushIndent();
  +if(!n.implementsTryCatchFinally()) {
  +out.printin(tagHandlerVar);
  +out.println(.release(););
  +}


I believe the above 4 added lines need to be replaced with this:



Yeah, but but the previous code was simply throwing the tag away on 
SKIP_PAGE (at least for non-TCF tags), and I didn't want to dig to find out 
if it was doing it for a reason (especially since SKIP_PAGE happens almost 
never :).  I figured that if we're going to throw it away, we should at 
least call release on it first :).



   +if (!n.implementsTryCatchFinally()) {
   +
   +if (isPoolingEnabled) {
   +out.printin(n.getTagHandlerPoolName());
   +out.print(.reuse();
   +out.print(tagHandlerVar);
   +out.println(););
   +} else {
   +out.printin(tagHandlerVar);
   +out.println(.release(););
   +}
   +}


Jan



   if (isTagFile || isFragment) {
   out.printil(throw new SkipPageException(););
   } else {
   out.printil((methodNesting  0) ? return true; : 
return;);

   }
   out.popIndent();
  -
  +out.printil(});
   // Synchronize AT_BEGIN scripting variables
   syncScriptingVars(n, VariableInfo.AT_BEGIN);

  @@ -2317,6 +2321,9 @@
   out.print(.reuse();
   out.print(tagHandlerVar);
   out.println(););
  +} else {
  +out.printin(tagHandlerVar);
  +out.println(.release(););
   }

   if (n.implementsTryCatchFinally()) {




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







This message is intended only for the use of the person(s) listed above as the 
intended recipient(s), and may contain information that is PRIVILEGED and 
CONFIDENTIAL.  If you are not an intended recipient, you may not read, copy, or 
distribute this message or any attachment. If you received this communication 
in error, please notify us immediately by e-mail and then delete all copies of 
this message and any attachments.

In addition you should be aware that ordinary (unencrypted) e-mail sent through 
the Internet is not secure. Do not send confidential or sensitive information, 
such as social security numbers, account numbers, personal identification 
numbers and passwords, to us via ordinary (unencrypted) e-mail.


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



cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler Generator.java

2005-07-21 Thread billbarker
billbarker2005/07/21 21:16:25

  Modified:jasper2/src/share/org/apache/jasper/compiler Generator.java
  Log:
  Return a custom tag to the pool when doEndTag returns SKIP_PAGE
  
  Submitted by: Jan
  
  Revision  ChangesPath
  1.242 +9 -2  
jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/Generator.java
  
  Index: Generator.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/Generator.java,v
  retrieving revision 1.241
  retrieving revision 1.242
  diff -u -r1.241 -r1.242
  --- Generator.java21 Jul 2005 03:59:10 -  1.241
  +++ Generator.java22 Jul 2005 04:16:24 -  1.242
  @@ -2281,8 +2281,15 @@
   .doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {);
   out.pushIndent();
   if(!n.implementsTryCatchFinally()) {
  -out.printin(tagHandlerVar);
  -out.println(.release(););
  +if(isPoolingEnabled) {
  +out.printin(n.getTagHandlerPoolName());
  +out.print(.reuse();
  +out.print(tagHandlerVar);
  +out.println(););
  +} else {
  +out.printin(tagHandlerVar);
  +out.println(.release(););
  +}
   }
   if (isTagFile || isFragment) {
   out.printil(throw new SkipPageException(););
  
  
  

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



DO NOT REPLY [Bug 35641] - Error decoding request in Tomcat server on submit of a jsp page

2005-07-21 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=35641.
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=35641


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED




--- Additional Comments From [EMAIL PROTECTED]  2005-07-22 06:33 ---
The problem was with the machine setup. The machines name was changed, whereas 
IIS had entries related to earlier machine name. Thus, the problem is resolved 
and nothing to do with tomcat and IIS integration. Also, Tomcat was working 
fine with standalone way.

-- 
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 35054] - warn if appBase is not existing as a File or directory

2005-07-21 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=35054.
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=35054


[EMAIL PROTECTED] changed:

   What|Removed |Added

  Attachment #15163|0   |1
is obsolete||




--- Additional Comments From [EMAIL PROTECTED]  2005-07-22 06:45 ---
Created an attachment (id=15742)
 -- (http://issues.apache.org/bugzilla/attachment.cgi?id=15742action=view)
HostConfig.java.patch3

corrected - now using

diff -u HostConfig.java.orig HostConfig.java

-- 
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 35709] - allow to create a short-lived secondary session from a request to prevent cross-site scripting-like attacks

2005-07-21 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=35709.
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=35709





--- Additional Comments From [EMAIL PROTECTED]  2005-07-22 06:57 ---
in the same vein, a session.clone() would be very useful to keep a user logged
in when returning e.g. from a paypal purchase
(http://www.paypal.com/cgi-bin/webscr?cmd=p/xcl/rec/ipn-manual-outside and Bug
34391). I.e. if the user returns with the same ssl-session id, the application
then could change the jsessionId without the user having to re-login.

-- 
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 29727] - JNDI env-entry not reload when context reloaded

2005-07-21 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=29727.
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=29727





--- Additional Comments From [EMAIL PROTECTED]  2005-07-22 07:32 ---
I did a simple test with tomcat 5.5.9. Environment entries are reloaded when 
context is reloaded.

But if I change environment entry in admin application, it is not reloaded. To 
force application to see new entries user will have to reload context, which is 
dangerous operation.

It would be great if application would see new value after changing it in admin 
application too.

(In reply to comment #12)
 The chances of this getting fixes in Tomcat 5.0.x are now slim.  Can either or
 both of you test with 5.5.7 (or 5.5.9 which will be out in a couple of days) 
and
 let us know if it works or not?  That would be great...



-- 
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 29727] - JNDI env-entry not reload when context reloaded

2005-07-21 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=29727.
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=29727





--- Additional Comments From [EMAIL PROTECTED]  2005-07-22 07:59 ---
That's pointless: accessing JNDI is costly, and is supposed to be read only in
the first place. As a result, webapps should be reading values, etc, in init,
and that's it.

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