DO NOT REPLY [Bug 22666] New: - Entered non us-ascii symbols into the form appead wrong in JSP

2003-08-22 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://nagoya.apache.org/bugzilla/show_bug.cgi?id=22666

Entered non us-ascii symbols into the form appead wrong in JSP

   Summary: Entered non us-ascii symbols into the form appead wrong
in JSP
   Product: Tomcat 4
   Version: 4.0.6 Final
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: Major
  Priority: Other
 Component: Servlet & JSP API
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


My HTML have charset UTF-8.
I have a simple form with one input text field.
When I post into this text field non us-ascii symbols, like ö - Latin 
Small Letter O With Diaresis (ö), it comes to JSP paramaters in strange state.

I've following code in JSP:

request.setCharacterEncoding("UTF-8");
String [] texts = request.getParameterValues ("text");

As my form has only one text field "text", I should get String [1] array here. 
But I've got String [3] with strange consistent. 

I've add following code for look into the data:

String [] texts = request.getParameterValues("text");
for (int i = 0; i < texts.length; i++) {
  String value = texts[i];
  byte [] bytes = value.getBytes("UTF-8");
  for (int j = 0; j < bytes.length; j++) {
byte aByte = bytes[j];
System.out.print(aByte + ", ");
  }
  System.out.println("");
}

And I got following:
-61, -125, -62, -125, -61, -126, -62, -125, -61, -125, -62, -126, -61, -126, -
62, -74, 

-61, -125, -62, -125, -61, -126, -62, -74, 

-61, -125, -62, -74, 

So each of three Strings contain wrong set of characters different from 
ö

What's wrong with it?

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



DO NOT REPLY [Bug 22665] New: - isapi_redirector2.dll fails to load in IIS5

2003-08-22 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://nagoya.apache.org/bugzilla/show_bug.cgi?id=22665

isapi_redirector2.dll fails to load in IIS5

   Summary: isapi_redirector2.dll fails to load in IIS5
   Product: Tomcat 4
   Version: 4.1.27
  Platform: PC
OS/Version: Other
Status: NEW
  Severity: Critical
  Priority: Other
 Component: Connector:Coyote JK 2
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


I've compiled the native IIS plugin for jk2. Version 4.1.24 seemed to work ok,
but now I've recompiled for 4.1.27 and the resulting DLL no longer loads
correctly. I'm using the following packages to compile:

jakarta-tomcat-connectors-4.1.27-src.zip
jakarta-tomcat-4.1.27.zip

Seen in event log:

Event Type: Error
Event Source:   W3SVC
Event Category: None
Event ID:   14
Date:   8/22/2003
Time:   10:14:04 AM
User:   N/A
Computer:   ALICE
Description:
The HTTP Filter DLL d:\tomcat\isapi_redirector2.dll failed to load.  The data is
the error. 
For additional information specific to this message please visit the Microsoft
Online Support site located at: http://www.microsoft.com/contentredirect.asp. 
Data:
: 7e 00 00 00   ~...

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



DO NOT REPLY [Bug 10127] - tomcat 4.0.4 locks jsp files

2003-08-22 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://nagoya.apache.org/bugzilla/show_bug.cgi?id=10127

tomcat 4.0.4 locks jsp files





--- Additional Comments From [EMAIL PROTECTED]  2003-08-22 15:24 ---
Hi,

sorry I must correct myself. This problem is already fixed in the Tomcat 4.1.X
series since Tomcat 4.1.13.
(http://cvs.apache.org/viewcvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/servlet/JspServlet.java,
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13843)

I looked in the wrong CVS repository for checking (actually
I looked in the jasper directory of jakarta-tomcat-4.0 rather than in the jasper2
directory of jakarta-tomcat-jasper).

But my remarks are still vaild for Tomcat 4.0.x.


Regards

Rüdiger

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



DO NOT REPLY [Bug 22625] New: - Removing a webapp(context) doesn't close its datasources(resource)

2003-08-22 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://nagoya.apache.org/bugzilla/show_bug.cgi?id=22625

Removing a webapp(context) doesn't close its datasources(resource)

   Summary: Removing a webapp(context) doesn't close its
datasources(resource)
   Product: Tomcat 4
   Version: Nightly Build
  Platform: All
   URL: http://issues.apache.org/bugzilla/show_bug.cgi?id=21182
OS/Version: All
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Move issue from commons-dbcp to tomcat

[dbcp] removing a webapp does not force connections closed
http://issues.apache.org/bugzilla/show_bug.cgi?id=21182 

Description:
as reported by Michael Holly and Tony Locke on [EMAIL PROTECTED]
"removing" a Tomcat webapp does not force connections present in DBCP pool be
closed.

In fact even if the webapp is unloaded and dbcp is unloaded 
there is nobody to call BasicDataSource.close()

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



cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup TldConfig.java

2003-08-22 Thread luehe
luehe   2003/08/22 16:18:24

  Modified:catalina/src/share/org/apache/catalina/startup
TldConfig.java
  Log:
  Minor optimization: Avoid scanning duplicate JARs for TLDs
  
  Revision  ChangesPath
  1.17  +33 -20
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/TldConfig.java
  
  Index: TldConfig.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/TldConfig.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- TldConfig.java20 Aug 2003 08:35:43 -  1.16
  +++ TldConfig.java22 Aug 2003 23:18:24 -  1.17
  @@ -75,9 +75,11 @@
   import java.net.URL;
   import java.util.ArrayList;
   import java.util.Enumeration;
  +import java.util.Set;
   import java.util.HashSet;
  +import java.util.Map;
  +import java.util.HashMap;
   import java.util.Iterator;
  -import java.util.Set;
   import java.util.jar.JarEntry;
   import java.util.jar.JarFile;
   import javax.naming.NameClassPair;
  @@ -248,7 +250,7 @@
* files, to be processed
*/
   Set resourcePaths = tldScanResourcePaths();
  -Set globalJarPaths = getGlobalJarPaths();
  +Map globalJarPaths = getGlobalJarPaths();
   
   // Check to see if we can use cached listeners
   if (tldCache != null && tldCache.exists()) {
  @@ -269,9 +271,11 @@
   tldScanTld(path);
   }
   }
  -paths = globalJarPaths.iterator();
  -while (paths.hasNext()) {
  -tldScanJar((File) paths.next());
  +if (globalJarPaths != null) {
  +paths = globalJarPaths.values().iterator();
  +while (paths.hasNext()) {
  +tldScanJar((File) paths.next());
  +}
   }
   
   String list[] = getTldListeners();
  @@ -311,7 +315,7 @@
*
* @return Last modification date
*/
  -private long getLastModified(Set resourcePaths, Set globalJarPaths)
  +private long getLastModified(Set resourcePaths, Map globalJarPaths)
   throws Exception {
   
   long lastModified = 0;
  @@ -331,14 +335,16 @@
   }
   }
   
  -paths = globalJarPaths.iterator();
  -while (paths.hasNext()) {
  -File jarFile = (File) paths.next();
  -long lastM = jarFile.lastModified();
  -if (lastM > lastModified) lastModified = lastM;
  -if (log.isDebugEnabled()) {
  -log.debug("Last modified " + jarFile.getAbsolutePath()
  -  + " " + lastM);
  +if (globalJarPaths != null) {
  +paths = globalJarPaths.values().iterator();
  +while (paths.hasNext()) {
  +File jarFile = (File) paths.next();
  +long lastM = jarFile.lastModified();
  +if (lastM > lastModified) lastModified = lastM;
  +if (log.isDebugEnabled()) {
  +log.debug("Last modified " + jarFile.getAbsolutePath()
  +  + " " + lastM);
  +}
   }
   }
   
  @@ -744,12 +750,12 @@
* location that all web applications have access to (e.g.,
* /common/lib).
*
  - * @return Set of paths to all JAR files accessible to all parent class
  + * @return Map of paths to all JAR files accessible to all parent class
* loaders of the web application class loader
*/
  -private Set getGlobalJarPaths() throws IOException {
  +private Map getGlobalJarPaths() throws IOException {
   
  -Set globalJarPaths = new HashSet();
  +HashMap globalJarPaths = null;
   
   ClassLoader loader = Thread.currentThread().getContextClassLoader();
   while (loader != null) {
  @@ -762,9 +768,16 @@
   // buggy overall
   File file = new File(urls[i].getFile());
   file = file.getCanonicalFile();
  -if ((file.exists()) 
  -&& (file.getAbsolutePath().endsWith(".jar"))) {
  -globalJarPaths.add(file);
  +if (file.exists()) {
  +String path = file.getAbsolutePath();
  +if (path.endsWith(".jar")) {
  +if (globalJarPaths == null) {
  +globalJarPaths = new HashMap();
  +globalJarPaths.put(path, file);
  +} else if (!globalJarPaths.containsKey(path)) {
  +globalJarPaths.put(path, file);
  +}
  +}
   }
   }
   }
  
  
  

-

[VOTE] 5.0.9 stability rating

2003-08-22 Thread Remy Maucherat

[ ] Alpha
[ ] Beta

As usual, please vote :)

Add comments if needed.

Remy

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


CV_Therapeutics

2003-08-22 Thread admin, hr
Title: CV_Therapeutics










Dear Applicant:

We have received your employment inquiry and would like to thank you for giving us the opportunity to review your resume. It will be evaluated by a member or our Human Resources staff and then forwarded to those supervisors who may be able to utilize your background and experience.

If your qualifications match our current needs, we will contact you within four to six weeks to arrange an interview. If there does not appear to be an appropriate opportunity at this time, your resume will remain active for six months and will be reviewed against future openings.

Thank you for expressing interest in CV Therapeutics.

Sincerely,

Human Resources Department





Re: [VOTE] 5.0.9 stability rating

2003-08-22 Thread Bill Barker

- Original Message -
From: "Remy Maucherat" <[EMAIL PROTECTED]>
To: "Tomcat Developers List" <[EMAIL PROTECTED]>
Sent: Friday, August 22, 2003 10:20 AM
Subject: [VOTE] 5.0.9 stability rating


> 
> [ ] Alpha
> [X] Beta
> 
>

1) The admin webapp lies about Connector properties.
2) Authorization isn't spec-compliant (I mis-read the spec when I did it).
However, I heard a rumor that the spec may move closer to what Tomcat is
currently doing (what's in pfd3 is pretty nonsensical :), so I haven't been
in a rush to "fix" this.


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: [VOTE] Release mod_jk 1.2.5

2003-08-22 Thread Joseph Shraibman
Glenn Nielsen wrote:
No problems have been reported since the last test source distribution
of mod_jk 1.2.5 was made available for testing July 26.

Please vote on a release of mod_jk 1.2.5:
[ ] +1 release, and I will help build binaries for _ os/web server
[ ] +0 ok to release
[ ] -0 release, but I still have a problem with _
[ ] -1 don't release, there is a problem with _

The votes will be counted Monday August 4 and the source dist
release made if the vote passes.
So whatever happened?  Why wasn't 1.2.5 released?

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


DO NOT REPLY [Bug 22666] - Entered non us-ascii symbols into the form appead wrong in JSP

2003-08-22 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://nagoya.apache.org/bugzilla/show_bug.cgi?id=22666

Entered non us-ascii symbols into the form appead wrong in JSP





--- Additional Comments From [EMAIL PROTECTED]  2003-08-22 18:14 ---
After the posting I seen in request notification in my mailbox following:

... skipped...
Small Letter O With Diaresis (Г¶), it comes to JSP paramaters in strange
state.
skipped...

So (ö) has been changed to (Ɖ�B6)

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



DO NOT REPLY [Bug 22665] - isapi_redirector2.dll fails to load in IIS5

2003-08-22 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://nagoya.apache.org/bugzilla/show_bug.cgi?id=22665

isapi_redirector2.dll fails to load in IIS5

[EMAIL PROTECTED] changed:

   What|Removed |Added

 OS/Version|Other   |Windows NT/2K



--- Additional Comments From [EMAIL PROTECTED]  2003-08-22 17:47 ---
OS->Windows NT/2K

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



DO NOT REPLY [Bug 22663] - Inner Taglibs not being evaluated as taglibs, but static content

2003-08-22 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://nagoya.apache.org/bugzilla/show_bug.cgi?id=22663

Inner Taglibs not being evaluated as taglibs, but static content

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME



--- Additional Comments From [EMAIL PROTECTED]  2003-08-22 17:46 ---
This obviously works for me.  Tomcat admin tool also contains lots examples of
nested taglib invokations that work.  You'll need to provide reproduciable test
case for me to investigate.

-
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

2003-08-22 Thread luehe
luehe   2003/08/22 12:42:58

  Modified:jasper2/src/share/org/apache/jasper/compiler Generator.java
  Log:
  Avoid defining multiple getServletInfo() methods (one for each page
  directive with an 'info' attribute)
  
  Revision  ChangesPath
  1.201 +22 -5 
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.200
  retrieving revision 1.201
  diff -u -r1.200 -r1.201
  --- Generator.java22 Aug 2003 00:07:32 -  1.200
  +++ Generator.java22 Aug 2003 19:42:58 -  1.201
  @@ -148,7 +148,24 @@
   
class DeclarationVisitor extends Node.Visitor {
   
  +private boolean getServletInfoGenerated = false;
  +
  +/*
  + * Generates getServletInfo() method that returns the value of the
  + * page directive's 'info' attribute, if present.
  + *
  + * The Validator has already ensured that if the translation unit
  + * contains more than one page directive with an 'info' attribute,
  + * their values match.
  + */
public void visit(Node.PageDirective n) throws JasperException {
  +
  +if (!getServletInfoGenerated) {
  +getServletInfoGenerated = true;
  +} else {
  +return;
  +}
  +
String info = n.getAttributeValue("info");
if (info == null)
return;
  @@ -156,10 +173,10 @@
out.printil("public String getServletInfo() {");
out.pushIndent();
out.printin("return ");
  - out.print  (quote(info));
  + out.print(quote(info));
out.println(";");
out.popIndent();
  - out.print  ('}');
  + out.printil("}");
out.println();
}
   
  
  
  

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



E-Mail to CompuServe Customer Service

2003-08-22 Thread CompuServe Customer Service
Thank you for your e-mail message to CompuServe Customer Service.
In order to improve our service to members, the general account 
70006,101 ([EMAIL PROTECTED]) has now been replaced 
with new mailboxes dedicated to each country/region.

Please re-send your message to one of the following e-mail 
addresses and a local CompuServe Representative will respond to 
you via e-mail:

United States and Canada:
Technical Support - [EMAIL PROTECTED]
General Support - [EMAIL PROTECTED]
Business Account Support - [EMAIL PROTECTED]

United Kingdom: 
Technical Support - [EMAIL PROTECTED]
General Support - [EMAIL PROTECTED]
Business Account Support - [EMAIL PROTECTED]

Germany and Austria: 
Technische Mitgliederbetreuung - [EMAIL PROTECTED]
Allgemeine Fragen - [EMAIL PROTECTED]
Fragen zur Abrechnung - [EMAIL PROTECTED]
Firmenkundenbetreuung - [EMAIL PROTECTED]

France:
Assistance Technique - [EMAIL PROTECTED]
Assistance Technique Mac - [EMAIL PROTECTED]
Gestion de votre Compte Personnel - [EMAIL PROTECTED]
Gestion de votre Compte Société - [EMAIL PROTECTED]


Netherlands: 
Technical Support - [EMAIL PROTECTED]
General Support - [EMAIL PROTECTED]
Business Account Support - [EMAIL PROTECTED]

Switzerland:
Fragen zur Abrechnung (billing-issues) - [EMAIL PROTECTED] 
Allgemeine Anfragen (general demands) - [EMAIL PROTECTED] 
Technische Mitgliederbetreuung (technical support) - [EMAIL PROTECTED]  
Firmenkundenbetreuung (CBA-issues) - [EMAIL PROTECTED]

All other European Countries: 
Technical Support - [EMAIL PROTECTED]
General Support - [EMAIL PROTECTED]
Business Account Support - [EMAIL PROTECTED]

Japan - CompuServe/NIFTYServe:
General Support - [EMAIL PROTECTED]

Australia/Pacific:
General Support - [EMAIL PROTECTED]

Mexico: 
General Support - [EMAIL PROTECTED]

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



Re: [VOTE] 5.0.9 stability rating

2003-08-22 Thread Jean-Francois Arcand


Remy Maucherat wrote:


[ ] Alpha
[X ] Beta
 
Except for validation (which I'm still investigating (try to create 
smaller test case for the Xerces folks)

-- Jeanfrancois

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


E-Mail to CompuServe Customer Service

2003-08-22 Thread CompuServe Customer Service
Thank you for your e-mail message to CompuServe Customer Service.
In order to improve our service to members, the general account 
70006,101 ([EMAIL PROTECTED]) has now been replaced 
with new mailboxes dedicated to each country/region.

Please re-send your message to one of the following e-mail 
addresses and a local CompuServe Representative will respond to 
you via e-mail:

United States and Canada:
Technical Support - [EMAIL PROTECTED]
General Support - [EMAIL PROTECTED]
Business Account Support - [EMAIL PROTECTED]

United Kingdom: 
Technical Support - [EMAIL PROTECTED]
General Support - [EMAIL PROTECTED]
Business Account Support - [EMAIL PROTECTED]

Germany and Austria: 
Technische Mitgliederbetreuung - [EMAIL PROTECTED]
Allgemeine Fragen - [EMAIL PROTECTED]
Fragen zur Abrechnung - [EMAIL PROTECTED]
Firmenkundenbetreuung - [EMAIL PROTECTED]

France:
Assistance Technique - [EMAIL PROTECTED]
Assistance Technique Mac - [EMAIL PROTECTED]
Gestion de votre Compte Personnel - [EMAIL PROTECTED]
Gestion de votre Compte Société - [EMAIL PROTECTED]


Netherlands: 
Technical Support - [EMAIL PROTECTED]
General Support - [EMAIL PROTECTED]
Business Account Support - [EMAIL PROTECTED]

Switzerland:
Fragen zur Abrechnung (billing-issues) - [EMAIL PROTECTED] 
Allgemeine Anfragen (general demands) - [EMAIL PROTECTED] 
Technische Mitgliederbetreuung (technical support) - [EMAIL PROTECTED]  
Firmenkundenbetreuung (CBA-issues) - [EMAIL PROTECTED]

All other European Countries: 
Technical Support - [EMAIL PROTECTED]
General Support - [EMAIL PROTECTED]
Business Account Support - [EMAIL PROTECTED]

Japan - CompuServe/NIFTYServe:
General Support - [EMAIL PROTECTED]

Australia/Pacific:
General Support - [EMAIL PROTECTED]

Mexico: 
General Support - [EMAIL PROTECTED]

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



[VOTE] 5.0.9 stability rating

2003-08-22 Thread Remy Maucherat

[ ] Alpha
[ ] Beta

As usual, please vote :)

Add comments if needed.

Remy

(sorry, this is repost, my original mail is apparently getting delayed 
indefinitely :-( )

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


DO NOT REPLY [Bug 22663] New: - Inner Taglibs not being evaluated as taglibs, but static content

2003-08-22 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://nagoya.apache.org/bugzilla/show_bug.cgi?id=22663

Inner Taglibs not being evaluated as taglibs, but static content

   Summary: Inner Taglibs not being evaluated as taglibs, but static
content
   Product: Tomcat 5
   Version: Nightly Build
  Platform: PC
OS/Version: Windows NT/2K
Status: NEW
  Severity: Major
  Priority: Other
 Component: Jasper2
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


When taglibs are embedded within each other, the inner taglibs are being 
treated as static content rather than evaluated as taglibs.  The external code 
runs (which is security code), but the inner one only displays as text.  This 
works in JRun4 as expected.





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



CV_Therapeutics

2003-08-22 Thread admin, hr
Title: CV_Therapeutics










Dear Applicant:

We have received your employment inquiry and would like to thank you for giving us the opportunity to review your resume. It will be evaluated by a member or our Human Resources staff and then forwarded to those supervisors who may be able to utilize your background and experience.

If your qualifications match our current needs, we will contact you within four to six weeks to arrange an interview. If there does not appear to be an appropriate opportunity at this time, your resume will remain active for six months and will be reviewed against future openings.

Thank you for expressing interest in CV Therapeutics.

Sincerely,

Human Resources Department





IP address Assignment problem

2003-08-22 Thread Ayoub Raffoul
Hello,

I'm running Apache Tomcat ver. 4.1 on a Windows 2000 server. The machine has 
multipe IP addresses. I have configured Apache Tomcat in server.xml to run 
on a specific IP address port 80 as follows (fake IP address):

   
port="80"   minProcessors="5" maxProcessors="75"
  enableLookups="true" redirectPort="8443"
  acceptCount="100" debug="0" connectionTimeout="2"
  useURIValidationHack="false" disableUploadTimeout="true" 
address="205.200.21.30"/>

I also need to run IIS on the same machine though on a different IP IE: 
205.200.21.31 and port 80. Each time I try to launch IIS I get an error 
message saying port is in use. If I shut down Tomcat then the port get 
released and I'm able to launch Tomcat. It seems that Tomcat is reserving 
all ports # 80 for all IP addresses on this machine. This configuration was 
working correctly in an older version of Tomcat.
Even though Tomcat seems to be reserving all port 80 for all IP addresses it 
is only responding to 205.200.21.30.

Vice Versa is also a problem. If I shut down Tomcat and start IIS on 
205.200.21.31:80, Tomcat will no longer launch on 205.200.21.30:80. It will 
report that the port is in use.

Has anybody encountered a similar issue? Your help is highly appreciated.

Thank you

_
STOP MORE SPAM with the new MSN 8 and get 2 months FREE*   
http://join.msn.com/?page=features/junkmail

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


Re: DO NOT REPLY [Bug 22626] - Removing a webapp(context) doesn'tclose its datasources(resource)

2003-08-22 Thread Remy Maucherat
Dirk Verbeeck wrote:
A more general solution then?
?
By definition, all resources have their own custom way of being released 
(hence the WONTFIX). If the JNDI interface included a "release" or 
something, it could possibly be made to work, but here, I don't see any 
way to come up with a generic solution.

Remy



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


Re: DO NOT REPLY [Bug 22626] - Removing a webapp(context) doesn'tclose its datasources(resource)

2003-08-22 Thread Dirk Verbeeck
A more general solution then?
Letting an application cleanup a resource created by the server is also 
not very nice.

Dirk

[EMAIL PROTECTED] wrote:

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://nagoya.apache.org/bugzilla/show_bug.cgi?id=22626

Removing a webapp(context) doesn't close its datasources(resource)

[EMAIL PROTECTED] changed:

  What|Removed |Added

Status|NEW |RESOLVED
Resolution||WONTFIX


--- Additional Comments From [EMAIL PROTECTED]  2003-08-22 06:44 ---
Tomcat JNDI uses the object factory mechanism. This does not define an API to
release resources. As such, it is up to the webapp to release resources if
needed,  and I am currently against implementing a DBCP hack.
-
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 22602] - Missing ant tasks for serverinfo and sessions

2003-08-22 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://nagoya.apache.org/bugzilla/show_bug.cgi?id=22602

Missing ant tasks for serverinfo and sessions

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2003-08-22 06:50 ---
Thanks for the patch. This will be integrated in 5.0.10.

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



DO NOT REPLY [Bug 22626] - Removing a webapp(context) doesn't close its datasources(resource)

2003-08-22 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://nagoya.apache.org/bugzilla/show_bug.cgi?id=22626

Removing a webapp(context) doesn't close its datasources(resource)

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX



--- Additional Comments From [EMAIL PROTECTED]  2003-08-22 06:44 ---
Tomcat JNDI uses the object factory mechanism. This does not define an API to
release resources. As such, it is up to the webapp to release resources if
needed,  and I am currently against implementing a DBCP hack.

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



tomcat-5 Jasper2: XML comments and PIs are being dropped in JSPdocuments (.jspx)

2003-08-22 Thread Jan Harmsen
version: tomcat 5.0.9 on SuSE Linux 8.2 with JDK 1.4.2

Hi,

when processing JSP documents (.jspx) Jasper2 drops XML comments and
Processing Instructions, i.e. neither XML comments nor PIs occur in the
generated servlet and are thus not submitted to the client. This occurs
only with JSP documents (see test.jspx). In jsp pages (see test.jsp) XML
comments and PIs are submitted correctly.
When including jsp segments into jsp documents (either statically via
jsp:directive.include or dynamically via jsp:include), XML comments and
PIs are submitted correctly as well.


test.jspx:
###


http://java.sun.com/JSP/Page"; version="2.0">


http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">

test whether XML PIs and comments are submitted correctly





paragraph from test.jspx





#


test.jsp
#
<%@ page language="java" contentType="text/html"%>
http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">

test whether XML PIs and comments are submitted correctly





paragraph from test.jsp






#


Best regards,

Jan
-- 


Jan Harmsen

Software Engineer
R&D Tamino
Technology Enablement
Software AG
Uhlandstrasse 12
D - 64297 Darmstadt

phone:  +49-6151-92-1592
fax:+49-6151-92-1609

Tamino XML Server - Number One In XML Management





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



Re: [ tomcat & apache2 ]

2003-08-22 Thread Jun Inamori
Hi Schalk,

> Can anyone assist me in getting tomcat and Apache running
> together? I just finished installing PHP and that was pretty
> painless. Any help will be appreciated.

As for this kind of questions, you can expect the better response from Tomcat-User 
mailing list, because this is the mailing list for the Tomcat developers.
What I can say here is...
The good how-to is available at:
  http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/index.html
Good luck.
-- 

Happy Java programming!

Jun Inamori
OOP-Reserch Corporation
E-mail: [EMAIL PROTECTED]
URL:http://www.oop-reserch.com/

-
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 ServerinfoTask.java SessionsTask.java

2003-08-22 Thread remm
remm2003/08/21 23:47:12

  Added:   catalina/src/share/org/apache/catalina/ant
ServerinfoTask.java SessionsTask.java
  Log:
  - Add sessions and serverinfo tasks, submitted by Vivek Chopra.
  
  Revision  ChangesPath
  1.1  
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/ant/ServerinfoTask.java
  
  Index: ServerinfoTask.java
  ===
  /*
   * $Header: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/ant/ServerinfoTask.java,v
 1.1 2003/08/22 06:47:12 remm Exp $
   * $Revision: 1.1 $
   * $Date: 2003/08/22 06:47:12 $
   *
   * 
   *
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 2002 The Apache Software Foundation.  All rights
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain the above copyright
   *notice, this list of conditions and the following disclaimer.
   *
   * 2. Redistributions in binary form must reproduce the above copyright
   *notice, this list of conditions and the following disclaimer in
   *the documentation and/or other materials provided with the
   *distribution.
   *
   * 3. The end-user documentation included with the redistribution, if
   *any, must include the following acknowlegement:
   *   "This product includes software developed by the
   *Apache Software Foundation (http://www.apache.org/)."
   *Alternately, this acknowlegement may appear in the software itself,
   *if and wherever such third-party acknowlegements normally appear.
   *
   * 4. The names "The Jakarta Project", "Tomcat", and "Apache Software
   *Foundation" must not be used to endorse or promote products derived
   *from this software without prior written permission. For written
   *permission, please contact [EMAIL PROTECTED]
   *
   * 5. Products derived from this software may not be called "Apache"
   *nor may "Apache" appear in their names without prior written
   *permission of the Apache Group.
   *
   * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
   * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
   * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
   * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
   * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
   * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
   * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
   * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
   * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   * SUCH DAMAGE.
   * 
   *
   * This software consists of voluntary contributions made by many
   * individuals on behalf of the Apache Software Foundation.  For more
   * information on the Apache Software Foundation, please see
   * .
   *
   */
  
  
  package org.apache.catalina.ant;
  
  
  import org.apache.tools.ant.BuildException;
  import org.apache.tools.ant.Task;
  
  
  /**
   * Ant task that implements the /serverinfo command
   * supported by the Tomcat manager application.
   *
   * @author Vivek Chopra
   * @version $Revision: 1.1 $ $Date: 2003/08/22 06:47:12 $
   */
  public class ServerinfoTask extends AbstractCatalinaTask {
  
  // Public Methods
  
  /**
   * Execute the requested operation.
   *
   * @exception BuildException if an error occurs
   */
  public void execute() throws BuildException {
  
  super.execute();
  execute("/serverinfo");
  
  }
  
  }
  
  
  
  1.1  
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/ant/SessionsTask.java
  
  Index: SessionsTask.java
  ===
  /*
   * $Header: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/ant/SessionsTask.java,v
 1.1 2003/08/22 06:47:12 remm Exp $
   * $Revision: 1.1 $
   * $Date: 2003/08/22 06:47:12 $
   *
   * 
   *
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 2002 The Apache Software Foundation.  All rights
   * reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   *
   * 1. Redistributions of source code must retain 

DO NOT REPLY [Bug 22581] - Incorrect manifest entries in several JAR files

2003-08-22 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://nagoya.apache.org/bugzilla/show_bug.cgi?id=22581

Incorrect  manifest entries in several JAR files

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2003-08-22 06:55 ---
Those two examples look as intended. Those JARs are made for JNI, and the big
classpath allow using Tomcat more easily in that environment.

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