Tagged Questions

Bonjour is Apple's implementation of Zeroconf, a service discovery protocol. It can be used to find services on a network and also to publish services to be found by other Zeroconf clients.

learn more… | top users | synonyms

16
votes
3answers
6k views

How can I discover zeroconf (Bonjour) services on Android? I'm having trouble with jmDNS

I'm working with a Droid / Android 2.0.1 and encountering an issue apparently many people have: I'm unable to discover services using the one pure-Java zeroconf library I know of, jmDNS. (Apple's ...
12
votes
4answers
5k views

Are there any other Java libraries for bonjour/zeroconf apart from JMDNS?

Are there any other Java libraries for bonjour/zeroconf apart from JMDNS?
11
votes
4answers
18k views

How can an iPhone access another non-iPhone device over wireless or bluetooth?

I'm trying to figure out if an iPhone can connect to another non-iPhone device over wireless or bluetooth and have seen conflicting information. Much of what I've found was before version 3.0 of the ...
10
votes
1answer
800 views

setting up iPhone P2P only over bluetooth and without GKPeerPickerController

I want to use a custom interface to connect with other iDevices in a p2p game. I know I can either use GKSession and GKSessionDelegate or use the lower level Bonjour browsing. But both of them will ...
9
votes
2answers
450 views

any way to detect iPads or iPhones on wireless network? bonjour?

I am trying to detect Apple devices connected to a wireless network. This is relatively simple using Bonjour, however I am also trying to detect what kind of device it is. Like, a MacBook Air, a ...
8
votes
1answer
383 views

Using iOS GameKit's “Bluetooth Bonjour” with other platforms

I'm interested in connecting to iOS-based devices over Bluetooth. I can see that the "Local Network" service is exposed, but I cannot find any extra information about it. Property stored under key ...
7
votes
1answer
244 views

NSNetServiceBrowser didRemoveService takes longer after opening stream

I have the following code for discovering services on the network: [netServiceBrowser setDelegate: self]; [netServiceBrowser searchForServicesOfType: serviceType inDomain: domain]; That results in ...
7
votes
4answers
1k views

How to route all subdomains to a single host using mDNS?

I have a development webserver hosting as "myhost.local" which is found using Bonjour/mDNS. The server is running avahi-daemon. The webserver also wants to handle any subdomains of itself. Eg ...
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 ...
6
votes
1answer
2k views

CFNetwork and Bonjour integration for iPhone to Mac integration

I want to use CFNetwork and Bonjour in conjunction to be able to have communications between my iPhone app and a Mac app. The app on the iPhone would have one button. Then on the Mac app, there will ...
5
votes
2answers
383 views

How do I obtain “model name” for a networked device (potentially using Bonjour)?

Apple's Finder.app is able to consistently determine the exact model of each physical computer that uses bonjour (as evidenced by the icons being unique for each individual device type: iMac, MacPro, ...
5
votes
2answers
543 views

How do I tell if a bonjour service is wi fi or bluetooth?

I am building an app that sends information between two iPhones. The app is working great but the one problem I am having is that I have no way of telling whether bonjour is choosing wi-fi or ...
5
votes
3answers
998 views

How to send multicast messages and reuse a port in Erlang?

I have gotten a good start on my program, my first REAL Erlang program. I have it listening for messages, reading them and parsing them. I also have it sending them. The one little thing that is ...
5
votes
2answers
5k views

iPhone: Bonjour NSNetService IP address and port

Excuse my iPhone/Objective-C newbie status please! I've found my HTTP server using NSNetServiceBrowser, but now I just want the IP address and port of the service found. I've got something like the ...
5
votes
1answer
1k views

Redirecting “.local” subdomain to unicast DNS

I regularly access Windows domains that have been set up to use a domain under the .local top level name. This conflicts with Bonjour/Zeroconf which reserves .local for it's own use. A number of ...
4
votes
3answers
154 views

How do I resolve a Bonjour domain name on Android?

I need to get my app to play a video file located on my network. I know the url of the file is: http://something.local/abc.mp4 Now, when I manually substitute "something.local" with its true ip ...
4
votes
1answer
837 views

iOS Bonjour Over the Internet

I know that iOS's Bonjour implementation (NSNetworkService, NSNetworkServiceBrowser) work out of the box on local networks. The documentation says it is possible to set up a Bonjour DNS server to ...
4
votes
1answer
1k views

How to advertise a service using Bonjour across subnets?

I am familiar with the usage of Bonjour for advertising services on the "local" domain. I have worked through several examples, and I know the corresponding Cocoa classes I use for that. I am ...
4
votes
2answers
394 views

what is Bonjour?

I was watching wwdc videos this afternoon and I heard the word Bonjour . So I just want to know what is Bonjour in Apple . This is just to clear the concept . Thanks
4
votes
1answer
2k views

Using Apple’s Bonjour service from .NET?

I have an iPhone app that publishes through Bonjour. The Mac counterpart works, they sync and exchange data. Now I have to port that little Mac app to Windows. I’ve decided to go with .NET (because ...
4
votes
4answers
3k views

bonjour for iphone

I would like to know whether bonjour is a public or private api?Can we use it in our apps directly.
4
votes
1answer
1k views

Does using bonjour on the iphone enable bluetooth automatically?

I am planning to a peer to peer app using bonjour for the iphone. There will be no wifi available and hence am relying on bluetooth. I know bonjour based services works over bluetooth in the abscense ...
4
votes
2answers
762 views

Why does mDNS (Bonjour, Avahi, etc) use UDP?

It seems to me that a lot of the problems with DNS, particularly security problems, have the root cause of DNS being implemented over UDP; for example the responder doesn't have to be who he says he ...
4
votes
2answers
1k views

What are the best options for NAT port forwarding?

I'd like to make it easy for users to forward a port on their NAT to their local machine for my C++ app. I'd like to make this work on OSX & Windows. Linux would be a great bonus, but Linux ...
3
votes
1answer
76 views

How bonjour discover devices on network?

I want to write a C program that can search Bonjour enabled devices on network. Basically we have a Network IP Camera, it supports Bonjour protocol. I want to write API in C that can search these ...
3
votes
1answer
284 views

Bonjour in the Background?

I noticed that Pasteboard, a clipboard app for iOS, can run Bonjour service in the background. I've no idea how they implement that, so I searched on the Internet and then found that it plays a silent ...
3
votes
1answer
562 views

How do we detect if wifi becomes unavailable in iPhone SDK

Is there any way that we can programatically identify when the wifi of a user becomes available/unavailable? My application requires exchanging messages between two different devices. It is working ...
3
votes
1answer
507 views

Creating Bonjour services for the Finder

I am playing around a bit with Bonjour and for prototyping I use the Pybonjour library, which seemed to work like a charm for my first trials. However, when I try to create a service that is visible ...
3
votes
1answer
811 views

iPhone SDK: Bonjour & NSNetService name != published name?

In my iPhone app, I'm publishing a bonjour service and using the following delegate method: - (void)netServiceDidPublish:(NSNetService *)ns { NSLog(@"Bonjour Service Published: http://%@.%@", [ns ...
3
votes
5answers
1k views

How to Share Files Between my iPhone App and a Mac/PC

I have developed an iPhone app which stores photos in the /Documents directory of my app. I would like to add a feature which gives to the user the opportunity to transfer those pictures to his/her ...
3
votes
3answers
833 views

Simplest way to publish over Zeroconf/Bonjour?

I've got some apps I would like to make visible with zeroconf. Is there an easy scriptable way to do this? Is there anything that needs to be done by my network admin to enable this? Python or sh ...
3
votes
2answers
1k views

How to get the list of all announced bonjour services on all available domains?

It's not the problem to look in all domains, but I can't find the right way to look for any service on the network.
2
votes
1answer
73 views

How does Windows know how to resolve mDNS queries?

When you install Bonjour for Windows you can resolve any ".local" mDNS name from anywhere in the system. For example, you can "ping some_computer.local" and mDNSResponder.exe (Bonjour/mDNS Daemon) ...
2
votes
2answers
50 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. ...
2
votes
1answer
62 views

Hold connection between iOS and Mac, even if App is in Background (as VOIP?)

I need to connect an iOS Device to a computer/mac. It's necessary to take this connection alive, even if the app goes in background mode. I know that the normal life cycle of a multitasking app will ...
2
votes
2answers
156 views

iOS / Mac Bonjour service not found on network

I have an iOS app that publishes a Bonjour service. On my network, the Mac app recognizes the service and everything runs smoothly. On some networks however, the Bonjour service is not "seen" by the ...
2
votes
1answer
71 views

Improving the dll missing error message

I have a program written in QT that works just fine. However it has an indirect dependency on dnssd.dll since a dll loaded by the program uses bonjour. If bonjour is not installed on the machine ...
2
votes
1answer
300 views

NSNetServiceBrowser/Bonjour issues on iOS

I'm using Bonjour (NSNetServiceBrowser, to be precise) over WiFi in an app I'm developing for an iOS project I've been working on. However, despite noting the issues raised in the excellent response ...
2
votes
1answer
145 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 ...
2
votes
1answer
344 views

streaming images over bonjour between two iOS device

My goal is to stream images captured by AVCpatureInput from one iOS device to another via bonjour. Here is my current method: 1) Capture frame from video input - ...
2
votes
1answer
79 views

NSNetService call backs for IP change?

What is the best way to track an IP address of a netservice that may change? (switching back and forth between en0, en1 for example) After calling startMonitoring, you get call backs when the TXT ...
2
votes
3answers
145 views

Bundling Apple's Windows Bonjour installer into our msi

I've been asked to bundle Apple's Bonjour installer into our own msi installer, so that Bonjour automatically gets installed alongside our software. Anyone done this before? It doesn't seem to be ...
2
votes
1answer
351 views

How to access WiFi network shares from iOS devices

I'm wondering how I can access files on a network share from iOS devices? I know that I can discover network shares using Bonjour protocol but how can I get a list of files&folders and download ...
2
votes
2answers
514 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
211 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 ...
2
votes
3answers
191 views

How to sync an application state over multiple iphones in the same network?

I am developing an iPhone application that allows to basically click through a series of actions. These series are predefined and synced with a common configuration server. That app might be running ...
2
votes
1answer
195 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. ...
2
votes
3answers
502 views

Any API to share data between two iphones/ipod touches/ipads? (Except GameKit)

is there any framework/api to easily to find other devices and share data between them? Not gamekit please. And bonjour would be great but it is to complex to build..Mayby there's any API that uses ...
2
votes
2answers
188 views

Rails app accessible from LAN machine using IP address, but not Bonjour name?

I'm developing a web-based application for iOS devices and want to access it from my Home Screen (via an icon). I'm able to see the site from an external device by going to http://10.0.1.4:3000, ...
2
votes
1answer
428 views

iOS: NSSocketPort, where art thou?

The developer docs are full of references to NSSocketPort, which is supposedly part of the Foundation framework. However, I can't seem to find a header file for NSSocketPort in Foundation. My guess is ...

1 2 3 4 5