JmDNS is a Java implementation of multi-cast DNS and can be used for service registration and discovery in local area networks. JmDNS is fully compatible with Apple's Bonjour.

learn more… | top users | synonyms

1
vote
0answers
67 views

Android hostname not recognised when creating TCP socket

Hi all I have been struggling with this for a while now and cannot find a solution. In java this code works: InetAddress serverAddr = InetAddress.getByName("myservice.local"); Socket socket = new ...
-1
votes
0answers
29 views

I need to know about jmdns [closed]

I need to develop java based application for identify smart devices(like wifi enabled phones) via Wifi and then need to send message like "Hello". So I decided to choose jmdns. But unfortunately I ...
0
votes
0answers
55 views

JmDNS to detect network devices in Android

I am using JmDNS API to detect all the devices connected on the network. I am able to detect devices and list them out. But there is a small problem. My app is displaying machines which are running ...
0
votes
0answers
64 views

JmDNS over IPv6

in my Java project I'm trying to use JmDNS to discover a device that is broadcasting an HTTP service. The problem is that it's only broadcasting an IPv4 address it seems, but my computer is on an IPv6 ...
10
votes
1answer
1k views

Implementing android as a server (receiver) in airplay

I want to create the airplay in android in which my android device will work as a airplay server(receiver)and iPhone device will work as a receiver . I have used jmdns in my application which is open ...
0
votes
1answer
89 views

Android networking in WAN

So i'm creating services with jmdns and i can access them from local area network from aadress 192.168.0.101:9999/servicename (note that 192.168.0.101 is my android phone localIP). Now if i want to ...
0
votes
0answers
49 views

Android /w jmdns, dyn dns tsig hardcode

I am using jmdns in my android project and apparently to use dns update i have to use tsig. Is there any way to hardcode tsig key when setting up jmdns to advertise my services in my dns zone in dyn ...
0
votes
1answer
243 views

How to resolve a Bonjour domain name with JmDNS

As part of an app I'm developing, I need to be able to resolve the correct IP that corresponds with a Bonjour hostname. For example, I'm given jack.local and need to resolve it to 192.168.1.141 which ...
3
votes
2answers
616 views

JmDNS: Can't resolve service

I'm trying to implement JmDNS discovery for communication between an Android app and a desktop application. I have followed the following tutorial: http://home.heeere.com/tech-androidjmdns.html The ...
2
votes
1answer
229 views

jmdns registers on IPv4 interface, but broadcasts IPv6

So I am trying to use jmdns on Android 3.2.1 (HTC Flyer) and I am using jmdns for service discovery. Everything works nicely except that one of my three devices (rest of them work fine) is ...
0
votes
0answers
50 views

other domain in mdnsresponder bonjour

I tried registering the bonjour mdnsresponder on local domain , it create the PTR record _type._tcp.local, but due some requirement I have to register the on some different domain called site . If I ...
1
vote
2answers
589 views

JmDNS doesn't work properly on android 4.1

JmDNS I am implementing JmDNS as follows here. When running the code on my android 2.3.5 htc Evo I am able to discover my linux computer. However, when i run the same code on my samsung galaxy s3 ...
0
votes
1answer
147 views

in-addr.arpa. responses not triggering callbacks in ServiceListener

I am trying to setup some ServiceListeners, in particular two: zeroConf.addServiceListener("100.1.168.192.in-addr.arpa.", myListener); zeroConf.addServiceListener("_workstation._tcp.local.", ...
0
votes
0answers
140 views

jmdns is not compatible with android bonjour for subtypes

I registered some service with subttypes on my linux pc using apple bonjour mdnsresponder . $dns-sd Jon _myNet._tcp.,_netone . 9000 and I tried to browse that on my android phone using ...
0
votes
0answers
166 views

discover services using subtypes in jmdns

I have registered my service with subtype using mdnsreponder(applebonjour) on my linux pc . And I am trying to browse the service using jmdns (here I have jmdns.jar file) on my Galaxy phone . I ...
0
votes
0answers
97 views

jmdns to browse subtypes registered by bonjour mdnsresponder

I am registering a service with mdnsresponder (bonjour ) as below on my linux pc $ dns-sd -R "Name" _smartprint._tcp.,**laseronly** local 80 "path=/nwa/ssn" And I am using the jmdns jar ...
1
vote
1answer
283 views

avahi not able to find service creted by JmDNS

I am creating JmDNS service from other machine running windows-xp by JmDNS dns = JmDNS.create("localhost"); dns.regesterService("_sreviceTest._tcp.local.", "Test-Service", 8765, "Description"); ...
2
votes
1answer
80 views

detect resolution information (txtrecord) changes by JmDNS

JmDNS support service listener which include method for added services serviceAdded (detect new services) and include a method for removed sevices serviceRemoved (detect removed services). my ...
1
vote
2answers
72 views

unable to get txtrecords from ServiceEvent in the function serviceAdded (From JmDNS)

I 'm unable to get txtrecord from ServiceEvent in the function serviceAdded (From JmDNS). but I m able to get txtrecord from ServiceEvent in the function serviceResolved The serviceResolved is ...
1
vote
1answer
205 views

is JmDNS.create() is blocking or non blocking

i have created JmDNS example: public class Service { public static void main(String[] args) { try { JmDNS mdnsServer = null; mdnsServer = JmDNS.create("localhost"); // ...
1
vote
1answer
82 views

JmDns.create Doesn not bind to InetAddess

I am running Ubuntu. Trying to create JmDNS service But JmDNS.create() Does not bind to ip address.
2
votes
4answers
1k views

apple bonjour for android

I m looking for an apple bonjour for android. Are there a recommanded jar for this? I googled for an apple bonjour application and I found the Jmdns application ...
0
votes
1answer
345 views

How exactly does mDNS resolve addresses?

Once a service is discovered through DNS-SD, how exactly does the address of that host get resolved, and does it take significantly more time/overhead? Also, if I am using JmDNS or Bonjour there are ...
1
vote
2answers
796 views

Android build with jmDNS fails

I've added jmDNS 3.4.1 to my Android project. Copied the JAR under lib, then under "Java BuildPath"/Libraries added a reference. Now my build fails with the following message in Console: [2012-07-27 ...
0
votes
0answers
132 views

Is it possible to simulate Google TV's mDNS response?

I am developing an app that discovers and pairs with multiple Google TVs. I only have one Google TV device and I need to test discovering and pairing with more than one. I tried to use jmDNS's ...
4
votes
1answer
366 views

Finding devices on network with Bonjour / Zeroconf / jmDNS on PlayBook / Blackberry

I would like to develop an Android app which would run on Blackberry PlayBook. App would need to find other devices on the local network running the same app. I was thinking to implement Bonjour / ...
2
votes
1answer
649 views

JMdns ServiceListner doesn't find all services,

Hi I created sample jmdns serviceListner, When i run it , It should continue to list services as it finds, But with this my program, It list few services when run and after that it does not list any ...
0
votes
1answer
1k views

Service discovery using JmDNS in Eclipse : Wifistatemachine errors

My code worked but it does not work suddenly. The code is as follows. public class AndroidDnssdDiscoveryTestActivity extends Activity { /** Called when the activity is first created. */ ...
1
vote
1answer
669 views

Android AVD unable to notice JmDNS services

I've had some difficulty getting JmDNS to work with my Android AVD. I've created 3 applications. An Android application which registers a ServiceListener and logs any activity, A Java application ...
1
vote
1answer
395 views

Google Anymote Discovery Identification String

According to the Google Anymote Protocol documentation, a GoogleTV device can be discovered by sending mDNS packets. A GoogleTV device should respond by identifying itself with the string ...
0
votes
1answer
412 views

Automatically Refresh JmDNS Services in Activity

I'm trying to automatically refresh JmDNS services in the background. Nothing is happening when I try: @Override public void onDestroy() { try { ...
5
votes
2answers
531 views

Performing long running operation in onDestroy

I have a "long-running" cleanup operation that I need to perform in onDestroy() of my Activity. What is the best way to do this? If I use a Thread to do this, my onDestroy() will return immediately; ...
1
vote
1answer
3k views

Samples with JmDNS

I've been able to get the samples that come with JmDNS to compile and run, however I can't get any of the classes to discover my services. I'm running a Windows environment with multiple PC's running ...
1
vote
1answer
2k views

Unable to Destroy Android Activity

I'm getting and error that states the app is unable to destroy the activity private JMDNSService jmdnsService = null; @Override public void onDestroy() { super.onDestroy(); jmdnsService ...
1
vote
1answer
1k views

List JmDNS Services in Android App

I'm trying to list some JmDNS services that I discover in my Android app and whenever I call this method my app crashes in the emulator? I tried commenting out blocks of code and code inside methods ...
3
votes
1answer
4k views

JmDNS service discovery in client-server

I'm trying to enable service discovery in my client-server application using JmDNS. I fully understand service registry on the server side, with code that resembles this: JmDNS jmdns = ...
1
vote
1answer
574 views

JmDNS Error - The method getInetAddresses() is undefined for the type ServiceInfo

For some reason it doesn't like the getInetAddresses() method in the lines: Enumeration additions = (Enumeration) ev.getInfo().getInetAddresses(); if (ev.getInfo().getInetAddresses() != null ...
3
votes
3answers
1k views

Android Exception: 'java.lang.NoClassDefFoundError: javax.jmdns.JmDNS'

Hopefully my issue isn't too silly but I'm having the following problem... I'm importing a jar which contains the library JmDNS into my project. My project sets up to handle JmDNS like this... ...
0
votes
1answer
536 views

Multicast packet not reaching phone from ethernet

I am unable to send a udp multicast/broadcast packet, from a laptop 'wired' to a wifi router, to an android phone connected to the same router wirelessly. It works the other way round(phone to ...
0
votes
1answer
161 views

jmdns constants

I have been using JmDNSfor a while now. I could use it for the purposes of my application. Every thing works fine for me (I have "announcer" machines and a "listening" one, and this latter machine can ...
2
votes
1answer
305 views

How to find Bonjour in local wifi in Android

I have a problem that I want to get an Ip of remote computer via Bonjour which is preinstalled . But I unable to connect with that, I don't know why because I have download an example code from Git ...
0
votes
1answer
246 views

JMDNS is not working with 4G connection?

I'm trying to discover some mobile devices using jmdns. As long as i have wifi or 3G connection, the devices are discoverable. Ever since, i used 4G connection, it said that no devices are detected. ...
0
votes
0answers
181 views

Device discovery in an Extended BSS

I'm making an android app for chat and file sharing over wifi. I'm able to generate a multicast address(and receive the packet) for the same access point but my device(Desire HD) does not receive UDP ...
1
vote
0answers
263 views

JmDNS 3.4.1, does it support IPv6?

The title says all, please answer me, does JmDNS 3.4.1support IPv6? when I register a service with an IPv4 I can see it on other machines, but if I use an interface with an IPv6 address, I don't :( ...
0
votes
1answer
274 views

how to see properties of a JmDNS service in reciever side?

One way of creating JmDNS services is : ServiceInfo.create(type, name, port, weight, priority, props); where props is a Map which describes some propeties of the service. Does anybody have an ...
0
votes
1answer
396 views

Not able to find JmDNS service in other machines

Using jmdns 3.4.1, I'm able to see the services advertised by the machines in the LAN, I can also create a service and register it, so that I can see it in my machine. However, when I create a new ...
1
vote
1answer
325 views

JmDNS, JmmDNS? what is the difference? what to use in my bundle?

I'm a newbie here. While having a look on the JmDNS library (3.4.1), I couldn't clearly get the difference between JmDNS and JmmDNS instances. I used an instance of JmmDNS to discover services and it ...
0
votes
1answer
181 views

Problem investigating JmDNS3.4.1 jar

I'm newbie here. I'm dealing with my first program using osgi bundles and JmDNS. After adding JmDNS 3.4.1 jar to my project, I'm testing the following basic code: My Activator: package ...
0
votes
1answer
219 views

Neighbor Discovery?

Hello, In order to get a list of the surrounding nodes announcing services in an IP network, I was trying to ...
0
votes
2answers
606 views

Locate services using Zeroconf with JmDNS on local device AP(hotspot)

With my android device set up as a hotspot/Access point(AP), how can I use JmDNS(3.4.0) to find other devices connected to this AP? Using a regular AP everything works fine when creating the JmDNS ...

1 2