Zero configuration networking (zeroconf) is a set of techniques that automatically creates a usable Internet Protocol (IP) network without manual operator intervention or special configuration servers.
-1
votes
0answers
20 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
15 views
Using Zeroconf Protocol on port 8080
I am writing an embedded C program that uses zeroconf to advertize a web server. Because of some unique requirements for the program I have had to write the zeroconf protocol from scratch. ...
1
vote
0answers
68 views
DNS-SD on Windows using MFC
I have an application built using MFC that I need to add Bonjour/Zeroconf service discovery to. I've had a bit of trouble figuring out how best to do it, but I've settled on using the DLL stub ...
1
vote
1answer
101 views
multi-threaded avahi resolving causes segfault
I'm attempting to port my zeronconf-enabled C/C++ app to Linux, however I'm getting D-BUS related segfaults. I'm not sure if this is a bug in Avahi, my misuse of Avahi, or a bug in my code.
I am ...
0
votes
1answer
248 views
Need Samples for Mono Zeroconf
I'm trying to make a simple concept demonstration app the code of which I may use in the future. Specifically I want to have an iPhone running an app that sends XML data to a Bonjour service. I ...
0
votes
1answer
73 views
mdnsresponder does not show the IPaddress while browsing
I have registered a service using bonjor mdnsresponder
dns-sd -R SMARTCAM _CAMS._tcp. . 80 "u=test" "path=/pub"
When I tried to reslove by name and type as below
dns-sd -L SMARTCAM _CAMS._tcp.
...
0
votes
0answers
51 views
mdnsresponder daemon with services instance while staring daemon
I have registered a service using dns-sd (apple bonjour ) as below
$dns-sd -R SMARTCAM _smartplace._tcp.,_wcam local 80 "u=test"
Now How to register this service when daemon is started , i.e ...
2
votes
2answers
358 views
Problems compiling avahi into Android NDK project
Over the last few days I've been having a difficult time trying to build avahi into a static or shared library for use with an existing Android NDK project.
We have a few games in the App and Play ...
0
votes
0answers
154 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 ...
3
votes
0answers
550 views
Android NSD not discovering all services
I'm trying to run an application using Android Native Service Discovery but sometimes when I run the application, it doesn't discover all services from my network. I'm running the code from ...
0
votes
1answer
188 views
Howto make a device or pc upnp compatible
How can a pc identify a device or another pc by upnp (or similar protocol)?
I want a c# program on a windows machine that can discover upnp devices in a network or a direct connection? (This should ...
0
votes
0answers
29 views
on-the-wire packet zeroconfig
I am trying use the zeroconfig for service discovery , while going through the book Zero Configuration Networking: The Definitive Guide , I came across with naming called on-the-wire packet format the ...
1
vote
2answers
413 views
What API can be used to send DHCP Discovery, Request, and Acknowledgement?
I have been searching for quite a while and cannot seem to find a working DHCP Client implementation example in C#. I am brand spankin' new to Network Programming, but am doing some research that ...
1
vote
0answers
153 views
Zero Configuration Network for Android App and PHP Server
How to make my android app to get my php server's IP address?
Example, android app sending broadcast message. Then my server listen that message and send the server's ip address to the android app.
...
0
votes
1answer
162 views
Mono.ZeroConf Windows
Hello i started off with a tutorial from Mono ZeroConf
When my code reahes the line
ServiceBrowser browser = new ServiceBrowser ();
i get a SystemException
System.Exception: No Zeroconf ...
2
votes
1answer
264 views
LLMNR on Windows vs. Zeroconf vs. Bonjour
Link-Local Multicast Name Resolution (LLMNR) is a Microsoft tech for service discovery based on multicast DNS. Is it compatible with Bonjour/Zeroconf? If so, where's the API? The service discovery, I ...
1
vote
2answers
264 views
Android - Open Protocol (Bonjour) like on iOS
in the iOS world data can be exchanged between applications through the use of Open Protocol. For example if I have an e-mail with a pdf attachment I can open it into PDFExpert, even if the apps runs ...
1
vote
1answer
302 views
Multicast Problems with Java and Zeroconf (avahi) on Linux
I am trying to develop a Java-based solution for VM's that start without knowing what static IP address they should self-select from a list. My idea for the solution was:
Use Zeroconf/avahi to ...
1
vote
1answer
437 views
Can I turn off the WinCE DHCP server so it always uses zeroconfig?
We have a legacy WinCE device that's been working fine for years when it was on a closed ethernet network. But now we're trying to get it to work nicely with other devices and it's failing when ...
4
votes
1answer
356 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 / ...
1
vote
1answer
92 views
OSX port of Mono.Zeroconf
I was trying to get MZClient to run on OSX 10.7.3 and can't get past the ProviderFactory module not finding any acceptable entries in the /bin directory. I've experimented with trying to hard code ...
2
votes
1answer
950 views
How can I find the IP address of a host using mdns?
My target is to discover the IP address of a Linux computer "server" in the local network from a Windows computer. From another Linux computer "client" I can do:
ping -c1 server.local
and get a ...
0
votes
1answer
403 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 {
...
1
vote
1answer
50 views
what's the best way to find a mac by name from windows?
I'm used to bonjour from mac. I'm hoping there is an easy way for windows machines (v. 7) to find my mac using a resolvable name.
This needs to be done by a browser.
I'd like as little setup as ...
0
votes
1answer
125 views
Resolving Bonjour Discovery Dependencies
I have developed the a library to discover Device Using Bonjour Discovery Api.
I have installed bonjour sdk in my system so the Unit Test for it is working fine in my machine.
But When we run on ...
2
votes
1answer
580 views
Phonegap Bonjour/Zeroconf or Websocket IP Discovery from HTML5
I am trying to implement a Phonegap (HTML5) application which connects to a Websocket server (running in an embedded device, also has Bonjour service) to exchange data within home network.
I would ...
0
votes
1answer
336 views
XCode vs Java: how to send and receive files
For my master's thesis I want to write an application that can send files (images, pdfs, notes,...) from an iOS device to a java-application running on a tabletop and vice versa.
I already ...
3
votes
3answers
196 views
How to Know when device is removed from network Using Bonjour C library
I am using DNSServiceDiscovery C Library Bonjour to detect Camera and Printer.I am Using Windows 7 and Visual 2010.
...
13
votes
3answers
898 views
Can Android support Zeroconf/Bonjour over Bluetooth? How about TCP/IP?
On iPhone if I create custom service for example "_test._tcp.local." in Bonjour I can seek/broadcast this service through WiFi or/and Bluetooth.
It is possible on Android ?
I know that there is ...
0
votes
1answer
739 views
PnP-X and automatic installation of network storage to Windows 7
I tested successfully with Linux by using Avahi(Bonjour) and Netatalk(AFP) to provide network storage to Mac OS X seamlessly (as like Time Capsule).
I want to make one another question for Windows 7. ...
0
votes
1answer
156 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 ...
0
votes
1answer
163 views
How nodes comunicates in a ZeroConf VPN?
I wanted to create a Zero Configuration P2P VPN software like hamachi or tunngle. I went through a lot of websites and books and papers but It created more confusions in me. So here I am. :)
First of ...
1
vote
1answer
657 views
Universal local network name resolution method without DNS?
I'm writing TCP/IP code for a DHCP enabled network device. Is there a universal way this device can announce its hostname in-the-wild that pretty much all web browsers (on osx/linux/win) can access ...
0
votes
1answer
265 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
385 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 ...
5
votes
1answer
560 views
Avahi dns_sd compatibility layer fails to run Browse callback
Background
I'm working on a cross-platform Zeroconf/Bonjour/DNS-SD library for Haskell, and figured my best bet would bet would be to target the dns_sd.h API. Under Linux, the implementation of this ...
0
votes
1answer
216 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
1answer
588 views
Bonjour services sniffer code
Is there a library or open sourced Obj C code that will let me sniff for all advertised Bonjour services on a network? Best if it works on Mac OS X or iOS.
Thx all.
0
votes
2answers
593 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
2answers
319 views
Multiple sockets required for Zeroconf/bonjour implementation?
Is more than one socket required to implement Zeroconf/bonjour? I'm implementing bonjour on firmware and my chip only supports one socket.
Seems to me at least two would be necessary:
- One socket ...
0
votes
0answers
444 views
Timeout when resolving zeroconf service registered on Android device
I'm having a problem resolving a zeroconf service started on my Android device (Captivate, Android 2.2). Using avahi-discover on Ubuntu I can see the registered service just fine, but trying to ...
0
votes
5answers
1k views
Find unique name of device?
I'm developing an app that uses zeroconf (bonjour) to discover devices - so I need to give each android device some kind of name (not just a bunch of numbers and letters, but something meaningful like ...
4
votes
2answers
1k views
Differences between Bonjour/Avahi/People-Nearby protocols
I recently discovered, through Ubuntu's empathy im client, that exists a protocol that enables the user to talk with anyone on his actual local network. It seems empathy calls this service "People ...
2
votes
0answers
94 views
Getting “Capability matching failed at NIC.” error while trying to set a custom profile - NativeWiFi + WinXP SP3
I am trying to create an ZeroConfig client to connect my Atheros WiFi device to an AP (for learning purpose). I am using NativeWiFi (WinXP SP3) to query my device & set a profile against the ...
2
votes
1answer
572 views
Can't connect from Android to bonjour service, hosted on iMac
My goal is to find all bonjour services in WIFI network, find their ip/port, and communicate through HTTP.
Bonjour service, hosted on iMac is discovered incorrectly - service name is found, but port ...
0
votes
1answer
830 views
Unregistering a zeroconf service using jmDNS
I'm tryng to make my Android app register a service via zeroconf while the app is active, and then unregister it after the app exits. In my onResume method I have the following code:
// register ...
2
votes
0answers
1k views
Bonjour/Zeroconf in .NET on Win7 x64
did anyone ever try to publish a netservice via Bonjour on a x64 system? I tried several libraries like Mono.Zeroconf, Deusty (there's some x64-discussion in the comments) and Zeroconf.Codeplex. ...
0
votes
0answers
597 views
Why can't I find bonjour from different computers on the same network?
I would like to broadcast a service using zeroconf/bonjour on a WLAN.
After running mdns -B _http._tcp on the local machine
Browsing for _http._tcp
Talking to DNS SD Daemon at Mach port 5123
...
2
votes
1answer
399 views
avahi: broadcast that my service has updated information
I have an avahi (zeroconf, dnssd, bonjour) service. I want the service to be able to notify the clients when it has new data so the clients can then connect and query for the updated information.
...
0
votes
1answer
389 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 ...

