bonjour

Secure iPhone-Desktop Connection

Background There are a lot of App Store released iPhone apps that require an IP based server on the desktop so that the iPhone can connect to the desktop as a client. For example, there are many programs that emulate a keyboard, touchpad, or Apple remote on the iPhone so that a desktop computer can be controlled over wifi. However, many...

Bonjour Discovery in Javascript? Maybe?

So its a longshot, I'll start with that. Is it/could it be possible to discover bonjour advertised HTTP services in javascript alone? Why would this be useful? Imagine a local service looking after some data (eg your current lat/long), the data is exposed via a webservice and advertised by Bonjour Zeroconf. A (remote) website might wan...

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 would be preferrable. OS-specific suggestions welcome for Linux and OS X. ...

Is there a Bonjour SDK for Windows?

Hello..I want to know how to implement bonjour on windows, so that i can set up server on windows and access files in windows(server) using bonjour service from my iphone(client). Can anyone tell me whether we have any java api for windows or any bonjour sdk for windows? Thanks in advance.. ...

windows to mac via bonjour

Hello, We have an issue with Bonjour on Windows. Our requirement is to transfer files from one machine to another with our app which uses Bonjour. While the transfer has been working just fine between Mac to Mac, it doesn't between a Mac and a Windows machine. Please note that there is no issue in the discovery of Windows Machine (which...

NSNetService delegates not being called

I'm trying to resolve a NSNetService (named "My_Mac") to an IP in a background app with this code: NSNetService *service = [[NSNetService alloc] initWithDomain:@"local." type:@"_daap._tcp" name:@"My_Mac"]; [service setDelegate:self]; [service resolveWithTimeout:5]; And in the same class, I have these delegate methods defined: - (void...

Question(s) about apps that use wifi to remotely access clients on a 802.11 router.

So there are a few apps on the app store that implement access to machines that are on a wireless network through the router. Apps such as Apple's own Remote app that lets you control the music on the computer remotely through wifi. Or another app even more amazing, WifiRemote takes that to the next level and lets you control your whole ...

Question about using Bonjour or other methods to secure a connection with a non computer device

So I have a project I am working on, and I would basically like to send a basic yes/no command from the iPhone to a wifi enabled device that is also connectedto the network on the same router. This other device is not a computer, so I am wondering if I can still use Bonjour? In order to use Bonjour, do both of the communicating devices n...

Does using bonjour on the iphone enable bluetooth automatically?

Hi, 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 of wifi. My question is, will bluetooth on the phone automatically become enabled when I launch the bonjour service or try to do dis...

cannot run java app on mac properly

Hello everybody.. I have small problem..I created a java App in windows and my .jar consist of whole app..i copied this jar file to mac and executed it from there it works fine.. Java App consists of bonjour code if i execute .jar on windows it works fine and bonjour starts advertising...But,for mac the app runs fine but doesnot adverti...

MIDI NETWORKING MAC OS X 10.6

Midi networking OS X 10.6 / Bonjour sample code? ...

iPhone SDK: phone to phone file transfer

Hello, What is the simpliest approach to copy files from iPhone to iPhone (p2p). The only way I can come up is this: Use Bonjour to discover server app (which will advertize itself via Bonjour) Use NSStream (or sockets) and then stream data from the file from peer to peer (read chunk of the file, send chunk of the file and so on un...

Does Bonjour networking work on ppc running 10.4?

Hi, I developed an application for Mac 10.5 desktop which communicates with iPhone over wifi using Bonjour service, and it is working fine on Mac 10.5 and able to do required syncing with iPhone over wifi using bonjour. But same desktop app (although I recompiled for ppc 10.4 and there were some changes in coding like @property needed...

Advertise service with Bonjour on Windows

Hi! I'm developping a remote control on iPhone for Mac OS and Windows. I use Bonjour framework and it's working well on Mac OS. I can see on my iPhone the different Mac devices which have my server. I would like to do the same thing on Windows with language C or C#. I haver wrote a piece of code it does'nt work : my iPhone does'nt see ...

Pairing 3 or more iPhone with bonjour

Hi All, I'm working in a game and one of its features is to let the user play with players near him. I know that if I show a dialog to the user for choosing between to be a server or a client it's easy to pair 2 or more devices. However, I think I can do a little better work if I don't show the dialog to the user (most of them don't kn...

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

Hello everyone. 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 PC or Mac. I don't really know how to do that. What is the best way, using Bonjour, bluetooth, or directly USB (if it is p...

Which programming languages can I use to write a Bonjour software?

Am I really restricted by programming languages? I can imagine that, to use Bonjour, I need to have special libraries which could be not available for any language. So, then I need to use those languages which have corresponding libraries. As the second option, I can imagine, that Bonjour provide an interface which can be used almost by ...

Can I use Bonjour from command line?

Is it possible to use Bonjour from command line? For example if I want to register a service I type something like that: bonjour -register service_name port. And then Bonjour allocate a free IP for my service. Or, for example, if I want to see a list of available services I type something like: bonjour -showServices. And then I get list ...

iPhone: How to Share/Move Files from App Directories to Other Devices

Hello everyone I have an app which generates some files in the app directories I need users to be able to access the files from another device/computer via file sharing over wifi, using a web browser, a ftp client or some similar method. Can the iPhone act as a http server and ftp server by itself or do I need to do some programing to...

Why it should be done in such a complicated way? Is it OOP way of thinking?

I am trying to use Bonjour from Java. I found an example of how to do it and I think I understood it. But I still do not understand why it should be done in such a complicated way. May be I miss something. So, the code I found works in the following way (the code is also given bellow). Java program tries to find a service and if the ...