Hi, guys ... I need some tips on setting up my server for access of any machine within my network. I am testing in the following development / testing environment:
Eclipse EE Luna SR2 in Java 8;
Wildfly 8.2.1 server started by Eclipse;
In localhost my application runs beauty, but when I try to access through another machine it gives the error "The System error 111: Connection refused". I have already created exceptions in the firewall (input and output) for port 8080 and nothing. 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>
What else do I need to do? Note: I only want access from within my network.