CONFIGURAR JBOSS IP PUBLICA
Ubicar el archivo standalone.xml en
D:\software\develop\jboss-eap-7.1\standalone\configuration\standalone.xml

Y modificar las interface
<subsystem xmlns="urn:jboss:domain:webservices:2.0">
                                               <wsdl-host>
                                                               ${jboss.bind.address:172.50.50.82}
                                               </wsdl-host>
                                               <endpoint-config name="Standard-Endpoint-Config" />
                                               <endpoint-config name="Recording-Endpoint-Config">
                                                               <pre-handler-chain name="recording-handlers" protocol-bindings="##SOAP11_HTTP ##SOAP11_HTTP_MTOM ##SOAP12_HTTP ##SOAP12_HTTP_MTOM">
                                                                              <handler name="RecordingHandler" class="org.jboss.ws.common.invocation.RecordingServerHandler" />
                                                               </pre-handler-chain>
                                               </endpoint-config>
                                               <client-config name="Standard-Client-Config" />
                               </subsystem>
                               <subsystem xmlns="urn:jboss:domain:weld:4.0" />
                </profile>
                <interfaces>
                               <interface name="management">
                                               <inet-address value="${jboss.bind.address.management:172.50.50.82}" />
                               </interface>
                               <interface name="public">
                                               <inet-address value="${jboss.bind.address:172.50.50.82}" />
                               </interface>
                </interfaces>