Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm loading OAuth information, and when the data has finished loading, I'll click a link that takes me to Internet Explorer, then I hit back and return to my app.

When I return the CommunicationException is thrown. The message is: An error (WebException) occurred while transmitting data over the HTTP channel.

Based on what I've been able to find while searching the web for a solution, the problem is that the initial request for data is being kept alive. When I looked at the requests in Fiddler, all other image/data requests have finished and closed except for the first OAuth data request. That said, if I am correct that this is the issue, I have no idea how to stop this.

Initially I thought this was a problem with the OAuth library I was using (Hammock), as attempts to use the addHeader("Connection","close") method did not work, and nothing else I tried fixed it either. However, after shifting my whole project over from Hammock to RestSharp, the issue is still occurring.

Can anyone give me any advice here? Nothing seems to be working, and I can't seem to figure out why this is really happening?

Here's the stack trace:

       at System.ServiceModel.Channels.HttpChannelUtilities.ProcessGetResponseWebException(WebException webException, HttpWebRequest request, HttpAbortReason abortReason)
   at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelAsyncRequest.CompleteGetResponse(IAsyncResult result)
   at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelAsyncRequest.OnGetResponse(IAsyncResult result)
   at System.Net.Browser.ClientHttpWebRequest.<>c__DisplayClassa.<InvokeGetResponseCallback>b__8(Object state2)
   at System.Threading.ThreadPool.WorkItem.WaitCallback_Context(Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ThreadPool.WorkItem.doWork(Object o)
   at System.Threading.Timer.ring()

and the inner (WebException) stack trace:

       at System.Net.Browser.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state)
   at System.Net.Browser.ClientHttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
   at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelAsyncRequest.CompleteGetResponse(IAsyncResult result)
   at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelAsyncRequest.OnGetResponse(IAsyncResult result)
   at System.Net.Browser.ClientHttpWebRequest.<>c__DisplayClassa.<InvokeGetResponseCallback>b__8(Object state2)
   at System.Threading.ThreadPool.WorkItem.WaitCallback_Context(Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ThreadPool.WorkItem.doWork(Object o)
   at System.Threading.Timer.ring()

That inner exception had the Status: System.Net.WebExceptionStatus.RequestCanceled

UPDATE: It appears that this exception may be a debugger issue. If I run the application in the emulator, not connected to Visual Studio, the application continues to run fine after doing what should trigger this exception. Also, when running the debugger, if I just hit F5 after the exception is thrown, the app continues to run as well. So, is this an issue I should continue to look into? I feel like I'm breaking every rule of programming if I ignore this issue, but for the life of me, I can't find any way to fix it.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.