サーバー上でWCFサービスが実行されていて、たまに(毎月1〜2回)、情報メッセージ "不明なエラー(0x8005008)"でCOMExceptionがスローされます。私はこの特定のエラーのために私はグーグルで私はIISで仮想ディレクトリを作成するときに問題についてのスレッドを持っていた。また、ソースコードではIISで仮想ディレクトリを作成することはありません。WinDBGによる事後デバッグ
DirectoryServiceLib.LdapProvider.Directory - CreatePost - Could not create employee for 195001010000,000000000000: System.Runtime.InteropServices.COMException (0x80005008): Unknown error (0x80005008) at System.DirectoryServices.PropertyValueCollection.PopulateList
WinDBGでさらに解析するために例外をキャッチすると、私はメモリダンプをとった。 !私はCLRStackコマンドを実行し、右のスレッドに切り替えた後:
000000001b8ab6d8 000000007708671a [NDirectMethodFrameStandalone: 000000001b8ab6d8] Common.MemoryDump.MiniDumpWriteDump(IntPtr, Int32, IntPtr, MINIDUMP_TYPE, IntPtr, IntPtr, IntPtr)
000000001b8ab680 000007ff002808d8 DomainBoundILStubClass.IL_STUB_PInvoke(IntPtr, Int32, IntPtr, MINIDUMP_TYPE, IntPtr, IntPtr, IntPtr)
000000001b8ab780 000007ff00280812 Common.MemoryDump.CreateMiniDump(System.String)
000000001b8ab7e0 000007ff0027b218 DirectoryServiceLib.LdapProvider.Directory.CreatePost(System.String, DirectoryServiceLib.Model.Post, DirectoryServiceLib.Model.Presumptions, Services.Common.SourceEnum, System.String)
000000001b8ad6d8 000007fef8816869 [HelperMethodFrame: 000000001b8ad6d8]
000000001b8ad820 000007feec2b6c6f System.DirectoryServices.PropertyValueCollection.PopulateList()
000000001b8ad860 000007feec225f0f System.DirectoryServices.PropertyValueCollection..ctor(System.DirectoryServices.DirectoryEntry, System.String)
000000001b8ad8a0 000007feec22d023 System.DirectoryServices.PropertyCollection.get_Item(System.String)
000000001b8ad8f0 000007ff00274d34 Common.DirectoryEntryExtension.GetStringAttribute(System.String)
000000001b8ad940 000007ff0027f507 DirectoryServiceLib.LdapProvider.DirectoryPost.Copy(DirectoryServiceLib.LdapProvider.DirectoryPost)
000000001b8ad980 000007ff0027a7cf DirectoryServiceLib.LdapProvider.Directory.CreatePost(System.String, DirectoryServiceLib.Model.Post, DirectoryServiceLib.Model.Presumptions, Services.Common.SourceEnum, System.String)
000000001b8adbe0 000007ff00279532 DirectoryServiceLib.WCFDirectory.CreatePost(System.String, DirectoryServiceLib.Model.Post, DirectoryServiceLib.Model.Presumptions, Services.Common.SourceEnum, System.String)
000000001b8adc60 000007ff001f47bd DynamicClass.SyncInvokeCreatePost(System.Object, System.Object[], System.Object[])
私の結論は、コードが System.DirectoryServices.PropertyCollection.get_Item(可能System.String)を呼び出しているとき、それが失敗したということです。
だから発行後CLRStack -a私はこの結果を得る:!
000000001b8ad8a0 000007feec22d023 System.DirectoryServices.PropertyCollection.get_Item(System.String)
PARAMETERS:
this = <no data>
propertyName = <no data>
LOCALS:
<CLR reg> = 0x0000000001dcef78
<no data>
を私の非常に最初の質問は、なぜそれがプロパティ名には何のデータを表示しないんでしょうか?私はWindbgでちょっと新しいです。しかし、私は= 0x0000000001dcef78にdumpobjectを実行:
0:013> !do 0x0000000001dcef78
Name: System.String
MethodTable: 000007fef66d6960
EEClass: 000007fef625eec8
Size: 74(0x4a) bytes
File: C:\Windows\Microsoft.Net\assembly\GAC_64\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll
String: personalprescriptioncode
Fields:
MT Field Offset Type VT Attr Value Name
000007fef66dc848 40000ed 8 System.Int32 1 instance 24 m_stringLength
000007fef66db388 40000ee c System.Char 1 instance 70 m_firstChar
000007fef66d6960 40000ef 10 System.String 0 shared static Empty
>> Domain:Value 0000000000174e10:00000000019d1420 000000001a886f50:00000000019d1420 <<
ので、ソースコードは、Active Directoryからpersonalprescriptioncodeを取得したい場合(永続化層のために使用されるもの)、それが失敗しました。スタックを振り返ると、Copyメソッドを発行するときです。 DirectoryServiceLib.LdapProvider.DirectoryPost.Copy(DirectoryServiceLib.LdapProvider.DirectoryPost)
ので、ソースコードに探して:
DirectoryPost postInLimbo = DirectoryPostFactory.Instance().GetDirectoryPost(LdapConfigReader.Instance().GetConfigValue("LimboDN"), idGenPerson.ID.UserId);
if (postInLimbo != null)
newPost.Copy(postInLimbo);
このコードは、同じユーザーIDとOU =どっちつかずの状態で別のポストを探していると、もしそれが見つかると、属性を新しい投稿にコピーします。この場合、それは行い、personalprescriptioncodeで失敗します。私はOU = Limboの下でActive Directoryを見てきましたが、postは属性personalprescriptioncode = 31243で存在します。
質問1:パラメータと地域の一部にデータが表示されないのはなぜですか?メモリダンプが作成される前にクリーンアップしたのはGCですか?
質問2:この問題を解決するために私がもうできますか?
質問のタイトルを変更する必要があります.WCFとは関係がありません。これはディレクトリエラーです。 – fejesjoco
あなたは正しいです、質問は何かに発展しました。それは今行われた – Drazar