Friday, February 12, 2016

Re: AbstractHttp11Processor.process Error parsing HTTP request header

Solved.  Switched the Connector setting from this

<!-- Define a HTTP/1.1 Connector on port 8443, JSSE NIO implementation --> <Connector protocol="org.apache.coyote.http11.Http11NioProtocol" port="8443" .../> to this

<!-- Define a HTTP/1.1 Connector on port 8443, JSSE NIO2 implementation --> <Connector protocol="org.apache.coyote.http11.Http11Nio2Protocol" port="8443" .../>

For whatever reason, it likes the Nio2 protocol with Java 8, but doesn't like the older Nio version.


On Friday, February 12, 2016 at 10:14:38 AM UTC-5, Robert Evans wrote:
Greetings,

Just trying to figure out why my GWT app works fine in JDK7, but with JDK8, once I get to a certain "sending" size, it appears I'm getting the following error:

12-Feb-2016 09:16:47.983 INFO [http-nio-8443-exec-10] org.apache.coyote.http11.AbstractHttp11Processor.process Error parsing HTTP request header
 Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level.

I've tried this with the latest JDK 8u73 on Solaris x64 and it still fails.  If I back down to the last JDK7 version, it works fine.

Any ideas?

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment