Hello,

the exception you see may be caused by a closeConnection called while the client is still connecting. It's not an error condition, you may avoid crashing by surrounding the openConnection call with a @try-@catch block, e.g.:


@try {
[client openConnectionWithInfo:info delegate:self];
// Connection established

} @catch (LSPushConnectionException *e) {
// Connection failed
}


Hope this helps. Don't hesitate to ask if your need more infos.
Best regards,

Gianluca