I tried the code of the tutorial page (Final Source Code) but there is a small mistake:
// We will retry up to 3 times.
while (statusCode == -1 && attempt < 3; attempt++) {...}
Should be something like this:
while (statusCode == -1 && attempt < 3) {
attempt += 1;
...
}...or should I post a bug?
-- Thorsten Scherler
Tfno: 955 062 627 Email: [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
