错误HRESULT E_FAIL已从调用COM组件返回。(WebResponse)

时间:2015-09-16 08:09:58

标签: c# http windows-phone-8

我正在开发一个Windows Phone 8.1应用程序,我正在从IP摄像机接收数据。

System.Net.HttpWebRequest req = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(uri);
req.Credentials = new System.Net.NetworkCredential("admin", "12345");
req.Method = "POST";
req.ContentType = "image/jpeg";
using (var response = await req.GetResponseAsync())
{
    ///Some Logic
}

我在回复时遇到此HRESULT E_FAIL has been returned from a call to a COM component.错误

连接没有任何问题,我为Windows应用商店应用程序测试的逻辑相同,而且运行正常。

我检查了清单中所有必需的功能。

我从以下位置删除了项目缓存:

C:\Program Files\Microsoft Visual Studio 14.0\Common7\IDE\ProjectTemplatesCache

使用devenv.exe /setup

重新构建缓存

但没有运气!!

1 个答案:

答案 0 :(得分:0)

检查你的xaml我之间有一个空格" {

fontWeight设置=" {Binding Path = SatisfactionSurveyStyles.SelectedListBoxItemFontWeight,Source = {StaticResource LocalizationFiles}}"

每当我在该页面上进行任何服务调用时,它都会崩溃整个应用程序