I have a VirtualBox debian VM with wildfly running. The host is a Windows 8.1. I have forwarded ports 8080 and 9990.
I have edited the standalone.xml to include:
<interfaces>
<interface name="management">
<any-address/>
</interface>
<interface name="public">
<any-address/>
</interface>
<interface name="unsecure">
<inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
</interface>
</interfaces>
As expected, I can access the webservice(s) on http://localhost:8080/webservice
from the host as well as the admin console on http://localhost:9990/
.
So far so good, but when I run the same virtual machine image on another PC using Windows 7, I can only access the webservice but not the admin console.
What could be causing this issue?