Hay all
I solved this issue
This is because I made change in standalone.xml to let the AS able to accept remote HTTP invoications
I did this change which produce the issue
<interface name="public">
<any-address/>
</interface>
while the correct modifications is
<interface name="public">
<inet-address value="${jboss.bind.address:127.0.0.1}"/>
</interface>
<interface name="any">
<any-ipv4-address/>
</interface>
<socket-binding-group name="standard-sockets" default-interface="any" port-offset="${jboss.socket.binding.port-offset:0}">