0 Replies Latest reply on Nov 20, 2014 9:47 AM by philsc

    Wildfly - Handling of HTTP/1.0 requests

    philsc

      I have an issue with a wildfly-8.1.0.Final install handling HTTP/1.0 requests.

       

      This is an replacement of an earlier JBoss deployment and there is a difference in the handling of HTTP/1.0 requests.

       

      JBoss would reply to an HTTP/1.0 request with an HTTP/1.1 response, as documented here:

      https://docs.jboss.org/jbossweb/7.0.x/config/http.html ("HTTP/1.1 and HTTP/1.0 Support").

       

      e.g.,

      ->

      GET / HTTP/1.0

      ...

      <-

      HTTP/1.1 200 OK

      ...

       

      The wildfly server replies to an HTTP/1.0 request with a HTTP/1.0 response,

      e.g.

      ->

      GET / HTTP/1.0

      ...

      <-

      HTTP/1.0 200 OK

      ...

       

       

      Is there a way to duplicate the behaviour of the JBoss server here in Wildfly?