2 Replies Latest reply on Aug 22, 2012 7:47 AM by virendrapatidar

    Jboss7 not able to receive request on https

    virendrapatidar

      My jboss setup is configured to work on both http and https and its working fine too.

      I can open my web applciation on both https and http.. this is fine too..

       

      I have one servlet in my web application which accpet request in POST.

      If i send the HTTP post request from firefox poster, my servlet receives the request.

      But if I send the HTTPS post request from firefox poster, my servlet does not receive anything and on firefox poster I get

      "No response was received.  Either the request could not be opened or the request timed out" Error

       

       

      Anyone can give what jboss configuration I m missing?

       

      Virendra

        • 1. Re: Jboss7 not able to receive request on https
          nickarls

          Can you post the ssl connector config from standalone.xml?

          • 2. Re: Jboss7 not able to receive request on https
            virendrapatidar

            <subsystem xmlns="urn:jboss:domain:web:1.1" default-virtual-server="default-host">

                        <connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http"/>

                        <connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" secure="true">

                            <ssl password="password" certificate-key-file="/Users/Virendra/jboss/jboss-as-7.1.1.Final/newkey.pem" protocol="TLSv1" verify-client="false" certificate-file="/Users/Virendra/jboss/jboss-as-7.1.1.Final/newcert.pem"/>

                        </connector>

                        <virtual-server name="default-host" enable-welcome-root="true">

                            <alias name="127.0.0.1"/>

                        </virtual-server>

                    </subsystem>