I've a problem with my simple windows store app.

I'm connecting to SharePoint and query his REST services to get the information I need. Actually I'd like to create a sort of "SharePoint Browser" so that a user can navigate the List structure of SharePoint browsing with the APP.

Actually I get the security token from SharePoint and use it in all the calls without any problem.

My call is something like:

var bldr = new UriBuilder(_uri.ToString());
bldr.Path += _listDataSvc + (String.IsNullOrEmpty(path) ? String.Empty : "/" + path);  
var request = HttpWebRequest.CreateHttp(bldr.Uri);
request.Method = "GET";
request.CookieContainer = _cookieContainer;
var response = await request.GetResponseAsync();

This gives me back what I need.. But only once! If I get this data, show them to the user and the user performs an action that calls again the same procedure, the system stucks in the GetResponseAsync() and throws no exception or other.

The system works in the same way even if I use the same Cookie and URL...

What could be the problem? I try to find out with fiddler but everything is in HTTPS, so I can see the app is sending the request again but receives no answer at all.

有帮助吗?

解决方案

I find out where the problem was:

somewhere in the code I was using instructions like:

var x = request.GetResponseAsync().Result;

instead of:

var response = await request.GetResponseAsync();

Having a lot of calls, the system reaches a sort of deadlock status because every other WebService call was waiting for the previous one.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top