2 Replies Latest reply on Jan 29, 2018 9:10 AM by ninja2112

    Aplication in Wildfly - How access through network ?

    ninja2112

      Hello...I need a clue about how can I configure my server. I want only inner access  to my aplication. I'm doing some

      tests in the following environment:

      • Eclipse EE Luna SR2 in Java 8;
      • Wildfly 8.2.1 server started by Eclipse;

      In localhost everything works fine, but when I try to access from another computer, I get the error 111: Connection refused.
      I've already created exceptions in the firewall(in and out) to 8080 port.
      My standalone.xml is configured like this:

         <interfaces>

          <interface name="management">

                  <any-address />

              </interface>

              <interface name="public">

                  <any-address />

              </interface>

              <interface name="unsecure">

                  <inet-address value="${jboss.bind.address.unsecure:0.0.0.0}"/>

              </interface>

          </interfaces>

      Why it's not working ?