1 Reply Latest reply on Aug 16, 2006 10:48 AM by peterj

    how to configure jboss to communicate in http/1.0

    symbol3x

      My client send request in http/1.0, but the jboss always response in http/1.1, so how can I configure the jboss to use http/1.0. Please help.

        • 1. Re: how to configure jboss to communicate in http/1.0
          peterj

          Edit the ./server/xxx/deploy/jbossweb-tomcat55.sar/server.xml file and add the attribute protocol="HTTP/1.0" to the [Connector port="8080"] entry. It should then look like:

          <Connector port="8080" address="${jboss.bind.address}"
           protocol="HTTP/1.0"
           maxThreads="250" strategy="ms" maxHttpHeaderSize="8192"
           emptySessionPath="true"
           enableLookups="false" redirectPort="8443" acceptCount="100"
           connectionTimeout="20000" disableUploadTimeout="true"/>




          You did not say which version of JBoss you were using, so the above text assumes 4.0.4 GA.