As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
NSLog(@"Kinvey Ping Success with result %@",result);
} else {
NSLog(@"Kinvey Ping Failed with result %@",result);
}
}];
Now getting:
2014-11-20 15:03:28.808 KinveySample[10202:471480] Kinvey Ping Failed with result The operation couldn’t be completed. (NSURLErrorDomain error -1005.), (null), (null)
My network connection is fine and I am able to access other parts of the Kinvey site (incl. console).
scarter
[KCSPing pingKinveyWithBlock:^(KCSPingResult *result) {
if (result.pingWasSuccessful == YES){
NSLog(@"Kinvey Ping Success with result %@",result);
} else {
NSLog(@"Kinvey Ping Failed with result %@",result);
}
}];
Now getting:
2014-11-20 15:03:28.808 KinveySample[10202:471480] Kinvey Ping Failed with result The operation couldn’t be completed. (NSURLErrorDomain error -1005.), (null), (null)
My network connection is fine and I am able to access other parts of the Kinvey site (incl. console).
Scott