1 Reply Latest reply on Feb 7, 2011 4:40 PM by hifly81

    HTTP provider on port 9998: how to bind for external access

    hifly81

      Hi,

      I created a jbr provider with http protocol and host = <myhostname> listening on port 9998; I can connect to this provider only using http://localhost:9998 but if I try to connect with http://hostname:/9998 I got a connection timeout.

      I started jboss with -b 0.0.0.0 option; do you know how to bind http ports different to 8080 to ip and hostname?

       

      Thanks,

      Giovannu

        • 1. HTTP provider on port 9998: how to bind for external access
          hifly81

          to solve my problem I removed the jbr provider on 9998 and I binded my services with a http gateway (I didn't specify any provider)

          <service category="Cat1"

             description="" name="Serv1">

             <listeners>

              <http-gateway name="Serv1_GwListener" />

             </listeners>

           

          now I can use them on the standard http 8080 port using the following http format

          http://<hostname>:8080/<esb_module_name>/<service_category>/<service_name>

           

          Anyway I will appreciate if someone could answer to my original question :-)