Can someone please debug this Windows Azure Application?
Posted
by Vimvq1987
on Stack Overflow
See other posts from Stack Overflow
or by Vimvq1987
Published on 2010-05-16T05:03:00Z
Indexed on
2010/05/16
5:10 UTC
Read the original article
Hit count: 295
Here's the myTODO project from codeplex:
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.
© Stack Overflow or respective owner