从visual studio发布基于云的应用程序(Web角色)后,应用程序在访问登录页面时出现以下错误.
无法加载文件或程序集"Microsoft.WindowsAzure.ServiceRuntime,版本= 1.8.0.0,文化=中性公钥= 31bf3856ad364e35"或它的一个依赖.该系统找不到指定的文件.
在本地相同的应用程序工作正常.在发布站点时,我在其属性中保留了Microsoft.WindowsAzure.ServiceRuntime Copy Local属性的引用.
我正在使用AzureSDK 2.0并在参考文件夹中引用了2.0版的所有存储服务.
我的web.config文件中也有以下内容.
仍然得到上述错误.请提出如何解决问题的建议.
将我的Azure Web应用程序移动到SDK 2.1后,我开始了
'Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment'的类型初始化程序引发了异常.
错误信息.这在本地环境中工作正常,但在Azure上出现上述错误.
我的web.config已经有以下条目:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.WindowsAzure.StorageClient"
publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.7.0.0" newVersion="1.7.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.WindowsAzure.ServiceRuntime"
publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.8.0.0" newVersion="1.8.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.WindowsAzure.Diagnostics"
publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
Run Code Online (Sandbox Code Playgroud)
和
<system.diagnostics>
<trace>
<listeners>
<add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" name="AzureDiagnostics">
<filter type="" />
</add>
</listeners>
</trace>
</system.diagnostics>
Run Code Online (Sandbox Code Playgroud)
仍然没有在实时Azure中工作.有人可以帮帮我吗?
我想确定每个表的表大小以及我的天蓝色存储的每个 blob 实体大小。
我尝试使用 $MetricsTransactionsBlob、$MetricsTransactionsTable、$MetricsTransactionsQueue 表和存储服务分析,但无法确定给定表或给定 blob 的大小。
我还尝试下载cerabata azure management studio,但无法确定表/blob 的大小。
有人可以分享可以帮助我确定大小的示例代码吗?
我想知道并了解MS Dynamics CRM 2013 Online是否可以拥有ON-PRIM数据库.我的应用程序(MS CRM 2013)将驻留在MS Cloud上,但数据将驻留在我的on-prim实例上.(典型的混合方案).
MS Dynamics CRM 2013 Online是否支持此类实施?