Releases the username and password provided while initializing app settings class.
SMPAppSettings* appSettings = [SMPAppSettings initializeWithConnection:clientConn userName:"username" password:@"password"];
NSError* error = nil;
[appSettings releaseStoredCredentialsWithError:&error];
if (!error)
{
// Further processing
}