I have a Mac software client that sets up a Mac for a new internet connection via a DSL modem. Some devices have a WiFi access point and so the software sets up the user's Mac so it can connect to it wirelessly as well.

This all works fine on Mac OS X 10.4.x to 10.6.x (the latter via CoreWLAN framework now). Once.

The problem is that the AirPort software will not save the connection e.g. no Keychain AirPort password entry is created.

Customers (ISPs and Telcos) want the AirPort connection to persist across disconnects/reboots, obviously.

Is there some way to accomplish the saving of an established AirPort connection? System Configuration framework, CoreWLAN?

link|improve this question
feedback

1 Answer

With the CoreWLAN API you can do with the following code:


NSArray *airportInterfaces = [CWInterface supportedInterfaces];
    if ([airportInterfaces count] <1 ){
        NSRunCriticalAlertPanel(@"Error", @"Airport card no present", @"OK", nil, nil);
    }
    //Choose the desired interface . the first one will be enought for this example 
    NSString *interface =[airportInterfaces objectAtIndex:0];

    CWInterface *airport = [CWInterface interfaceWithName:interface];
    if (!airport){
        NSRunCriticalAlertPanel(@"Error", @"Airport card no present", @"OK", nil, nil);
    }
    //We want to add a sample WPA2 Personal network
    CWWirelessProfile *newProfile = [CWWirelessProfile profile];
    [newProfile setSsid:@"SSID"];
    [newProfile setSecurityMode:[NSNumber numberWithInt:kCWSecurityModeWPA2_PSK]];
    [newProfile setPassphrase:@"verysecretpassword"];

    CWConfiguration *conf = [airport configuration];

    //We first add the profile to the remembered  profile set when necessary
    BOOL configChanged =NO;
    NSSet *rememberedNetworks = [conf rememberedNetworks]; 
    if (![ rememberedNetworks containsObject:newProfile]){
        [conf setRememberedNetworks:[rememberedNetworks setByAddingObject:newProfile]];
        configChanged =YES;
    }

    //We add to favorites network to allow the system automatically connect to it   

    NSArray *preferredNetworks = [conf preferredNetworks];
    if (![preferredNetworks containsObject:newProfile]){
        [conf setPreferredNetworks:[preferredNetworks arrayByAddingObject:newProfile]];
        configChanged =YES;
    }

    if (!configChanged ){
        return;
    }

    //Authorize
    SFAuthorization *authorization = [SFAuthorization authorization];
    BOOL authResult =[authorization obtainWithRight:"system.preferences"
                                              flags:(kAuthorizationFlagExtendRights | 
                                                     kAuthorizationFlagInteractionAllowed | 
                                                     kAuthorizationFlagPreAuthorize)
                                              error:NULL];  

    if (!authResult){

        NSRunCriticalAlertPanel(@"Error", @"Auth failed", @"OK", nil, nil);

        return ;
    }
    [airport setAuthorization:authorization];

    NSError *err =nil;;
    BOOL saved = [airport commitConfiguration:conf error:&err];
    if (!saved && err){
        [NSApp presentError:err];
        return;
    }

    if (!saved){
        NSRunCriticalAlertPanel(@"Error", @"Save error", @"OK", nil, nil);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.