Hi,

It looks like you are using the .NET client library. What version of
it are you using?

Can you surround entry.Update() with a try/catch?


try
{
  entry.Update();
}
catch (GDataRequestException e)
{
  Console.WriteLine("Error :" + e.ResponseString);
}

This might give a more meaningful error message. You may also want to
ask in the .NET client library group if this is a .NET specific issue
(which isn't clear from the error you received above):

http://groups.google.com/group/gdata-dotnet-client-library

Cheers,
-Jeff

On Jun 6, 1:40 pm, Gonzalo Flores <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I have this code that three weeks ago runs ok but now it's failed and
> I don't know why
>
>  entry.Location = new Google.GData.Extensions.Location.GeoRssWhere();
>  entry.Location.Latitude = Convert.ToDouble(txtLatitud.Text, info);
>  entry.Location.Longitude = Convert.ToDouble(txtLongitud.Text, info);
> entry.Update();
>
> I get this error
>
> {"Execution of request 
> failed:http://picasaweb.google.com/data/entry/api/user/Gon.PFC.UOC/albumid/5..."}
> System.Exception {Google.GData.Client.GDataRequestException}
>
> I'm very desperate, can you help me, please?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Data Protocol" 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-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to