The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
121 views

NSNetServiceBrowser cannot find any service, the delegate method does not seems to be called

I am using NSNetServiceBrowser to browse bonjour service. The service is started successfully, however, I am facing an issue while browsing the service. When I make the call ...
1
vote
0answers
91 views

BlueWoki app(wifi audio chat app) run on iphone simulator but couldn't run perfectly on device

i download BlueWoki app from GitHub for wifi audio chat from here but i have one problem with this app that , app run on iphone simulator but couldn't run perfectly on device. problem is that it ...
0
votes
1answer
355 views

NSNetServiceBrowser not finding services that exist

I have a custom Cocoa (OSX) server and client, and the server publishes a bonjour service. I have the client searching for the server using NSNetServiceBrowser, but I never get any results. I know ...
2
votes
0answers
336 views

Client not discovering bonjour service

I have just started learning to design iphone apps and I am trying to set up a client server environment. As a starter I would like to first make sure that the service I publish is visible to the ...
2
votes
2answers
229 views

NetServiceBrowser gives a different NetService when Removed

I was hoping to do something like this: In netServiceBrowser:didFindService:moreComing: [self.foundServices addObject:aNetService]; And in netServiceBrowser:didRemoveService:moreComing: ...
0
votes
1answer
186 views

Apple Bonjour: how can I tell which published service is my own?

I have two iOS devices finding each other successfully using the Bonjour API, but since they are both simultaneously publishing and browsing, they also see themselves appearing in the list of ...
4
votes
1answer
2k 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 ...
7
votes
2answers
562 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 ...
1
vote
1answer
488 views

Error resolving a NSNetService

I'm creating a board game to be played via wi-fi, in the iPhone. When device A invites device B to play(try to resolve the NSNetService published by B), device B can accept or decline. If B ...
0
votes
1answer
262 views

Bonjour/Cocoa: Is the NSNetServerBrowser still listening if 'moreServicesComing' is NO?

When an NSNetServiceBrowser instance discovers a service, it calls the following method on its delegate: - (void)netServiceBrowser:(NSNetServiceBrowser *)netServiceBrowser ...
2
votes
0answers
727 views

NSNetServiceBrowser delegate not called when searching

I got a really annoying problem. Im trying to search after a NSNetService (that i know exist). I've copied the example code from ...