costin 2003/01/22 12:43:07 Modified: jasper2/src/share/org/apache/jasper/runtime TagHandlerPool.java Log: Another fix. I found how to do the init. Revision Changes Path 1.6 +17 -11 jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime/TagHandlerPool.java Index: TagHandlerPool.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime/TagHandlerPool.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- TagHandlerPool.java 22 Jan 2003 19:58:44 -0000 1.5 +++ TagHandlerPool.java 22 Jan 2003 20:43:06 -0000 1.6 @@ -4,10 +4,10 @@ * $Date$ * * ==================================================================== - * + * * The Apache Software License, Version 1.1 * - * Copyright (c) 1999 The Apache Software Foundation. All rights + * Copyright (c) 1999 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without @@ -15,7 +15,7 @@ * are met: * * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. + * 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 @@ -23,15 +23,15 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: - * "This product includes software developed by the + * 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 + * 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" @@ -57,7 +57,7 @@ * information on the Apache Software Foundation, please see * <http://www.apache.org/>. * - */ + */ package org.apache.jasper.runtime; @@ -103,7 +103,13 @@ protected void init( Servlet servlet ) { int maxSize=-1; String maxSizeS=getOption(servlet, OPTION_MAXSIZE, null); - maxSize=Integer.parseInt(maxSizeS); + if( maxSizeS != null ) { + try { + maxSize=Integer.parseInt(maxSizeS); + } catch( Exception ex) { + maxSize=-1; + } + } if( maxSize <0 ) { maxSize=Constants.MAX_POOL_SIZE; }
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>