applicationdomain Questions

1

My company has a large number of clients and we are currently able to handle a limited number of clients per server. Every client, however, uses the same core web application. Currently some conten...
Juggernaut asked 3/4, 2015 at 21:9

3

I have some methods in the code base that rely on Application.Current.Dispatcher.Invoke... to make sure things run on the GUI thread. I am currently trying to write unit tests for these methods but...
Olomouc asked 27/9, 2012 at 16:21

1

Solved

Please consider the following piece of code: // Create a new application domain AppDomain ad = AppDomain.CreateDomain("New domain"); Worker work = new Worker(); // if Worker class is marked as '...
Sunshinesunspot asked 16/5, 2013 at 9:1

3

Solved

I have a program that executes for 24 hours, then restarts. How can I shift main() from into a separate application domain, which is torn down and refreshed every 24 hours, in order to completely ...
Farrah asked 27/9, 2011 at 13:36

1

Solved

What is difference between application domain and application pool? I have read many articles regarding these two terminology. but still unable to get proper understanding about them. Please elab...
Denunciatory asked 13/12, 2011 at 8:41

3

Solved

I load a dll dynamically using an Applicationdomain to unload when nessesary. What i cant get to work is a callback-method from the created Appdomain if the task in the loaded dll terminates itself...
Heartland asked 14/4, 2011 at 16:49

1

Solved

Assume I have an application, where user can provide script written in JavaScript to perform some task in it. This is done using Jint. However, badly written script can cause Stack Overflow Excepti...
Agamogenesis asked 9/2, 2011 at 21:55

1

Solved

In AS3, what is ApplicationDomain.domainMemory for? http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/system/ApplicationDomain.html#domainMemory
Indifferentism asked 8/9, 2010 at 4:31

1

Solved

I'm trying to launch a WPF application from a Console application, using Application Domains, but when I do, I receive unexpected errors. Running the WPF application standalone, works. This code ...
Thorny asked 5/8, 2010 at 10:27

2

Solved

When I perform a AppDomain.Unload(myDomain) I expect it to also do a full garbage collection. According to Jeffrey Richter in "CLR via C#" he says that during an AppDomain.Unload: The CLR force...
Moorfowl asked 27/4, 2010 at 17:43

2

Solved

What is exactly is an Application Domain (AppDomain) and how is it different than a process or thread?
Parable asked 3/3, 2010 at 3:15

3

Solved

What are some guidelines and best practices for when to create new application domains within an application? Also, what are some common uses and examples of how multiple application domains are ...
Kaleena asked 28/10, 2009 at 18:36

5

Solved

I have an assembly that may be used by more than one process at a time. If I am using a static class, would the multiple processes all use the same "instance" of that class? Since the processes a...
Homesteader asked 12/11, 2008 at 16:25
1

© 2022 - 2024 — McMap. All rights reserved.