2012-05-02 12 views
0

azure-projectをローカルで実行する環境をセットアップしました。waiishostがデプロイ時にクラッシュする

それは簡単なバッチファイルで始まります。

E: 
cd "E:\Procurement\Source\Procurement\trunk\Azure_Procurement\Azure_Procurement" 
MSBuild.exe Azure_Procurement.ccproj /p:PackageForComputeEmulator=true /p:PackageWebRole=False 
MSBuild.exe Azure_Procurement.ccproj /t:Publish 
"C:\Program Files\Windows Azure Emulator\emulator\CSRun.exe" "E:\Procurement\Source\Procurement\trunk\Azure_Procurement\Azure_Procurement\csx\Release" "E:\Procurement\Source\Procurement\trunk\Azure_Procurement\Azure_Procurement\bin\Release\ServiceConfiguration.cscfg" 

私は、このファイルを実行すると、私のプロジェクトがコンパイルされ、IISにデプロイされます。 はしかし、数秒エミュレートされたホストがクラッシュした後、私は次の情報で私の手を得ることができた:

Problem signature: 
    Problem Event Name: CLR20r3 
    Problem Signature 01: waiishost.exe 
    Problem Signature 02: 1.6.0.0 
    Problem Signature 03: 4eb3102e 
    Problem Signature 04: System.ServiceModel 
    Problem Signature 05: 4.0.0.0 
    Problem Signature 06: 4d930801 
    Problem Signature 07: 573e 
    Problem Signature 08: 1bd 
    Problem Signature 09: KFM023AO4DTNWT0EKMSKUWE5BRORH3FC 
    OS Version: 6.1.7601.2.1.0.272.7 
    Locale ID: 1053 
    Additional Information 1: af3a 
    Additional Information 2: af3a02be113369c664147fe8f0201429 
    Additional Information 3: 9edf 
    Additional Information 4: 9edf9a509c5231db61e45a805b3d35ff 

例外メッセージ: 方法を予期しないエラーコード3.

Stack Trace: 
    at System.Security.AccessControl.NativeObjectSecurity.CreateInternal(ResourceType resourceType, Boolean isContainer, String name, SafeHandle handle, AccessControlSections includeSections, Boolean createByName, ExceptionFromErrorCode exceptionFromErrorCode, Object exceptionContext) 
    at System.Security.AccessControl.DirectorySecurity..ctor(String name, AccessControlSections includeSections) 
    at System.IO.DirectoryInfo.GetAccessControl(AccessControlSections includeSections) 
    at Microsoft.WindowsAzure.ServiceRuntime.IISConfigurator.FileManager.AddAllowAceIterative(DirectoryInfo dir, FileSystemRights rights, IdentityReference[] accounts) 
    at Microsoft.WindowsAzure.ServiceRuntime.IISConfigurator.FileManager.AddAllowAce(DirectoryInfo dir, FileSystemRights rights, Boolean inherit, IdentityReference[] accounts) 
    at Microsoft.WindowsAzure.ServiceRuntime.IISConfigurator.Security.AddAppPoolSidAceToVdir(String appPoolName, String sitePath, String appPoolSid) 
    at Microsoft.WindowsAzure.ServiceRuntime.IISConfigurator.IISConfigurator.Deploy(String roleId, WebAppModel appModel, String roleRootDirectory, String sitesDestinationDirectory, String diagnosticsRootFolder, String roleGuid, Dictionary`2 globalEnvironment) 
    at SyncInvokeDeploy(Object , Object[] , Object[]) 
    at System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke(Object instance, Object[] inputs, Object[]& outputs) 
    at System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin(MessageRpc& rpc) 
    at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5(MessageRpc& rpc) 
    at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage4(MessageRpc& rpc) 
    at System.ServiceModel.Dispatcher.MessageRpc.Process(Boolean isOperationContextSet) 

で失敗しましたプロジェクトはVisual Studioを使用してデバッグするときに実行され、別のサーバーで同じバッチスクリプトを実行しても機能します。

ありがとうございます!

+0

解決策を見つけました! 私はそれが許可されたときに答えとして投稿します! (Repは100 = Cantは質問を投稿してから8時間以内に自分の質問に答えます) – DOOMDUDEMX

+0

あなたは今戻って答えを投稿できるようになります。それはこの質問を整理するだろう。 –

+0

@DOOMDUDEMX Azure SDK 2.1でシェルを使用するにはどうしたらいいですか? –

答えて

1

私は解決策を見つけました!

エラーが紺碧の診断を通じてWCF-トレースをアクティブ化しようとする試みによって引き起こされました。 stacktraceに見られるように、何かが "System.ServiceModel"(WCFの一部であることが分かっていない人のために)で間違っていました。これはweb.configのエラーが原因でした。 これに加えて、私は実際に "Debug"設定でコンパイルしている間に、 "Release" -buildconfigurationでコンパイルされたビルドを指し示していることを忘れていました。

+0

私は同様の問題を抱えています。上記の例外を引き起こしたWebconfigの問題は何ですか? – TBD

+0

残念ながら私はこの質問を投稿して以来、私は雇用を変更し、いくつかの異なるプロジェクトに取り組んでおり、私はもはやプロジェクトにアクセスすることさえできません。 Web.configで指定されたロギング/トレースを削除し、デバッグとリリースのビルド構成に異なる構成ファイルがある場合は、正しいものを変更してください。 – DOOMDUDEMX

関連する問題