Using jmdns 3.4.1, I'm able to see the services advertised by the machines in the LAN, I can also cerate a service and register it, so that I can see it in my machine. However, when I create a new service in another machine of the LAN, I cannot see it in my machine.. I'm using the following code in the other machine:

service = ServiceInfo.create("_workstation._tcp.local.", "service1" ,80, "foobar"); 
jmdns = JmDNS.create();
jmdns.registerService(service); 

Any idea please?

link|improve this question

0% accept rate
feedback

1 Answer

that should be the problem of adress. when you create an object jmdns, it's better to add the inetaddress. like: InetAddress Address = InetAddress.getLocalHost(); final JmDNS jmdns = JmDNS.create(Address);

link|improve this answer
yes you are totally right.. I've already olved this problem by adding the ip address.. thanks a lot anyway – mimou Oct 12 '11 at 8:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.