You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cansley opened this issue
Dec 5, 2013
· 2 comments
Labels
BugIssues where something has happened which was not expected or intendedTaskItemNon-bug, non-feature related things. Could be refactoring. Sometimes non-code related things.
Program installs and lanuches without error. On Installed Packages screen, this is what I get:
If I change to the Available packages tab, the application crashes. Error logged is:
2013-12-02 16:51:21.0127 11 [ERROR] Chocolatey.Explorer.Services.PackageVersionService.ODataPackageVersionService Message: Unable to connect to the remote server - Stacktrace: at System.Net.HttpWebRequest.GetResponse()
at Chocolatey.Explorer.Services.PackageVersionService.ODataPackageVersionService.FillWithOData(String package)
ODataAvailablePackagesService.cs - Line 98:
rssFeed.Proxy = null;
ODataPackageVersionService.cs - Line 91:
_loadingRssFeed.Proxy = null;
Removing these lines and adding the following line seems to correct the problem (and the corresponding line for _loadingRssFeed):
rssFeed.Proxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
If no proxy is required, this new code has no affect.
The text was updated successfully, but these errors were encountered:
Please accept my apologies for not replying to this issue sooner. I have been a little bit busy lately. Thanks for much for raising this. I will take a look at your suggestion, and get this included in the next version as soon as possible.
BugIssues where something has happened which was not expected or intendedTaskItemNon-bug, non-feature related things. Could be refactoring. Sometimes non-code related things.
Program installs and lanuches without error. On Installed Packages screen, this is what I get:
If I change to the Available packages tab, the application crashes. Error logged is:
2013-12-02 16:51:21.0127 11 [ERROR] Chocolatey.Explorer.Services.PackageVersionService.ODataPackageVersionService Message: Unable to connect to the remote server - Stacktrace: at System.Net.HttpWebRequest.GetResponse()
at Chocolatey.Explorer.Services.PackageVersionService.ODataPackageVersionService.FillWithOData(String package)
ODataAvailablePackagesService.cs - Line 98:
rssFeed.Proxy = null;
ODataPackageVersionService.cs - Line 91:
_loadingRssFeed.Proxy = null;
Removing these lines and adding the following line seems to correct the problem (and the corresponding line for _loadingRssFeed):
rssFeed.Proxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
If no proxy is required, this new code has no affect.
The text was updated successfully, but these errors were encountered: