I tried to deploy my ear application successfully. No errors during the startup with standalone sever.
But I can not access with http://my-server-name:8080/myapp
I tried to configure the following in standalone.xml, changing IP to 0.0.0.0. Now I can remote access admin console and http://my-server-name:8080, but still can not access http://my-server-name:8080/myapp
what did I miss? more configuration in standalone.xml?
<interfaces>
<interface name="management">
<inet-address value="${jboss.bind.address.management:0.0.0.0}"/>
</interface>
<interface name="public">
<inet-address value="${jboss.bind.address:0.0.0.0}"/>
</interface>
<!-- TODO - only show this if the jacorb subsystem is added -->
<interface name="unsecure">
<!--
~ Used for IIOP sockets in the standard configuration.
~ To secure JacORB you need to setup SSL
-->
<inet-address value="${jboss.bind.address.unsecure:0.0.0.0}"/>
</interface>
</interfaces>
Thanks