<div dir="ltr">Is this something JGroups/Clustering could use?  I&#39;ve found that using 0.0.0.0 makes JGroups complain, because it has no idea which interface to actually use for multicast.<div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Sep 1, 2015 at 2:25 PM, Filippe spolti <span dir="ltr">&lt;<a href="mailto:filippespolti@gmail.com" target="_blank">filippespolti@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
  
    
  
  <div text="#000000" bgcolor="#FFFFFF">
    Hello Arun,<br>
    <br>
    I usethis code w/ Jboss 7 and wildfly 8, i didn&#39;t test with wildfly
    9/10.<br>
    <br>
    
            MBeanServer mBeanServer =
    ManagementFactory.getPlatformMBeanServer();<br>
            String url = null;<br>
            try {<br>
    <br>
                ObjectName http = new
ObjectName(&quot;jboss.as:socket-binding-group=standard-sockets,socket-binding=http&quot;);<br>
                String jbossHttpAddress = (String)
    mBeanServer.getAttribute(http,&quot;boundAddress&quot;);<br>
                int jbossHttpPort = (Integer)
    mBeanServer.getAttribute(http,&quot;boundPort&quot;);<br>
                url = jbossHttpAddress + &quot;:&quot; + jbossHttpPort;<br>
                log.fine(&quot;Url obtained from the system: &quot; + url);<br>
            } catch (Exception e) {<br>
                log.severe(e.getStackTrace().toString());<br>
            }<br>
            return url;<br>
    <br>
    regards.<span class=""><br>
    <br>
    <br>
    <div>On 09/01/2015 02:20 PM, Arun Gupta
      wrote:<br>
    </div>
    <blockquote type="cite">
      <pre>Assuming WildFly is bound to all available IP addresses using -b
0.0.0.0, is there a WildFly-specific API that can be used to obtain
the IP address where the server is running?

Ideally, I&#39;d like something like:

WildFly.getHostAddress()
WildFly.getHostPort()

It could be running in a Docker container, in AWS, on my local laptop,
in OpenShift, or any where else and would like the IP address to be
returned correctly.

Suggestions?

Arun

</pre>
    </blockquote>
    <br>
  </span></div>

<br>_______________________________________________<br>
wildfly-dev mailing list<br>
<a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br></blockquote></div><br></div>