The jmdns tag has no wiki summary.
6
votes
2answers
3k views
Bonjour implementation on Android
I am trying to implement bonjour/zero conf on my android app. I am using jmDns library for searching the all the available devices. Here is the code that I am using for searching the devices in the ...
2
votes
2answers
246 views
Bonjour service is published with JmDNS in Equinox but not in Apache Felix
I'm facing a strange problem. I have created an OSGi bundle for JmDNS 3.1.6 and have successfully used that in Equinox to publish a service for almost two years now. I have recently migrated to Apache ...
2
votes
1answer
371 views
Network Device Discovery
For my Android app, users need to connect to a server that will be hosted somewhere on the same LAN. There can be multiple servers hosted on the same LAN. To make it easy for the user, I was going ...
2
votes
1answer
7k views
Multicast on Android 2.2
Has anyone gotten Multicast to work on Android 2.2, specifically JmDNS for Bonjour service detection. There are many questions & answers from the Android 1.5->2.0 timeframe, including on ...
1
vote
1answer
94 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
127 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 ...
1
vote
1answer
132 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 ...
1
vote
0answers
83 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 ...
1
vote
0answers
73 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 :(
...
1
vote
0answers
74 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 ...
1
vote
1answer
896 views
How can I use JmDNS successfully on Android?
According to the topic...
I am a newcomer of Android!!!!
I have been tried to implement JmDNS successfully on Android for 2 more weeks...
(Not only on Google IDEOS phone,but also on Eclipse)...
I,ve ...
1
vote
1answer
1k views
Why would JmDNS service discovery work on a Motorola Droid running Android 2.1-update1 and not on an HTC Incredible running the same version of Android?
I have successfully gotten JmDNS working on Android 2.1 testing on a Motorola Droid by using MulticastLock, but recently got an HTC Incredible as second test device, and JmDNS discovery doesn't work ...
1
vote
0answers
224 views
Could JMS with ActiveMQ somehow be using JmDNS?
I maintain an Eclipse plugin that uses JMS (via the ActiveMQ implementation) to send and receive messages from queues maintained by a hard-coded broker on another machine.
One of my user reports that ...
0
votes
1answer
36 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 ...
0
votes
0answers
18 views
jmDNS discovery time
I'm using jmDNS (3.4.1) on an android to find certain type of devices in the network.
The discovery itself works fine (I find what I want to find) but what bothers me is that it takes some time (2 ...
0
votes
1answer
371 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 = ...
0
votes
1answer
133 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
0answers
47 views
jmdns constants
I have been using JmDNSfor a while now, I could exploit it for the purposes of my application..every thing works fine for me (I have "announcer" machines and a "listening" one, and this latter ...
0
votes
1answer
82 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
84 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 ...
0
votes
0answers
193 views
JmDNS/zeroconf on Android with DD-WRT router firmware
I'm writing an Android app that uses JmDNS to create a running service on one device, while discovering it and connecting to that service on other devices. I've been running into a problem where the ...
0
votes
0answers
53 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
105 views
problem seeing 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 cerate a service and register it, so that I can see it in my machine. However, when I create a new ...
0
votes
0answers
57 views
How to advertise machine ID with JmDNS?
What I want to do is to let the nodes in the LAN advertise their services including their IDs, so that when a node receives any announcement, it can see the ID of the sender in stead of the name of ...
0
votes
0answers
31 views
get value of a custom property when calling jmmdns.getServiceInfos(type, name)? JmDNS
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 ...
0
votes
0answers
76 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
92 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
0answers
255 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 ...
0
votes
1answer
201 views
Application going into ANR mode
When the users presses the back button in my application. Here is the scenario:
User starts the application - Activity
shows up
User presses back button
User re-starts the application. At this ...
0
votes
1answer
1k views
Implementing JmDNS on Android/Multithreading
I am trying to get JmDNS to work in my android program. I am able to get it to discover the devices I want, but I do not fully understand how to get the information from JmDNS to the object that ...
0
votes
1answer
495 views
JmDNS on Android
0
down vote HI kim/Everyone,
Have you succeeded in service discovcery using jmdns in Android.I'm facing same problem not able to discover services using jmdns in Android.
From my code using jmdns ...
0
votes
1answer
257 views
JMDNS works on simulator but not on device
I am attempting to use JMDNS to resolve a local network host's IP address. It works fine on simulator but not on phone. Anybody has any idea what the reason may be?
thanks a lot.