R: Crap bytes in HTTP response

2002-02-26 Thread daniele rizzi
or sending a note daniele rizzi (just curious) -Messaggio originale- Da: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Per conto di Lachezar Dobrev Inviato: martedì 26 febbraio 2002 9.54 A: Orion-Interest Oggetto: Re: Crap bytes in HTTP response Well... I don't really know what di

Re: Crap bytes in HTTP response

2002-02-25 Thread Lachezar Dobrev
Well... I don't really know what did you do to get this behavior (I am trying for about 6 months to do that, and could not), but that is LEGAL behavior. Look at the "Transfer-Encoding: chunked" header. That means, that the response from the servlet consists of several "chunks". Line 1 ( the

Crap bytes in HTTP response

2002-02-25 Thread Tommi Penttilä
I've got a problem with HttpServletResponse. Here's my test-servlet doGet(): response.setContentType("text/plain"); PrintWriter out = response.getWriter(); out.print("TEST"); Here's what I get telneting: platon