无法通过https连接下载程序集文件

时间:2012-02-20 08:19:25

标签: c# .net assemblies

我无法通过https连接连接到程序集文件。我的代码块使用http。

工作正常

以下是我的代码块

Assembly httpAssembly = Assembly.LoadFrom("http://VM-CV30-NIKHIL3/ConfigurationFiles  /Validations/test.dll");

Console.WriteLine("Assembly loaded over HTTP successfully");
Assembly httpsAssembly = Assembly.LoadFrom("https://VM-CV30-NIKHIL3/ConfigurationFiles/Validations/test.dll");

 Console.WriteLine("Assembly loaded over HTTPS successfully");// application is throwing an error.

我无法在IE或Firefox中建立任何连接。

似乎缺少IIS设置。

0 个答案:

没有答案