2012-09-16 38 views
2

我试图运行VS2012的Azure的解决方案,它包含三个项目:不能与StorageClient运行Azure项目1.7.1

  1. InSysDashboard(Web角色)
  2. InSysService(Web角色)
  3. InSysWatcher(工作者角色)

在3.被添加之前,1.和2.建立和部署就好了。 3.自行构建并部署好(但当然这并不好,因为角色不能单独部署,需要作为同一个包的一部分部署)。

该问题似乎与Azure SDK 1.7.1 Microsoft.WindowsAzure.StorageClient,我从https://github.com/WindowsAzure/azure-sdk-for-net/tree/sdk_1.7.1下载和编译。我正在使用此资源中的Microsoft.WindowsAzure.StorageClient和Microsoft.WindowsAzure.Configuration库以及VS2012 1.7 June SDK中的Microsoft.WindowsAzure.Diagnostics和Microsoft.WindowsAzure.ServiceRuntime。

包含所有三个项目的解决方案编译时没有错误。

在任何项目中没有明确提到Microsoft.WindowsAzure.StorageClient 1.7,只有1.7.1。

但是,当我尝试运行该解决方案时,工作角色(3.)无法加载。有输出窗口包含以下片段:

'WaIISHost.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll' 
'WaIISHost.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Entity.dll' 
Microsoft.WindowsAzure.ServiceRuntime Information: 200 : Role entrypoint . CALLING OnStart() 
Microsoft.WindowsAzure.ServiceRuntime Information: 203 : Role entrypoint . CALLING Run() 
Microsoft.WindowsAzure.ServiceRuntime Information: 100 : Role environment . INITIALED RETURNED. HResult=0 
'WaIISHost.exe' (Managed (v4.0.30319)): Loaded 'F:\Everything\Current_Work\Web_Apps\Azure\InSys\InSysCloud\csx\Debug\roles\InSysService\approot\bin\Microsoft.WindowsAzure.Diagnostics.dll' 
Microsoft.WindowsAzure.ServiceRuntime Information: 101 : Role environment . INITIALIZED 
'WaWorkerHost.exe' (Managed (v4.0.30319)): Loaded 'F:\Everything\Current_Work\Web_Apps\Azure\InSys\InSysCloud\csx\Debug\roles\InSysWatcher\approot\Microsoft.WindowsAzure.StorageClient.dll' 
Microsoft.WindowsAzure.ServiceRuntime Information: 202 : Role entrypoint . COMPLETED OnStart() 
The thread 'Role Initialization Thread' (0xaa4) has exited with code 0 (0x0). 
Microsoft.WindowsAzure.ServiceRuntime Information: 203 : Role entrypoint . CALLING Run() 
'WaWorkerHost.exe' (Managed (v4.0.30319)): Loaded 'F:\Everything\Current_Work\Web_Apps\Azure\InSys\InSysCloud\csx\Debug\roles\InSysWatcher\approot\InSysWatcher.dll', Symbols loaded. 
'WaWorkerHost.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll' 
Microsoft.WindowsAzure.ServiceRuntime Critical: 201 : Role entrypoint could not be created: 
System.TypeLoadException: Unable to load the role entry point due to the following exceptions: 
-- System.IO.FileLoadException: Could not load file or assembly 'Microsoft.WindowsAzure.StorageClient, Version=1.7.1.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) 
File name: 'Microsoft.WindowsAzure.StorageClient, Version=1.7.1.0, Culture=neutral, PublicKeyToken=null' 

=== Pre-bind state information === 
LOG: User = BertiesExtreme\bertie 
LOG: DisplayName = Microsoft.WindowsAzure.StorageClient, Version=1.7.1.0, Culture=neutral, PublicKeyToken=null 
(Fully-specified) 
LOG: Appbase = file:///F:/Everything/Current_Work/Web_Apps/Azure/InSys/InSysCloud/csx/Debug/roles/InSysWatcher/approot 
LOG: Initial PrivatePath = F:\Everything\Current_Work\Web_Apps\Azure\InSys\InSysCloud\csx\Debug\roles\InSysWatcher\approot 
Calling assembly : InSysWatcher, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null. 


LOG: This bind starts in default load context. 
LOG: Using application configuration file: F:\Everything\Current_Work\Web_Apps\Azure\InSys\InSysCloud\csx\Debug\roles\InSysWatcher\approot\InSysWatcher.dll.config 
LOG: Using host configuration file: 
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework64\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 file:///F:/Everything/Current_Work/Web_Apps/Azure/InSys/InSysCloud/csx/Debug/roles/InSysWatcher/approot/Microsoft.WindowsAzure.StorageClient.DLL. 
WRN: Comparing the assembly name resulted in the mismatch: PUBLIC KEY TOKEN 
ERR: Failed to complete setup of assembly (hr = 0x80131040). Probing terminated. 


-- System.IO.FileLoadException: Could not load file or assembly 'Microsoft.WindowsAzure.StorageClient, Version=1.7.1.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) 
File name: 'Microsoft.WindowsAzure.StorageClient, Version=1.7.1.0, Culture=neutral, PublicKeyToken=null' 

中的最后一项似乎表明与Microsoft.WindowsAzure.StorageClient一个问题。

如果我期待产生的CSX文件夹内,当解决方案建立,对于每一个项目,我发现:

  1. 发布/角色/ InSysDashboard /为approot/Microsoft.WindowsAzure.StorageClient.dll(这是1.7.1)
  2. 推出/角色/ InSysService /为approot/Microsoft.WindowsAzure.StorageClient.dll(这是1.7.1)
  3. 推出/角色/ InSysWatcher /为approot/Microsoft.WindowsAzure.StorageClient.dll(这是1.7.0

由于某些原因,Microsoft.WindowsAzure.StorageClient.dll的1.7.0版包含在工作者角色中。我检查了参考列表,它绝对包含1.7.1 NOT 1.7.0,那么为什么1.7.0包含在内?我在这个阶段假设这是Worker Role未运行的原因。

任何想法?

一些更多的信息:

如果我取代在C Microsoft.WindowsAzure.StorageClient.dll(1.7.0.0)的版本:\ Program Files文件\微软的SDK \的Windows Azure.NET SDK \ 2012-06 \参考1.7.1.0版本,然后我得到一个与Microsoft.WindowsAzure.Diagnostics有关的错误。

{"Could not create Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35."} 

,然后在内部异常:

{"Could not load file or assembly 'Microsoft.WindowsAzure.StorageClient, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)":"Microsoft.WindowsAzure.StorageClient, Version=1.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"} 

看来Microsoft.WindowsAzure.Diagnostics对Microsoft.WindowsAzure.StorageClient 1.7.0.0的依赖,并因此与1.7.1.0替换它导致问题。我想依赖是硬编码的。

回答

0

注释掉InSysWatcher(工作者角色)的app.config中的systems.diagnostics部分似乎有所帮助,即现在可以部署解决方案并且似乎按预期工作。这似乎不是'正确'的方式,但花了近2天后,在这一点上“无论什么作品”。

0

完全令人沮丧,我所发现的所有工作都是在VS中清理解决方案并再次尝试 - 有时在解决方案运行之前需要多次清理。

在GAC中存在另一个版本的StorageClient时,似乎会出现冲突