Bug 16301

Summary: formatDate tag drop's server connection with IE6
Product: Taglibs Reporter: Graeme Winrow <graeme.winrow>
Component: Standard TaglibAssignee: Tomcat Developers Mailing List <dev>
Status: RESOLVED WORKSFORME    
Severity: normal    
Priority: P3    
Version: 1.0   
Target Milestone: ---   
Hardware: PC   
OS: All   

Description Graeme Winrow 2003-01-21 18:37:29 UTC
the code below falls over in IE6(Netscape is ok) when running on oc4j v.9.0.3:
it seems to be ok until the buffer flushes, the browser displays a "Cannot find 
server or DNS Error" and sometimes the server reports a "connection reset by 
peer" error.

<%@ page contentType="text/html;charset=windows-1252"%>
<%@ taglib uri="jstl-c" prefix="c" %>
<%@ taglib uri="jstl-fmt" prefix="fmt" %>
<html>
<head>
<title></title>
</head>
<body>
	<c:forEach begin="1" end="1000"> 
		<jsp:useBean id="now" class="java.util.Date" />
		<fmt:formatDate value="${now}" />
	</c:forEach>
</body>
</html>
Comment 1 Pierre Delisle 2003-01-22 20:00:38 UTC
This problem should not have anything to do with JSTL.