<br><br><div><span class="gmail_quote">On 12/13/06, <b class="gmail_sendername">Mats Cronqvist</b> <<a href="mailto:mats.cronqvist@ericsson.com">mats.cronqvist@ericsson.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Vlad Dumitrescu wrote:<br>> The version of jinterface used in the Erlide project (<a href="http://erlide.sf.net">erlide.sf.net</a>)<br>> contains a method to query the epmd server for all the registered node<br>> names.
<br><br>   that looked very nice! now, for the java-impaired, could you quickly<br>translate it to erlang? or was it based on some erlang code?<br></blockquote></div><br>Hi, <br><br>Yes, I could :-) <br><br>It's a matter of sending the request to epmd 
<br>    Req = <<1, 110>><br>and then parsing the result<br>    <<_,_,_,_,B2/binary>> = Response,<br>    Ns = binary_to_list(B2),<br>    NameList = string:tokens(Ns, "\n")<br><br>I skipped the details of connecting to the TCP port.
<br><br>regards,<br>Vlad<br><br>