Hi,
In my EAP7.0.0.Final server instance I have the following public inet addresses configured.
...
<subsystem xmlns="urn:jboss:domain:remoting:3.0">
<endpoint max-inbound-messages="300" receive-buffer-size="16384" send-buffer-size="16384" worker="ejbWorker"/>
<connector name="remoting-connector" socket-binding="remoting" security-realm="ApplicationRealm"/>
</subsystem>
....
<interface name="public">
<inet-address value="${jboss.bind.address:xxx.xxx.xxx.xx1}"/>
<inet-address value="${jboss.bind.address:xxx.xxx.xxx.xx2}"/>
</interface>
......
<socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">
....
<socket-binding name="remoting" port="4447"/>
....
</socket-binding-group>
.....
when the instance is started only the first address on port 4447 responds. Is a second remoting endpoint supposed to be available or does it need configuring ?
Regards,
Jeremy
JDK1.8 u60.
I have found attempting to do this using standalone will never work. Instead the solution is to use domain mode with a host for each listen address.
Jeremy