I have a java code which implements JmDNS in order to "detect" the nodes in the LAN that are advertising services. I can successfully detect the services, the used protocols, etc. I can also see details about the services, for instance: the name, the IPv4 (IPv6) address and the port number. What I want to do is to see also the ID of each node.
By looking in the documentation of JmDNS 3.4.1, I've noticed that the function
getPropertyString( String name )
might be useful in my case. However, I don't really know how can I use it. And also I couldn't get where do we specify the peaces of information to be displayed when
jmmdns.getServiceInfos(type, name);
is called...
Any idea please? Does anyone get this kind of problems? Thank you in advance