Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
50 views

Negotiate two applications in separate domains

How can I notify another application which is in different domain that current running application has crashed? in the other words, Is it possible to negotiate two different applications in separate ...
6
votes
4answers
2k views

AS3 - How to get ALL definitions in an ApplicationDomain of a loaded SWF?

When you load and SWF into another, the loader SWF can get definitions in the loaded SWF using ApplicationDomain.getDefinition(name:String) in example: package { // ... imports public class ...
5
votes
2answers
234 views

What is a .NET Application Domain?

What is exactly is an Application Domain (AppDomain) and how is it different than a process or thread?
5
votes
3answers
202 views

Common uses and best practices for application domains in .NET?

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 ...
3
votes
1answer
99 views

Difference between an application domain and an application pool?

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 ...
2
votes
4answers
539 views

Get Assembly Names in Current Application Domain

I want to get Assemblies Friendly Names in Current Application Domain and hence I wrote something like this : static void Main(string[] args) { foreach (System.Reflection.Assembly item in ...
1
vote
1answer
32 views

Is a asp.net web application considered a process that runs inside a app pool?

Is a asp.net web application (hosted in IIS) considered a process? And this process is in an application pool. And there can be 1 or more application pools in a app domain? Is this correct?
1
vote
1answer
65 views

How can Application Domains be used to host 3rd party assemblies that provide UI controls in a Web or Windows app?

MSDN says: Isolating applications is also important for application security. For example, you can run controls from several Web applications in a single browser process in such a way that the ...
1
vote
2answers
58 views

How should I load assemblies across the application domain boundary to load and unload modules?

I'm aware of the limitations of loading an assembly dynamically during run-time that prevents it from being unloaded. Instead it's been suggested that, if this is a requirement, that I should instead ...
0
votes
3answers
151 views

C# code to execute code in another application domain?

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 ...
0
votes
0answers
20 views

Application Domains: What are some cases where it would be advantageous to use both host evidence and assembly evidence?

When loading an assembly into an application domain, or when creating an application domain and launch assemblies, you can specify both host evidence and assembly evidence. When would it be ...
0
votes
2answers
94 views

Application global Error Logger

While working on a vb.net application, in which exceptions were handled poorly. It was a big pain. So an Idea flashed , that if it is possible to genearte a library or service or some sort of exe that ...