yes..I did. I tracked down the problem to be a REQUEST URI IS TOO LARGE
error in the sun code. Just as I suspected. The reason is, as my form grows
each time I add a new row, it adds about 25 new request parameters (and
values) to the request URI. By the time I reach the 12 or 13 row, the
request URI is probably > 16K or so, maybe not that large..not sure.
Whatever it is, its too large for Orion to accept, and probably for any
other servlet engine. Therefore, the quick fix is to not send any request
parameters to the JSP page read in (except the jsessionid value so that it
can access the same session the request that came in is using), and instead
tell my users of the framework to use javabeans. Oh well.
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Robert
> Nicholson
> Sent: Friday, March 09, 2001 3:45 PM
> To: Orion-Interest
> Subject: RE: IOException error writing to server..what does it mean?
>
>
> Have you tried increase the size of the buffer on your jsp page?
>
> > -----Original Message-----
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED]]On Behalf Of Duffey, Kevin
> > Sent: Friday, March 09, 2001 9:51 AM
> > To: Orion-Interest
> > Subject: IOException error writing to server..what does it mean?
> >
> >
> > Can anyone possibly explain to me why this error occurs? I am
> > developing an
> > online worksheet system which uses between 20 and 70 columns
> (dynamically
> > built) and any number of rows. It seems as I get to about 11 to 14 rows,
> > Orion throws this exception and the application no longer
> > responds. This is
> > happening when I am transforming dynamic XML output from JSP
> > pages into HTML
> > via XSL pages. The worksheet works fine up until 11 or so rows,
> then this
> > happens. I can only think that maybe a buffer or something is getting
> > overloaded? Imagine 12 rows each with 30 columns..that is the
> > amount of HTML
> > going out. Maybe I need to somehow flush the buffer (response
> > buffer)? Or is
> > there an automatic way to tell the server to send data back as it
> > gets full?
> >
> > Thanks.
> >
> >
> >
> > java.io.IOException: Error writing to server
> > at
> > sun.net.www.protocol.http.HttpURLConnection.writeRequests(HttpURLConn
> > ection.java:220)
> > at
> > sun.net.www.protocol.http.HttpURLConnection.writeRequests(HttpURLConn
> > ection.java:229)
> > at
> > sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLCon
> > nection.java:480)
> > at
> > com.mvc.servlets.ControllerServlet.forward(ControllerServlet.java:485
> > )
> > at
> > com.mvc.servlets.ControllerServlet.service(ControllerServlet.java:371
> > )
> > at javax.servlet.http.HttpServlet.service(HttpServlet.java:329)
> > at com.evermind.server.http.d4.s3(JAX)
> > at com.evermind.server.http.d4.s1(JAX)
> > at com.evermind.server.http.eg.s9(JAX)
> > at com.evermind.server.http.eg.dr(JAX)
> > at com.evermind.util.f.run(JAX)
> > Exception while trying to transform document. MESSAGE = Error writing to
> > server
> >