Tagged Questions

2
votes
2answers
47 views

Passing data across appdomains with MarshalByRefObject.

I'm having a little trouble passing some data between two .NET appdomains and I'm hoping someone on here can help me. Basically what I have is a main application (Main) which load …
0
votes
3answers
32 views

ASP.NET Data Cache - preserve contents after app domain restart

I am using ASP.NET's data caching API. For example: HttpRuntime.Cache.Insert(my_data, my_key); Is there any way to configure cache so its contents are preserved when the App Dom …
3
votes
2answers
65 views

.Net How to create a custom ThreadPool shared across all the AppDomain of a process?

I made a custom ThreadPool optimized for my specific needs. However, when there are multiple AppDomains in the process, the CLR ThreadPool is able to be shared across all the AppDo …
0
votes
2answers
53 views

Waiting for Appdomain code to finish

Hi, I'm creating an Appdomain to run a piece of code that can literally be any thing. I want my host process to be able when all the word is complete but async calls/threads are b …
3
votes
2answers
50 views

Exception caused by AppDomain when it shouldn’t?

I am working on my MCTS and currently studying the AppDomain functionality. But I am running into something unclear. AppDomain should be capturing Exception and allow the domain to …
1
vote
3answers
81 views

How to unload assemblies from the GAC?

I am trying to run automated tests on a particular product. The test consists of installing the product into different locations on the hard drive and then performing some operatio …
0
votes
1answer
17 views

How to detect that there are no appdomain proxy objects left

I have a system which loads assemblies into an appdomain and then hands out object proxies to other domains (basically a simple IoC container). We need to achieve very high uptime, …
0
votes
1answer
31 views

Assemblies mysteriously loaded into new AppDomains

I'm testing some code that does work whenever assemblies are loaded into an appdomain. For unit testing (in VS2k8's built-in test host) I spin up a new, uniquely-named appdomain pr …
0
votes
0answers
34 views

Remoting and missing channel sinks

I ran into a remoting exception: "This remoting proxy has no channel sink which means either the server has no registered server channels that are listening, or this application h …
0
votes
3answers
96 views

Restrict plug-in assembly code access.

I'd like to create a plug-in architecture where I can limit an assemblies API to something very restricted, i.e. only allow a whitelist of functions. Is it possible to restrict wh …
4
votes
3answers
196 views

Replacing Process.Start with AppDomains

Background I have a Windows service that uses various third-party DLLs to perform work on PDF files. These operations can use quite a bit of system resources, and occasionally se …
3
votes
5answers
178 views

Is the any free library that implements message queuing similar to MSMQ (Microsoft Message Queuing)?

I am interested in using a free library that has features similar to MSMQ to send/receive messages among 3 app domains in a win form application. I only need the private queue func …
1
vote
1answer
43 views

How should I gracefully handle faulty AppDomains?

Is this code snippet poorly designed? Originally, there was only one AppDomain.Unload, in the finally block. This had the unfortuanate side effect that other threads could keep run …
0
votes
1answer
107 views

AppDomain.Unload doesn’t release the assembly I loaded up with Reflection

Hi All, I am struggling with an issue while loading an assembly up in a temporary AppDomain to read its GetUsedReferences property. Once I do that, I call AppDomain.Unload(tempDom …
2
votes
1answer
64 views

Multiple Assembly.Load(Byte[]), same instance or leak ?

What happens when I call Assembly.Load(Byte[]) multiple times with a Byte array containing the same assembly ? Will I get the same instance of Assembly for each call ? The same a …

1 2 3 4 5 8 next
15 30 50 per page