Hi guys,
I want to make an iPhone app which communicates with iChat on Mac OS X via Bonjour. I have already known how to create a service using NSNetService, but how can I communicate with iChat? What service type do I need?
Any help would be appreciated. Thanks in advance!
...
Hi!
I'm coding an app with core data. I need to sync the database between two iphones running the same app maybe via bonjour...
Can anyone help?
Thankyou!
...
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 search for devices both over bluetooth AND wifi.
I want to list only bluetooth devices. I know this was answered in the past as impossible, ...
Can the iPhone use Bonjour messaging?
...
I'm sure I'm just a few letters away from getting this to work, but maybe not...
On the server-side, I've got this (Java);
ServiceInfo info = ServiceInfo.create("_mjdj._tcp.local.", "foo", 1268, 0, 0, "path=index.html");
jmdns.registerService(info);
This works perfectly with my Java client or a Bonjour Browser (service shows as "_mjd...
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 curious about how I advertise a simple Bonjour service to a different subnet. Specifically, I am trying to write a network service that runs on ...
Hello
I have succesfully implemented the bonjour sdk in a visual c++ console app. but when I am trying to implement the same code in a windows forms app (visual c++) I am receiving weird errors probably related to some local heap problem with the bonjour dll.
The following assertion in the file dbgheap.c fails:
/*
* If this ASSERT f...
does anyone have a simple example on how to use the bonjour sdk with a windows visual c++ form application or a general gui application? as far as i know apple provides examples only for c sharp, java and vb
thanks a lot for any help
...
I'm using bonjour (with java) to try to get IP addresses for devices on a network. I've looked at this question: http://stackoverflow.com/questions/1243093/get-device-ip-with-bonjour and am using the InetAdress getByName method (with a resolved host) to get an IP address.
The problem is that this IP address I get doesn't match anyth...
I am wondering the possibility of directly using bonjour over bluetooth in iPhone OS 3.0 or later without using GameKit. Can anyone provide any examples ?
...
Hi, this is the first time i am creating a mac application, what i need to do is to have a simple screen. This simple plain screen will just print a string as the iphone is transmitting strings through the wifi network.
This string is simply a string value of the slider being adjusted by the user as they move it up and down.
so it will ...
What are the advantages of using Bonjour in a program (vb.net), is it even possible? Couldn't I get the same end result using just what I program?
...
Hi, what I want to do is enable a simple bonjour service on my ipod touch.
And after I publish my custom bonjour service, the delegator did not get "netServiceDidPublish:" call. I also check there is not any error message from "netService:(NSNetService *)sender didNotPublish:". Below is my code section:
// AsyncSocket class comes from ...
I'm develpoing a network app using Bonjour service on iPhone devices.
My problem is that NSStreamEventHasBytesAvailable event speed is slow when i enable WiFi and Bluetooth both on my devices.
But strangely if i enable only one either WiFi or Bluetooth, NSStreamEventHasBytesAvailable event speed is fast normally.
Is it originally slow...
I'm writing an app for a museum tour. I'd like my app to know where the user is in the building, if the user is standing in a particular room, in front of a particular work, etc.
GPS doesn't work inside. (Using WiFi positioning could work, but I know Apple doesn't use Skyhook anymore, so I don't know where I would register my base stati...