DO NOT REPLY [Bug 31292] New: - provide better error message for "Unable to find setter method for attribute: name"

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

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

provide better error message for "Unable to find setter method for attribute: name"

   Summary: provide better error message for "Unable to find setter
method for attribute: name"
   Product: Tomcat 5
   Version: 5.0.0
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Jasper
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


as per Bug 31291, there appears to be a problem with my struts versions

it would be great if in 
org.apache.jasper.compiler.Generator$GenerateVisitor.evaluateAttribute(Generator.java:2674),
a better error message could be thrown: the tag is


so why not say:
<>

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



DO NOT REPLY [Bug 20713] - SingleSignOnEntry visibility

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

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

SingleSignOnEntry visibility

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-09-19 06:18 ---
This was fixed in 5.0.23

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



DO NOT REPLY [Bug 31171] - ClassCastException in org.apache.jasper.runtime.PageContextImpl.getException

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

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

ClassCastException in org.apache.jasper.runtime.PageContextImpl.getException





--- Additional Comments From [EMAIL PROTECTED]  2004-09-19 02:04 ---
Yoav Shapira's suggestion (2004-09-15 18:14) seems like a reasonable way to handle 
this.  If my 
opinion matters :)

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



cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/servlets DefaultServlet.java WebdavServlet.java

2004-09-18 Thread funkman
funkman 2004/09/18 18:20:10

  Modified:catalina/src/share/org/apache/catalina/servlets
DefaultServlet.java WebdavServlet.java
  Log:
  md5Helper, md5Encoder, and normalize are used by WebdavServlet,
  not DefaultServelt so move them into WebdavServlet.
  
  Remove unused method appendParameters
  
  Revision  ChangesPath
  1.28  +16 -120   
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/servlets/DefaultServlet.java
  
  Index: DefaultServlet.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/servlets/DefaultServlet.java,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- DefaultServlet.java   29 Aug 2004 16:46:12 -  1.27
  +++ DefaultServlet.java   19 Sep 2004 01:20:10 -  1.28
  @@ -1,12 +1,12 @@
   /*
* Copyright 1999,2004 The Apache Software Foundation.
  - * 
  + *
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
  - * 
  + *
*  http://www.apache.org/licenses/LICENSE-2.0
  - * 
  + *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  @@ -32,8 +32,6 @@
   import java.io.Reader;
   import java.io.StringReader;
   import java.io.StringWriter;
  -import java.security.MessageDigest;
  -import java.security.NoSuchAlgorithmException;
   import java.util.Enumeration;
   import java.util.StringTokenizer;
   import java.util.Vector;
  @@ -56,7 +54,6 @@
   import javax.xml.transform.stream.StreamSource;
   
   import org.apache.catalina.Globals;
  -import org.apache.catalina.util.MD5Encoder;
   import org.apache.catalina.util.ServerInfo;
   import org.apache.catalina.util.StringManager;
   import org.apache.catalina.util.URLEncoder;
  @@ -113,18 +110,6 @@
   
   
   /**
  - * MD5 message digest provider.
  - */
  -protected static MessageDigest md5Helper;
  -
  -
  -/**
  - * The MD5 helper object for this class.
  - */
  -protected static final MD5Encoder md5Encoder = new MD5Encoder();
  -
  -
  -/**
* Array containing the safe characters set.
*/
   protected static URLEncoder urlEncoder;
  @@ -259,13 +244,6 @@
   ", output buffer size=" + output);
   }
   
  -// Load the MD5 helper used to calculate signatures.
  -try {
  -md5Helper = MessageDigest.getInstance("MD5");
  -} catch (NoSuchAlgorithmException e) {
  -throw new UnavailableException("No MD5");
  -}
  -
   // Load the proxy dir context.
   try {
   resources = (ProxyDirContext) getServletContext()
  @@ -288,7 +266,7 @@
   if (resources == null) {
   throw new UnavailableException("No resources");
   }
  -
  +
   }
   
   
  @@ -345,7 +323,7 @@
   serveResource(request, response, true);
   } catch( IOException ex ) {
   // we probably have this check somewhere else too.
  -if( ex.getMessage() != null 
  +if( ex.getMessage() != null
   && ex.getMessage().indexOf("Broken pipe") >= 0 ) {
   // ignore it.
   }
  @@ -619,71 +597,6 @@
   
   
   /**
  - * Return a context-relative path, beginning with a "/", that represents
  - * the canonical version of the specified path after ".." and "." elements
  - * are resolved out.  If the specified path attempts to go outside the
  - * boundaries of the current context (i.e. too many ".." path elements
  - * are present), return null instead.
  - *
  - * @param path Path to be normalized
  - */
  -protected String normalize(String path) {
  -
  -if (path == null)
  -return null;
  -
  -// Create a place for the normalized path
  -String normalized = path;
  -
  -if (normalized == null)
  -return (null);
  -
  -if (normalized.equals("/."))
  -return "/";
  -
  -// Normalize the slashes and add leading slash if necessary
  -if (normalized.indexOf('\\') >= 0)
  -normalized = normalized.replace('\\', '/');
  -if (!normalized.startsWith("/"))
  -normalized = "/" + normalized;
  -
  -// Resolve occurrences of "//" in the normalized path
  -while (true) {
  -int index = normalized.indexOf("//");
  -if (index < 0)
  -break;
  -normalized = normalized.substring(0, index) +
  -normalized.substring(index + 1);
  -}
  -
  -// Resol

DO NOT REPLY [Bug 31288] - MailSessionFactory should allow authentication to be configured

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

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

MailSessionFactory should allow authentication to be configured





--- Additional Comments From [EMAIL PROTECTED]  2004-09-18 23:48 ---
Created an attachment (id=12769)
Patch to add a 'password' property to MailSessionFactory initialisation.

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



DO NOT REPLY [Bug 31288] New: - MailSessionFactory should allow authentication to be configured

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

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

MailSessionFactory should allow authentication to be configured

   Summary: MailSessionFactory should allow authentication to be
configured
   Product: Tomcat 4
   Version: 4.1.30
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Enhancement
  Priority: Other
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Looking for a way to configure a JNDI JavaMail session, I ran into
. It
looks like the only way to do this is through manually opening the transport in
code; there should be a way to configure an authenticated session through
server.xml and the MailSessionFactory.

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



DO NOT REPLY [Bug 11679] - "anonymous bind failed" exceptions occur if connectionName not specified with JNDIRealm

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

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

"anonymous bind failed" exceptions occur if connectionName not specified with JNDIRealm





--- Additional Comments From [EMAIL PROTECTED]  2004-09-18 23:31 ---
The JNDIRealm is written so that attributes are only passed if set. Not quite 
what you suggest but it should achieve the same thing. If you have any 
improvements to suggest, patches are always welcome.

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



DO NOT REPLY [Bug 11679] - "anonymous bind failed" exceptions occur if connectionName not specified with JNDIRealm

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

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

"anonymous bind failed" exceptions occur if connectionName not specified with JNDIRealm





--- Additional Comments From [EMAIL PROTECTED]  2004-09-18 23:00 ---
If I remember correctly, binding to the directory is not required when using 
JNDI. As a result, it would be more efficient if the authentication related 
attributes were only provided when authentication is needed.

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



DO NOT REPLY [Bug 11679] - "anonymous bind failed" exceptions occur if connectionName not specified with JNDIRealm

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

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

"anonymous bind failed" exceptions occur if connectionName not specified with JNDIRealm

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2004-09-18 21:46 ---
To quote from the javadocs for javax.naming.Context.SECURITY_PRINCIPAL

Constant that holds the name of the environment property for specifying the 
identity of the principal for authenticating the caller to the service. The 
format of the principal depends on the authentication scheme. If this property 
is unspecified, the behaviour is determined by the service provider.


Therefore the requirement to specify a connectionName attribute even when 
binding anonymously is a property of your LDAP server.

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



DO NOT REPLY [Bug 13331] - Class loader attempts to open directory as file

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

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

Class loader attempts to open directory as file

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2004-09-18 21:37 ---
The code has been patched (4.1.6 and later) in this area but using an 
alternative method. I believe that this should resolve the issue but I do not 
have access to an OS/2 box to test this.

Please re-open this bug if it still occurs under OS/2.

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



DO NOT REPLY [Bug 8607] - Valid User, invalid role, results in msg 403, then incorrect operation

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

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

Valid User, invalid role, results in msg 403, then incorrect operation

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2004-09-18 20:47 ---
Please ask questions like this on the tomcat-user mailing list rather than hi-
jacking bug reports.

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



cvs commit: jakarta-tomcat-5 tomcat.nsi

2004-09-18 Thread mturk
mturk   2004/09/18 12:29:34

  Modified:.tomcat.nsi
  Log:
  Use new MR option to run the service if the user selects that.
  Use new MQ option to shutdown the monitor application on uninstall.
  
  Revision  ChangesPath
  1.64  +7 -2  jakarta-tomcat-5/tomcat.nsi
  
  Index: tomcat.nsi
  ===
  RCS file: /home/cvs/jakarta-tomcat-5/tomcat.nsi,v
  retrieving revision 1.63
  retrieving revision 1.64
  diff -u -r1.63 -r1.64
  --- tomcat.nsi18 Sep 2004 17:43:34 -  1.63
  +++ tomcat.nsi18 Sep 2004 19:29:34 -  1.64
  @@ -37,7 +37,7 @@
 !define MUI_WELCOMEFINISHPAGE_BITMAP side_left.bmp 
 !define MUI_FINISHPAGE_SHOWREADME "$INSTDIR\webapps\ROOT\RELEASE-NOTES.txt"
 !define MUI_FINISHPAGE_RUN $INSTDIR\bin\tomcat5w.exe
  -  !define MUI_FINISHPAGE_RUN_PARAMETERS //MS//Tomcat5
  +  !define MUI_FINISHPAGE_RUN_PARAMETERS //MR//Tomcat5
 !define MUI_FINISHPAGE_NOREBOOTSUPPORT
   
 !define MUI_ABORTWARNING
  @@ -187,6 +187,8 @@
 Pop $2
   
 nsExec::ExecToLog '"$INSTDIR\bin\tomcat5.exe" //US//Tomcat5 --Startup auto'
  +  ; Bahave like Apache Httpd (put the icon in try on login)
  +  WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Run" 
"ApacheTomcatMonitor" '"$INSTDIR\bin\tomcat5w.exe" //MS//Tomcat5'
   
 ClearErrors
   
  @@ -595,6 +597,8 @@
 Delete "$INSTDIR\modern.exe"
 Delete "$INSTDIR\Uninstall.exe"
   
  +  ; Stop Tomcat service monitor if running
  +  nsExec::ExecToLog '"$INSTDIR\bin\tomcat5w.exe" //MQ//Tomcat5'
 ; Delete Tomcat service
 nsExec::ExecToLog '"$INSTDIR\bin\tomcat5.exe" //DS//Tomcat5'
 ClearErrors
  @@ -602,6 +606,7 @@
 DeleteRegKey HKCR "JSPFile"
 DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Apache 
Tomcat 5.5"
 DeleteRegKey HKLM "SOFTWARE\Apache Software Foundation\Tomcat\5.5"
  +  DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Run" 
"ApacheTomcatMonitor"
 RMDir /r "$SMPROGRAMS\Apache Tomcat 5.5"
 Delete "$INSTDIR\tomcat.ico"
 Delete "$INSTDIR\LICENSE"
  
  
  

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



cvs commit: jakarta-tomcat-connectors/procrun/bin tomcat5.exe

2004-09-18 Thread mturk
mturk   2004/09/18 12:26:21

  Modified:procrun/bin Tag: TOMCAT_5_0 tomcat5.exe
  Log:
  Backport from HEAD.
  In debug mode redirect messages to console output.
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.2.2.2   +77 -85jakarta-tomcat-connectors/procrun/bin/tomcat5.exe
  
<>
  
  

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



cvs commit: jakarta-tomcat-connectors/procrun/bin tomcat5w.exe

2004-09-18 Thread mturk
mturk   2004/09/18 12:24:34

  Modified:procrun/bin Tag: TOMCAT_5_0 tomcat5w.exe
  Log:
  Added //MR and //MQ command line options.
  The first behaves like MS but starts the service when run.
  The second closes all monitor applications, so that uninstaller
  doesn't complain about running applications.
  
  Revision  ChangesPath
  No   revision
  No   revision
  1.2.2.3   +207 -206  jakarta-tomcat-connectors/procrun/bin/tomcat5w.exe
  
<>
  
  

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



cvs commit: jakarta-tomcat-connectors/procrun/bin tomcat5w.exe

2004-09-18 Thread mturk
mturk   2004/09/18 12:22:51

  Modified:procrun/bin tomcat5w.exe
  Log:
  Added //MR and //MQ command line options.
  The first behaves like MS but starts the service when run.
  The second closes all monitor applications, so that uninstaller
  doesn't complain about running applications.
  
  Revision  ChangesPath
  1.7   +207 -206  jakarta-tomcat-connectors/procrun/bin/tomcat5w.exe
  
<>
  
  

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



cvs commit: jakarta-tomcat-4.0 KEYS

2004-09-18 Thread keith
keith   2004/09/18 11:38:51

  Modified:.KEYS
  Log:
  Add my key
  
  Revision  ChangesPath
  1.4   +36 -0 jakarta-tomcat-4.0/KEYS
  
  Index: KEYS
  ===
  RCS file: /home/cvs/jakarta-tomcat-4.0/KEYS,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- KEYS  11 Jan 2003 08:07:11 -  1.3
  +++ KEYS  18 Sep 2004 18:38:50 -  1.4
  @@ -199,3 +199,39 @@
   =MWUr

   -END PGP PUBLIC KEY BLOCK-

   
  +pub  1024D/3AE4251E 2004-09-18 Keith Wannamaker (Jakarta Signing Key) <[EMAIL 
PROTECTED]>
  + Key fingerprint = EA04 AD83 1B38 7C50 47C2  6CC6 8BA4 1263 3AE4 251E
  +sig 3   3AE4251E 2004-09-18   Keith Wannamaker (Jakarta Signing Key) <[EMAIL 
PROTECTED]>
  +sub  2048g/0F87C810 2004-09-18
  +sig 3AE4251E 2004-09-18   Keith Wannamaker (Jakarta Signing Key) <[EMAIL 
PROTECTED]>
  +
  +-BEGIN PGP PUBLIC KEY BLOCK-
  +Version: GnuPG v1.2.1 (GNU/Linux)
  +
  +mQGiBEFMQLsRBACZwsgmS/gDyNUTQ27YWFfzC9ov93vopDZL3mg7cu8FO0Gy+fcn
  +s6wQQBhh/XJbFaPgalQS5X4enkQJoZzzVJ/zlSPQojR3ggrcdwbdcTkfzKJ0agDz
  +aZ8B4ayv0EwYQePipOX2LXgP5TjNs1s03Vhk6Ib93VbilZeDM3Jf1QdFQwCg1/ke
  +QPE+tvcHEkCNM/qVQmLP/X0D/imNyL1sOUykvHNsnANErZX7VUdS4rfT+jLQBrjc
  +NGTA2sib+ba7htXG0pu2Km1eE6csu1+1zNg3E7cLVrcsO3f5y7Hj2t38NJuBY2bG
  +PWw5DGD1f1WNjrqYGSJicDjaAVBbqtZrZ3EN5pE0l9+cLApwPdlktYD9zf4FPUGH
  +bQk+A/9SFQaNQBlF9j3zPJXUlq32RZrl7iJT+D8k3EDOXG1zyksJGbPC43PEEnnD
  +KkDUxLA27DE0woEhXfR286u8sZLhJ2WMQvtz9JbdmWDaItYywmvynIClALpbl8AO
  +KJ6WvqCAbfKTbE2wsrPCnVYLCeWDIJ0iAerZrfc6Y3Eb4xzhdbQ5S2VpdGggV2Fu
  +bmFtYWtlciAoSmFrYXJ0YSBTaWduaW5nIEtleSkgPEtlaXRoQEFwYWNoZS5vcmc+
  +iFkEExECABkFAkFMQLsECwcDAgMVAgMDFgIBAh4BAheAAAoJEIukEmM65CUeu3MA
  +nRu9lLuv9bFDnORC2y+OBwZhVdVqAJ9EYzNivOkIGsistM53anq7sOucmrkCDQRB
  +TEDlEAgA8iuHtshj5AdBb4NvQHC2Se3j84pQEbSPjXPXpur7cA4Bx1+39+poVrAT
  +XNsv1EYDHdvLkI8odCqCSdLTGY+aJR72RJ3TnCtF2CuElzSkT0q5Bzj4R/IFpfqO
  +5cjH8HSJDYPB6a9AlIByz48tUxEeoIRSIK4eoJElqWXK5pdfO7qKdHC3b+leGYQj
  +GzEuzQmQPFlWk1Mt2VvfbKPyQXek+AZwSn+p9NzSM3bSvrkO8I8OyqJU5uQKdRQ0
  +zwWyzZTOUDYFPdaNgxpCkTBQA/ARL7xcJgr6kmF+E550on1lD5JGsTdq75rDL3xo
  +4OfKbgBo7gHfqWcHfD8S06vxQlr0xwADBQf/ThcO3sLTKyP2AkHm3VmC44prXuPQ
  +gaStszktXMNH4TIk8lI5ATkyX5ORDeYVnZBALml9/Q1sg2zcGtF1nJ3LrenmLhmB
  +1T00D8M+tceqjyBdS3w9U8haagnOhc0idjOHdaQnV7bei+fWDa4VUdsS/bdKZpaF
  +jfkAXnWtRS8WkSIhA4/xCkv4Kvo7AblRkNu582O4MnSn7F5DS4MYaDE3gObmfn7G
  +yBwmy7iAaCk3wGKgjM0/N2De4mPAEWYAwDBPGKL6qw9TaapphAWOdIQfQx2bDS5t
  +5A8SsE1XfJUP/+AYrbvQPCzqUz5gMFoPX/ISDMl2Eed/lDm3g/6B5XXMTIhGBBgR
  +AgAGBQJBTEDlAAoJEIukEmM65CUeo8sAn3QzVWcQYITJvmfr73xTEbTQ2YiJAKCF
  +c/z21YATczEUCU140ng+rG2hyw==
  +=MJPg
  +-END PGP PUBLIC KEY BLOCK-
  
  
  

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



Re: cvs commit: jakarta-tomcat-5 tomcat.nsi

2004-09-18 Thread Mladen Turk
Remy Maucherat wrote:
 Add compatibility option to the installer for pre Java5 jvm's.
 Also do not add Administation link if admin package is not installed.
 Also some minor display change on JVM not found.
 

I'll have to -1 this: it reintroduces all the bloat in the installer 
(which is already too big: we should instead be getting rid of the 
Tomcat source).

I've commented out (can be deleted all together) all packages that are
not present in the standard distribution (removed Source and Admin),
cause they exist as separate packages.
I also don't like that link on the final page ('Start Tomcat').
It's name confuses cause the Tomcat is not actually started, but rather
the monitor is put into the try.
MT.


smime.p7s
Description: S/MIME Cryptographic Signature


cvs commit: jakarta-tomcat-5 tomcat.nsi

2004-09-18 Thread mturk
mturk   2004/09/18 10:43:34

  Modified:.tomcat.nsi
  Log:
  Comment out all packages that are not present in the standard
  .tar.gz or .zip distribution.
  
  Revision  ChangesPath
  1.63  +38 -38jakarta-tomcat-5/tomcat.nsi
  
  Index: tomcat.nsi
  ===
  RCS file: /home/cvs/jakarta-tomcat-5/tomcat.nsi,v
  retrieving revision 1.62
  retrieving revision 1.63
  diff -u -r1.62 -r1.63
  --- tomcat.nsi18 Sep 2004 14:49:58 -  1.62
  +++ tomcat.nsi18 Sep 2004 17:43:34 -  1.63
  @@ -82,13 +82,13 @@
   LangString DESC_SecTomcat ${LANG_ENGLISH} "Install the Tomcat Servlet 
container."
   LangString DESC_SecTomcatCore ${LANG_ENGLISH} "Install the Tomcat Servlet 
container core."
   LangString DESC_SecTomcatService ${LANG_ENGLISH} "Automatically start Tomcat 
when the computer is started. This requires Windows NT 4.0, Windows 2000 or Windows 
XP."
  -LangString DESC_SecTomcatSource ${LANG_ENGLISH} "Install the Tomcat source 
code."
  +;LangString DESC_SecTomcatSource ${LANG_ENGLISH} "Install the Tomcat source 
code."
   LangString DESC_SecMenu ${LANG_ENGLISH} "Create a Start Menu program group for 
Tomcat."
   LangString DESC_SecDocs ${LANG_ENGLISH} "Install the Tomcat documentation 
bundle. This include documentation on the servlet container and its configuration 
options, on the Jasper JSP page compiler, as well as on the native webserver 
connectors."
   LangString DESC_SecExamples ${LANG_ENGLISH} "Installs some examples web 
applications."
  -LangString DESC_SecAdmin ${LANG_ENGLISH} "Installs the administration web 
application."
  -LangString DESC_SecWebapps ${LANG_ENGLISH} "Installs other utility web 
applications (WebDAV, balancer, etc)."
  -LangString DESC_SecCompat ${LANG_ENGLISH} "Installs Java2™ compatibility 
package. This release of Apache Tomcat was packaged to run on J2SE 5.0 or later. It 
can be run on earlier JVMs by installng this package."
  +LangString DESC_SecAdmin ${LANG_ENGLISH} "Installs the administration web 
application.";LangString DESC_SecWebapps ${LANG_ENGLISH} "Installs other utility 
web applications (WebDAV, balancer, etc)."
  +;LangString DESC_SecWebapps ${LANG_ENGLISH} "Installs other utility web 
applications (WebDAV, balancer, etc)."
  +;LangString DESC_SecCompat ${LANG_ENGLISH} "Installs Java2™ compatibility 
package. This release of Apache Tomcat was packaged to run on J2SE 5.0 or later. It 
can be run on earlier JVMs by installng this package."
   
 ;Language
 !insertmacro MUI_LANGUAGE English
  @@ -192,13 +192,13 @@
   
   SectionEnd
   
  -Section "Source Code" SecTomcatSource
  -
  -  SectionIn 3
  -  SetOutPath $INSTDIR
  -  File /r src
  -
  -SectionEnd
  +;Section "Source Code" SecTomcatSource
  +;
  +;  SectionIn 3
  +;  SetOutPath $INSTDIR
  +;  File /r src
  +;
  +;SectionEnd
   
   SubSectionEnd
   
  @@ -216,11 +216,11 @@
 CreateShortCut "$SMPROGRAMS\Apache Tomcat 5.5\Welcome.lnk" \
"http://127.0.0.1:$R0/";
   
  -  IfFileExists "$INSTDIR\server\webapps\admin" 0 NoAdminApp
  -
  -  CreateShortCut "$SMPROGRAMS\Apache Tomcat 5.5\Tomcat Administration.lnk" \
  - "http://127.0.0.1:$R0/admin/";
  -NoAdminApp:
  +;  IfFileExists "$INSTDIR\server\webapps\admin" 0 NoAdminApp
  +;
  +;  CreateShortCut "$SMPROGRAMS\Apache Tomcat 5.5\Tomcat Administration.lnk" \
  +; "http://127.0.0.1:$R0/admin/";
  +;NoAdminApp:
   
 IfFileExists "$INSTDIR\server\webapps\manager" 0 NoManagerApp
   
  @@ -273,16 +273,16 @@
   
   SectionEnd
   
  -Section "Administration" SecAdmin
  -
  -  SectionIn 3
  -
  -  SetOutPath $INSTDIR\server\webapps
  -  File /r server\webapps\admin
  -  SetOutPath $INSTDIR\conf\Catalina\localhost
  -  File conf\Catalina\localhost\admin.xml
  -
  -SectionEnd
  +;Section "Administration" SecAdmin
  +;
  +;  SectionIn 3
  +;
  +;  SetOutPath $INSTDIR\server\webapps
  +;  File /r server\webapps\admin
  +;  SetOutPath $INSTDIR\conf\Catalina\localhost
  +;  File conf\Catalina\localhost\admin.xml
  +;
  +;SectionEnd
   
   Section "Webapps" SecWebapps
   
  @@ -294,14 +294,14 @@
   
   SectionEnd
   
  -Section "Compatibility" SecCompat
  -
  -  SetOutPath $INSTDIR
  -  File /oname=bin\jmx.jar ..\compat\bin\jmx.jar
  -  File /oname=common\endorsed\xercesImpl.jar 
..\compat\common\endorsed\xercesImpl.jar
  -  File /oname=common\endorsed\xml-apis.jar  ..\compat\common\endorsed\xml-apis.jar
  -
  -SectionEnd
  +;Section "Compatibility" SecCompat
  +;
  +;  SetOutPath $INSTDIR
  +;  File /oname=bin\jmx.jar ..\compat\bin\jmx.jar
  +;  File /oname=common\endorsed\xercesImpl.jar 
..\compat\common\endorsed\xercesImpl.jar
  +;  File /oname=common\endorsed\xml-apis.jar  ..\compat\common\endorsed\xml-apis.jar
  +;
  +;SectionEnd
   
   Section -post
 nsExec::ExecToLog '"$INSTDIR\bin\tomcat5.exe" //US//Tomcat5 --Classpath 
"$INSTDIR\

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

2004-09-18 Thread remm
remm2004/09/18 10:09:31

  Modified:webapps/docs jasper-howto.xml
  Log:
  - The defaults for Jasper change a bit.
  - Also add the genAsCharArray parameter.
  
  Revision  ChangesPath
  1.16  +7 -13 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.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- jasper-howto.xml  1 Sep 2004 22:04:27 -   1.15
  +++ jasper-howto.xml  18 Sep 2004 17:09:31 -  1.16
  @@ -106,6 +106,9 @@
   javaEncoding - Java file encoding to use for generating
   java source files. Default UTF8.
   
  +genStrAsCharArray - Should text strings be generated as char
  +arrays, to improve performance in some cases? Default false.
  +
   keepgenerated - Should we keep the generated Java source
   code for each page instead of deleting it? true or
   false, default true.
  @@ -135,19 +138,10 @@
   
   development - To disable on access checks for JSP
   pages compilation set this to false.
  -fork - The internal JVM javac compiler used by Ant
  -has a known memory leak. And Ant requires that java compiles be synchronized,
  -i.e. only one JSP page can be compiled at a time.  Set fork to
  -true or do not define it (it is the default value) so that Ant 
  -compiles JSP pages in a seperate JVM.
  -This removes the synchronization of JSP page compiles and prevents
  -all the javac classes from being instantiated and subsequently garbage
  -collected by the JVM Tomcat is running in. This also works around known 
  -issues with javac, including memory leaking, as well as JAR file locking
  -on Windows.
  -reloading - To disable background compilation of JSP
  -pages, which uses one thread per web application, set this to 
  -false.
  +genStrAsCharArray - To generate slightly more efficient 
  +char arrays, set this to true.
  +trimSpaces - To remove useless bytes from the response,
  +set this to true.
   
   
   
  
  
  

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



DO NOT REPLY [Bug 28631] - JAASRealm fix to permit user-specified user/group Principals

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

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

JAASRealm fix to permit user-specified user/group Principals





--- Additional Comments From [EMAIL PROTECTED]  2004-09-18 16:41 ---
I've uploaded a small Ant project contains a series of test cases for the JAASRealm 
patches. The patches 
were made against the source tree for Tomcat 5.0.28.

First, a short explanation of what the patch itself is all about. As several observers 
have
noted, the current JAASRealm implementation doesn't actually deliver on all of the 
functionality
it promises, particularly with respect to its ability to return Principals of 
user-specified
types. In addition, the current implementation is limited by its inability to hash
passwords. The patch fixes both of these issues.

Files that have been modified (relative to jakarta-tomcat-catalina/catalina/src/share):
org/apache/catalina/realm/JAASRealm.java
org/apache/catalina/realm/LocalStrings.properties
org/apache/catalina/realm/JAASCallbackHandler.java

See the other attachments to this bug for the patch files, whole files, and test case 
tar file.

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



DO NOT REPLY [Bug 28631] - JAASRealm fix to permit user-specified user/group Principals

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

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

JAASRealm fix to permit user-specified user/group Principals





--- Additional Comments From [EMAIL PROTECTED]  2004-09-18 16:37 ---
Created an attachment (id=12767)
LocalStrings.properties (patch cf. tomcat 5.028 release)

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



DO NOT REPLY [Bug 28631] - JAASRealm fix to permit user-specified user/group Principals

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

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

JAASRealm fix to permit user-specified user/group Principals





--- Additional Comments From [EMAIL PROTECTED]  2004-09-18 16:37 ---
Created an attachment (id=12766)
JAASCallbackHandler (patch cf. tomcat 5.028 release)

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



DO NOT REPLY [Bug 28631] - JAASRealm fix to permit user-specified user/group Principals

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

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

JAASRealm fix to permit user-specified user/group Principals





--- Additional Comments From [EMAIL PROTECTED]  2004-09-18 16:36 ---
Created an attachment (id=12765)
JAASRealm.java (patch cf. tomcat 5.028 release)

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



DO NOT REPLY [Bug 28631] - JAASRealm fix to permit user-specified user/group Principals

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

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

JAASRealm fix to permit user-specified user/group Principals





--- Additional Comments From [EMAIL PROTECTED]  2004-09-18 16:32 ---
Created an attachment (id=12764)
LocalStrings.properties (whole file; not a diff)

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



DO NOT REPLY [Bug 28631] - JAASRealm fix to permit user-specified user/group Principals

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

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

JAASRealm fix to permit user-specified user/group Principals





--- Additional Comments From [EMAIL PROTECTED]  2004-09-18 16:32 ---
Created an attachment (id=12763)
JAASCallbackHandler.java (whole file; not a diff)

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



DO NOT REPLY [Bug 28631] - JAASRealm fix to permit user-specified user/group Principals

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

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

JAASRealm fix to permit user-specified user/group Principals





--- Additional Comments From [EMAIL PROTECTED]  2004-09-18 16:31 ---
Created an attachment (id=12762)
JAASRealm.java (whole file, not a diff)

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



DO NOT REPLY [Bug 28631] - JAASRealm fix to permit user-specified user/group Principals

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

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

JAASRealm fix to permit user-specified user/group Principals





--- Additional Comments From [EMAIL PROTECTED]  2004-09-18 16:29 ---
Created an attachment (id=12761)
Small Ant project that builds a test case WAR, dummy JAAS LoginModule JAR and 
associated context descriptors.

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



Re: cvs commit: jakarta-tomcat-5 tomcat.nsi

2004-09-18 Thread Remy Maucherat
[EMAIL PROTECTED] wrote:
mturk   2004/09/18 07:49:58
 Modified:.tomcat.nsi
 Log:
 Add compatibility option to the installer for pre Java5 jvm's.
 Also do not add Administation link if admin package is not installed.
 Also some minor display change on JVM not found.
 

I'll have to -1 this: it reintroduces all the bloat in the installer 
(which is already too big: we should instead be getting rid of the 
Tomcat source).

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


cvs commit: jakarta-tomcat-5 tomcat.nsi

2004-09-18 Thread mturk
mturk   2004/09/18 07:49:58

  Modified:.tomcat.nsi
  Log:
  Add compatibility option to the installer for pre Java5 jvm's.
  Also do not add Administation link if admin package is not installed.
  Also some minor display change on JVM not found.
  
  Revision  ChangesPath
  1.62  +25 -4 jakarta-tomcat-5/tomcat.nsi
  
  Index: tomcat.nsi
  ===
  RCS file: /home/cvs/jakarta-tomcat-5/tomcat.nsi,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- tomcat.nsi14 Sep 2004 07:59:41 -  1.61
  +++ tomcat.nsi18 Sep 2004 14:49:58 -  1.62
  @@ -88,6 +88,7 @@
   LangString DESC_SecExamples ${LANG_ENGLISH} "Installs some examples web 
applications."
   LangString DESC_SecAdmin ${LANG_ENGLISH} "Installs the administration web 
application."
   LangString DESC_SecWebapps ${LANG_ENGLISH} "Installs other utility web 
applications (WebDAV, balancer, etc)."
  +LangString DESC_SecCompat ${LANG_ENGLISH} "Installs Java2™ compatibility 
package. This release of Apache Tomcat was packaged to run on J2SE 5.0 or later. It 
can be run on earlier JVMs by installng this package."
   
 ;Language
 !insertmacro MUI_LANGUAGE English
  @@ -114,7 +115,7 @@
   
   Section "Core" SecTomcatCore
   
  -  SectionIn 1 2 3
  +  SectionIn 1 2 3 RO
   
 IfSilent +2 0
 Call checkJvm
  @@ -215,8 +216,18 @@
 CreateShortCut "$SMPROGRAMS\Apache Tomcat 5.5\Welcome.lnk" \
"http://127.0.0.1:$R0/";
   
  +  IfFileExists "$INSTDIR\server\webapps\admin" 0 NoAdminApp
  +
 CreateShortCut "$SMPROGRAMS\Apache Tomcat 5.5\Tomcat Administration.lnk" \
"http://127.0.0.1:$R0/admin/";
  +NoAdminApp:
  +
  +  IfFileExists "$INSTDIR\server\webapps\manager" 0 NoManagerApp
  +
  +  CreateShortCut "$SMPROGRAMS\Apache Tomcat 5.5\Tomcat Manager.lnk" \
  + "http://127.0.0.1:$R0/manager/html";
  +
  +NoManagerApp:
   
 IfFileExists "$INSTDIR\webapps\webapps\tomcat-docs" 0 NoDocumentaion
   
  @@ -283,6 +294,15 @@
   
   SectionEnd
   
  +Section "Compatibility" SecCompat
  +
  +  SetOutPath $INSTDIR
  +  File /oname=bin\jmx.jar ..\compat\bin\jmx.jar
  +  File /oname=common\endorsed\xercesImpl.jar 
..\compat\common\endorsed\xercesImpl.jar
  +  File /oname=common\endorsed\xml-apis.jar  ..\compat\common\endorsed\xml-apis.jar
  +
  +SectionEnd
  +
   Section -post
 nsExec::ExecToLog '"$INSTDIR\bin\tomcat5.exe" //US//Tomcat5 --Classpath 
"$INSTDIR\bin\bootstrap.jar" --StartClass org.apache.catalina.startup.Bootstrap 
--StopClass org.apache.catalina.startup.Bootstrap --StartParams start --StopParams 
stop  --StartMode jvm --StopMode jvm'
 nsExec::ExecToLog '"$INSTDIR\bin\tomcat5.exe" //US//Tomcat5 --JvmOptions 
"-Dcatalina.home=$INSTDIR#-Djava.endorsed.dirs=$INSTDIR\common\endorsed#-Djava.io.tmpdir=$INSTDIR\temp"
 --StdOutput "$INSTDIR\logs\stdout.log" --StdError "$INSTDIR\logs\stderr.log"'
  @@ -330,6 +350,7 @@
 !insertmacro MUI_DESCRIPTION_TEXT ${SecTomcatCore} $(DESC_SecTomcatCore)
 !insertmacro MUI_DESCRIPTION_TEXT ${SecTomcatService} $(DESC_SecTomcatService)
 !insertmacro MUI_DESCRIPTION_TEXT ${SecTomcatSource} $(DESC_SecTomcatSource)
  +  !insertmacro MUI_DESCRIPTION_TEXT ${SecCompat} $(DESC_SecCompat)
 !insertmacro MUI_DESCRIPTION_TEXT ${SecMenu} $(DESC_SecMenu)
 !insertmacro MUI_DESCRIPTION_TEXT ${SecDocs} $(DESC_SecDocs)
 !insertmacro MUI_DESCRIPTION_TEXT ${SecExamples} $(DESC_SecExamples)
  @@ -437,14 +458,14 @@
   
 !insertmacro MUI_INSTALLOPTIONS_READ $3 "jvm.ini" "Field 2" "State"
 IfFileExists "$3\bin\java.exe" NoErrors1
  -  MessageBox MB_OK "No Java Virtual Machine found."
  +  MessageBox MB_OK|MB_ICONSTOP "No Java Virtual Machine found in folder:$\r$\n$3"
 Quit
   NoErrors1:
 StrCpy "$JavaHome" $3
 Call findJVMPath
 Pop $4
 StrCmp $4 "" 0 NoErrors2
  -  MessageBox MB_OK "No Java Virtual Machine found."
  +  MessageBox MB_OK|MB_ICONSTOP "No Java Virtual Machine found in folder:$\r$\n$3"
 Quit
   NoErrors2:
   
  
  
  

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