I get a (503) Service unavailable error everytime I try and call the
Update() function on a DocumentEntry object.  Example below:

DocumentEntry newEntry = myService.UploadDocument(localFilePath,
fName);
if (remoteFolderName.Length > 0)
{
    try
    {
        newEntry.Title.Text = "Hope this werks";
        newEntry.Update();
    }
    catch (Exception eee)
    {
        log(eee.ToString());
    }
}

The document uploads just fine, but the newEntry.Update() throws this
error:

Google.GData.Client.GDataRequestException: Execution of request
failed: http://docs.google.com/feeds/documents/private/full/spreadsheet:......
---> System.Net.WebException: The remote server returned an error:
(503) Server Unavailable.

Any ideas?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Docs Data APIs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Docs-Data-APIs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to