我无法通过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设置。