Can someone please debug this Windows Azure Application?
- by Vimvq1987
Here's the myTODO project from codeplex:
myTODO project
I added any necessary libraries, added storage, changed obsolete types/methods, but everything went wrong when I debug it. An exception was thrown here (in TableStorage.cs):
public IEnumerable<TElement> ExecuteWithRetries(RetryPolicy retry)
{
IEnumerable<TElement> ret = null;
if (retry == null)
{
throw new ArgumentNullException("retry");
}
retry(() =>
{
try
{
ret = _query.Execute();
}
catch (InvalidOperationException e)
{
if (TableStorageHelpers.CanBeRetried(e))
{
throw new TableRetryWrapperException(e);
}
throw;
}
});
return ret;
}
I'm using Visual Studio 2008, SQL server 2008, Windows Azure SDK v1.1.
Can anyone please debug this project for me, or suggest me someway to get it working.
This request is urgent. Any helps are much appreciated.
PS: If you can't download these file, please let me know, I'll upload to another hosts.