I've been playing around with exposing and resolving services a bit lately, and have run into a problem where I seem unable to resolve information from a Windows7 machine exposing a Bonjour service.

If I open a socket on an OS X machine, and then expose a Bonjour service on it via NSNetService publish

    service = [[NSNetService alloc] initWithDomain: @""
                                              type: @"_testing._tcp"
                                              name: NSFullUserName()
                                              port: chosenPort];

    NSLog(@"service: %@", service);
    [service setDelegate: self];
    [service publish];

(chosenPort is obtained from chosenPort = serverAddress.sin_port; as shown in the PictureSharing sample code from Apple)

I can then run the following code:

serviceBrowser = [[NSNetServiceBrowser alloc] init];
[serviceBrowser setDelegate: self];
[serviceBrowser searchForServicesOfType:@"_testing._tcp" inDomain:@""];

And in the netServiceBrowser:didFindService:moreComing1 delegate method, I can invoke resolveWithTimeout: to get all the information in in netServiceDidResolveAddress: This all seems fine and dandy.

Now, the problem is I'm trying to expose Bonjour services from a Win32 program I've written (VS 2010, Windows 7):

err = DNSServiceRegister(&sdr, 0, 0, NULL, "_testing._tcp", NULL, NULL, htons(chosenPort), 0, NULL, regservice_cb, NULL);
if (err)
{   
    printf("DNSServiceRegister returned error %d\n", err);
    exit(1);
}

while (1){  DNSServiceProcessResult(sdr);  }

This uses nearly the exact same socket code as the PictureSharing sample to get chosenPort. The service seems to register successfully and then on the Mac OS X client, the code above will get the call to netServiceBrowser:didFindService:moreComing, but resolveWithTimeout: will always time out with error -72007, no matter how long I instruct it to wait.

The regservice_cb callback is called pretty much immediately after the call to DNSServiceRegister, and never gets called again, even when the Mac client sees that there is a service hanging off the Win32 machine.

No matter what values I feed to DNSRegisterService, I cannot ever get the Bonjour service to resolve on the Mac Client. I've fiddled with things such as:

err = DNSServiceRegister(&sdr, 0, 0, "Mark Windows7", "_testing._tcp", "local.", "asdfasdfasd", chosenPort,0 , NULL, regservice_cb, NULL);

But can never get that resolution I seek.

Is there some step I'm missing in the Win32 DNSService code to get the resolution to correctly work?

Any pointers, suggestions, or Win32 sample code would be appreciated.

Notes:

  1. The Windows 7 machine definitely has the Bonjour Print Services installed, and on my Mac, I can verify using a program called "Bonjour Browser" that there are services coming from the Windows machine.

  2. Bonjour Browser DOES see the service "_testing._tcp" coming from the Windows machine, but when I try to expand it, it doesn't have an IP address or port number, unlike all other services I see anywhere.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.