bugzilla | 1 Apr 2003 01:06
Picon
Favicon

DO NOT REPLY [Bug 18536] - Tomcat Regression: attributes not set correctly for forwarded servlet

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

Tomcat Regression: attributes not set correctly for forwarded servlet

jfarcand <at> apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |

------- Additional Comments From jfarcand <at> apache.org  2003-03-31 23:06 -------
Re-open and close it as invalid instead of fixed.
bugzilla | 1 Apr 2003 01:06
Picon
Favicon

DO NOT REPLY [Bug 18536] - Tomcat Regression: attributes not set correctly for forwarded servlet

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

Tomcat Regression: attributes not set correctly for forwarded servlet

jfarcand <at> apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |INVALID

------- Additional Comments From jfarcand <at> apache.org  2003-03-31 23:06 -------
This bug is invalid.
kinman | 1 Apr 2003 02:20
Picon
Favicon

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

kinman      2003/03/31 16:20:01

  Modified:    jasper2/src/share/org/apache/jasper/compiler
                        ELFunctionMapper.java
  Log:
  - Fix couple of bugs in function mapping.

  Revision  Changes    Path
  1.8       +20 -10    jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/ELFunctionMapper.java

  Index: ELFunctionMapper.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/ELFunctionMapper.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ELFunctionMapper.java	29 Mar 2003 01:58:50 -0000	1.7
  +++ ELFunctionMapper.java	1 Apr 2003 00:20:01 -0000	1.8
   <at>  <at>  -104,27 +104,33  <at>  <at> 

   	public void visit(Node.ParamAction n) throws JasperException {
   	    doMap(n.getValue());
  +	    visitBody(n);
   	}

   	public void visit(Node.IncludeAction n) throws JasperException {
   	    doMap(n.getPage());
  +	    visitBody(n);
   	}

(Continue reading)

bugzilla | 1 Apr 2003 02:52
Picon
Favicon

DO NOT REPLY [Bug 18540] New: - session invalidate() still doesn't work....

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

session invalidate() still doesn't work....

           Summary: session invalidate() still doesn't work....
           Product: Tomcat 3
           Version: 3.3.1 Final
          Platform: PC
        OS/Version: Other
            Status: NEW
          Severity: Major
          Priority: Other
         Component: Unknown
        AssignedTo: tomcat-dev <at> jakarta.apache.org
        ReportedBy: tomtibbetts <at> yahoo.com

During my logoff procedure in Struts, I do the following:

request.getSession().invalidate();

to kill the session.  When I press the back button on the browser, I can still 
act in my session as though I had never been logged out.  It doesn't dump me 
back to my login page as I would expect.  Also, my UserPrincipal is still not 
null. After calling the invalidate(), I do a request.getSession().getId() and 
(Continue reading)

Amy Roh | 1 Apr 2003 03:34
Picon
Favicon

TC5 Servlet unavailable error

It seems like when context is stopped and restarted, servlet always 
returns "unavailable".  You can generate an error by saving your changes 
in admin by "commit".  Then any process after that returns admin servlet 
unavailalbe.

Mar 31, 2003 4:48:29 PM org.apache.catalina.core.StandardWrapperValve invoke
INFO: Servlet admin.login_jsp is currently unavailable

Amy
luehe | 1 Apr 2003 05:14
Picon
Favicon

cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/servlet JspServlet.java

luehe       2003/03/31 19:14:53

  Modified:    jasper2/src/share/org/apache/jasper
                        JspCompilationContext.java
               jasper2/src/share/org/apache/jasper/compiler
                        JspDocumentParser.java TagLibraryInfoImpl.java
                        TldLocationsCache.java
               jasper2/src/share/org/apache/jasper/resources
                        messages.properties messages_es.properties
                        messages_fr.properties messages_ja.properties
               jasper2/src/share/org/apache/jasper/servlet JspServlet.java
  Log:
  - Fixed regression caused by fix to 15875 ("Automatic Recognition of
    Tag Library TLDs")
  - Expose any errors occurring during initialization of TLD locations cache

  Revision  Changes    Path
  1.36      +10 -17    jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/JspCompilationContext.java

  Index: JspCompilationContext.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/JspCompilationContext.java,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- JspCompilationContext.java	27 Feb 2003 22:51:38 -0000	1.35
  +++ JspCompilationContext.java	1 Apr 2003 03:14:52 -0000	1.36
   <at>  <at>  -517,18 +517,13  <at>  <at> 
       }

(Continue reading)

Robert Upshall | 1 Apr 2003 05:26

Tomcat catalina.sh and setclasspath.sh

Hi,

I was wondering who is responsible for catalina.sh and setclasspath.sh 
scripts.  I have made some very very small modifications that will allow 
the existing scripts to work with OS400.  The changes are os specific 
additions that should not affect the other OS's that use the scripts.

Who would I have to submit these changes to for review/approval?  This 
would make a nice addition to the list of supports OS's.

Robert
bugzilla | 1 Apr 2003 05:45
Picon
Favicon

DO NOT REPLY [Bug 18544] New: - User looses roles if Full Name is added

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

User looses roles if Full Name is added

           Summary: User looses roles if Full Name is added
           Product: Tomcat 4
           Version: 4.1.0
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Webapps:Manager
        AssignedTo: tomcat-dev <at> jakarta.apache.org
        ReportedBy: danhudson <at> sonimtech.com

If you use the manager webpage to add a full name to a user, the user will 
loose all roles configured in the userID XML file.

Click this page -> http://127.0.0.1:8080/admin/index.jsp
'User Definition' - 'Users'- Click on a User - Add a Full Name - 'Save'

Once you do this the edited user looses their roles.  I installed Tomcat for 
the first time then went scurrying around teh above page and gave admin a 
(Continue reading)

bugzilla | 1 Apr 2003 06:19
Picon
Favicon

DO NOT REPLY [Bug 18545] New: - can not upload a file size greater than 2 G on tomcat4/linux

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

can not upload a file size greater than 2 G on tomcat4/linux

           Summary: can not upload a file size greater than 2 G on
                    tomcat4/linux
           Product: Tomcat 4
           Version: 4.1.8
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: Critical
          Priority: Other
         Component: Servlet & JSP API
        AssignedTo: tomcat-dev <at> jakarta.apache.org
        ReportedBy: sunjerry <at> hotmail.com

I have tomcat 4.1.18 running on redhat linux 7.x and 8.0

I can not uplaod the file if the file size is greater than 2G.

It has no problem on windows platform.

I am using struts struts-upload program.
(Continue reading)

Costin Manolache | 1 Apr 2003 07:59
Picon
Favicon

Re: TC5 Servlet unavailable error

Amy Roh wrote:

> It seems like when context is stopped and restarted, servlet always
> returns "unavailable".  You can generate an error by saving your changes
> in admin by "commit".  Then any process after that returns admin servlet
> unavailalbe.
> 
> Mar 31, 2003 4:48:29 PM org.apache.catalina.core.StandardWrapperValve
> invoke INFO: Servlet admin.login_jsp is currently unavailable

I tought I fixed it. Are you doing stop/destroy/init/start or just
stop/start ?

The trick is to unregister and re-register the context, I think the 
mapper may hold references to the old wrappers.

Costin

Gmane