I think I haven't any PrintWriter open. The first lines of my JSP are:

<%@ page language="java" %>
<%@ taglib uri="/WEB-INF/struts-html.tld"  prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld"  prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld"  prefix="bean" %>
<%@ taglib uri="/WEB-INF/log.tld"  prefix="log" %>
<%@ taglib uri="/WEB-INF/login.tld"  prefix="login" %>

<login:checkLogon />

<log:debug category="jsp.noticias.busquedaNoticias"
message="busquedaNoticiasJSP iniciado" />
<html:html>
<head>
.......

Some idea?

-----Mensaje original-----
De: Adolfo Miguelez [mailto:[EMAIL PROTECTED]]
Enviado el: mi�rcoles, 28 de agosto de 2002 10:09
Para: [EMAIL PROTECTED]
Asunto: Re: java.lang.IllegalStateException: Already called
getOutputStream()


Just a place where to look for,

you can not get more than one outputStream (PrintWritter) from a servlet,
i.e. as a JSP has its own OutputStream you can not create a new one. Use the
PrintWritter already iun the JSP and do not create a new one.

Adolfo.

>From: Miguel Angel Mulero Martinez <[EMAIL PROTECTED]>
>Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>To: Struts Users Mailing List <[EMAIL PROTECTED]>
>Subject: java.lang.IllegalStateException: Already called getOutputStream()
>Date: Wed, 28 Aug 2002 08:41:48 +0200
>
>I'm using the CheckLogonTag with my application. The tag works perfectly.
>If
>it returns SKIP_BODY (that happens when the user is not authenticated) I
>receive an "java.lang.IllegalStateException: Already called
>getOutputStream()".
>
>If the user is authenticated, then the tag returns an EVAL_PAGE and the
>page
>loads perfectly.
>
>Someone can help me?
>
>Thanks in advance!!
>
>
>
>--
>To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>



_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com


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


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

Reply via email to