2012-04-27 4 views
1

で働いていない - 私はそうAppDomain.CreateInstanceAndUnwrapは、私は非常に単純なクラスCompiledFunction(MarshalByRefObjectを)を持っているウェブサイト

var appDomainSetup = new AppDomainSetup(); 
appDomainSetup.ApplicationBase = Path.GetDirectoryName(typeof(CompilerService).Assembly.CodeBase); 
var evidence = AppDomain.CurrentDomain.Evidence; 
SandboxDomain = AppDomain.CreateDomain("Sandbox", evidence, appDomainSetup); 

CompiledFunction<T> result = (CompiledFunction<T>)SandboxDomain.CreateInstanceAndUnwrap(
    assemblyName: typeof(CompiledFunction<T>).Assembly.GetName().Name, 
    typeName: typeof(CompiledFunction<T>).FullName); 

これは、コンソールアプリケーションで正常に動作するように、新しいドメインでこれのインスタンスを作成しようしかし、ASP .NET MVCアプリケーションでは、次のような例外があります。なぜ、これがWebアプリケーションで動作しないのか、誰にでも示唆を提供できますか?私は合格していますTパラメータを使用すると、正しく新しいドメインのWebプロジェクトのためのアセンブリまたは設定が間違っApplicationBaseをEms.Scripting(可能性が高い)をコピーしていなかったよう

System.IO.FileLoadException was caught 
    Message=The given assembly name or codebase, 'Ems.Scripting, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null', was invalid. 
    Source=mscorlib 
    FileName=Ems.Scripting, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 
    FusionLog==== Pre-bind state information === 
LOG: User = EMSLaptop\PeterMorris 
LOG: DisplayName = Ems.Scripting, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 
(Fully-specified) 
LOG: Appbase = /C:/Users/PeterMorris/Documents/Visual Studio 2010/Projects/MvcApplication26/MvcApplication26/bin 
LOG: Initial PrivatePath = NULL 
Calling assembly : (Unknown). 
=== 
LOG: This bind starts in default load context. 
LOG: Found application configuration file (C:\Program Files\Common Files\Microsoft Shared\DevServer\10.0\WebDev.WebServer40.exe.Config). 
LOG: Using application configuration file: C:\Program Files\Common Files\Microsoft Shared\DevServer\10.0\WebDev.WebServer40.exe.Config 
LOG: Using host configuration file: 
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v4.0.30319\config\machine.config. 
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind). 
LOG: Attempting download of new URL /C:/Users/PeterMorris/Documents/Visual Studio 2010/Projects/MvcApplication26/MvcApplication26/bin/Ems.Scripting.DLL. 

    StackTrace: 
     at System.Reflection.RuntimeAssembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks) 
     at System.Reflection.RuntimeAssembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks) 
     at System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection, Boolean suppressSecurityChecks) 
     at System.Reflection.RuntimeAssembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) 
     at System.Activator.CreateInstance(String assemblyName, String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, Evidence securityInfo, StackCrawlMark& stackMark) 
     at System.Activator.CreateInstance(String assemblyName, String typeName) 
     at System.AppDomain.CreateInstance(String assemblyName, String typeName) 
     at System.AppDomain.CreateInstanceAndUnwrap(String assemblyName, String typeName) 
     at System.AppDomain.CreateInstanceAndUnwrap(String assemblyName, String typeName) 
     at Ems.Scripting.CompilerService.Compile[T](String[] scripts, Dictionary`2 variableDefinitions, IEnumerable`1 referencedAssemblies, ICompiledFunction`1& function, IEnumerable`1& compilerErrors) in C:\Data\EMS\Lib\Ems.Scripting\CompilerService.cs:line 43 
    InnerException: 

答えて

2

問題は、Assembly.Codeベースがfile:/// {残りのパスここ}から始まりました。このようなパスでPath.GetDirectoryNameを使用すると、file:///が単一のスラッシュで置き換えられます。あなたは「/c:\myfolder\myfile.dll」で終わるURIがローカルパスを私に教えて取得

if (SandboxDomain == null) 
{ 
    var appDomainSetup = new AppDomainSetup(); 
    string appBase = typeof(CompilerService).Assembly.CodeBase; 

    //Added the following line 
    appBase = new Uri(appBase).LocalPath; 
    appDomainSetup.ApplicationBase = Path.GetDirectoryName(appBase); 
    var evidence = AppDomain.CurrentDomain.Evidence; 
    SandboxDomain = AppDomain.CreateDomain("Sandbox", evidence, appDomainSetup); 
} 
+1

'CodeBase'ではなく、' Location'プロパティを使用する必要があります。 –

0

が見えるSystem.Decimalのです。

Path.GetDirectoryName呼び出しは、ApplicationBaseプロパティを計算する際に不審です。

+0

解決策だったパスが正しいこと、およびDLLは、そのパスです。 –

関連する問題