Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a service app that creates AppDomain's during the course of its use for long running tasks. I've been tracking these by storing them in a Hashtable with a unique ID.

After a task is completed the service app then unloads the AppDomain allocated to that task and then it's removed it from the appdomain Hashtable.

Purely from a sanity checking point of view, is there a way I can query the CLR to see what app domains are still loaded by the creating app domain (i.e. so I can compare the tracking Hashtable against what the CLR actually sees)?

Thanks in advance.
Kev

share|improve this question

3 Answers

up vote 2 down vote accepted

AFAIK, you need to keep your own list - like you are already.

share|improve this answer
Yep...after a couple of months of off and on research. This does seem to be the way. – Kev Jan 8 '09 at 14:21

If you use the unmanaged APIs you may set-up a DomainManager that gets called on each AppDomain creation, and you'll find that many pieces are creating their own AppDomains, e.g. WCF. A detailed explanatin is in Customizing the Microsoft .NET Framework Common Language Runtime

Another route is using the debug APIs.

share|improve this answer
Giulio - thanks for the answer and thanks for the link to the book. Can't believe I missed that one, looks fascinating. – Kev May 7 '09 at 11:34

I think you would like to check also this article - "Working with Application Domains in WPF".

share|improve this answer
+1 .. infosysblogs.com/microsoft/2008/10/… looks like a very comprehensive article! – Rob May 28 '09 at 14:30
+1 too....thanks for that. – Kev May 28 '09 at 16:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.