Those binding params are out-of-date - they were used with subsystem jmx:1.0
(JBoss AS 7.0). In that version, correct binding values were socket-binding names (see example configuration).
JBoss AS 7.3 (so EAP 6.2 also) with subsystem jmx:1.3
uses remoting-connector
and native management interface as a port. For standalone mode no additional configuration is required, domain mode needs additional attribute for remoting-connector
in domain.xml:
<subsystem xmlns="urn:jboss:domain:jmx:1.1">
<show-model value="true"/>
<remoting-connector use-management-endpoint="false"/>
</subsystem>
Step-by-step tutorial is available on JBoss dev wiki, however, from personal experience, be prepared for several problems with connection to server running on remote host.