The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
22 views

as3 remove defininton from applicationDomain

how to remove defintion from the applicationDomain ! In my test I removed all references about one class but the definition is still exist in the applicationDomain, how to remove it, because I think ...
1
vote
1answer
66 views

DoCallBack CrossAppDomainDelegate behavior for non-static delegates

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 ...
1
vote
1answer
17 views

How application domain can be useful in exception handling?

I know little bit about the concept of application domain. We can delete the appdomain to unload the dll. Is it possible to use appdomain for better exception handling? How it can be used?
0
votes
1answer
41 views

AS3: How to instantiate the generic 'Document Class' (MainTimeline?) of a loaded SWF?

I have "Question.swf", which was created from "Question.fla". Note that Question.fla has no Document Class associated with it. (Note that this is legacy content, and there are over 14,000 variants of ...
0
votes
1answer
97 views

Modifying the domain memory of a loaded SWF to control behavior

I have several flash games that cannot be paused from within the games. I would like to write a wrapper swf that allows me to pause them. It is not feasible to recompile the games, so no functionality ...
0
votes
2answers
711 views

Application.Current is Null for Unit Tests

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

Custom flash component ApplicationDomain

sFor some reason components aren't attached to the ApplicationDomain of their parent clip. I'm adding a custom component to the stage in flash and at runtime the the components parent ...
0
votes
2answers
110 views

Dll management in .Net

I develop client application that invokes product that has multiple versions and my customers can load different versions of the product one after another. In order to support that in previous ...
0
votes
1answer
343 views

ASP.NET MVC 3 application with multi-tenancy in separate app domains?

Has anyone have idea how to implement multitenancy in asp mvc 3 application with support for separate app domains and MEF? In my application I would like to load assemblies for each tenant to ...
0
votes
3answers
62 views

ApplicationDomain and Threads

I have recently started studying about threads. I thought of starting from the beginning and started reading MSDN documentation. Read about ApplicationDomain which is separate for each application. ...
1
vote
1answer
1k views

how to use AppDomain.CreateDomain with AssemblyResolve?

i want to load My Assemblies from wcf by using Memory. Every thing is working good WHEN: AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(CurrentDomain_AssemblyResolve); ...
2
votes
1answer
136 views

Loading An Assembly Into An Application Domain With Lower Security

I'm trying to create a Sandbox App Domain that has read only access to the file system. The code I have written to do this is var ps = new PermissionSet(PermissionState.None); ...
0
votes
2answers
126 views

Share a as3 class between domains

I have a Singleton class instantiated in Main.swf located at domainA. The file loads Game.swf from domainB via LoaderMax (http://www.greensock.com/). When I try to access the Singleton I guess this is ...
0
votes
1answer
438 views

Release application domain from main SWF

i like to know that there is way to remove all data after unload swf . Calling Loader.unloadAndStop(); remove content and loaded bytes , but loaded classes stays in application domain . If i load it ...
2
votes
4answers
841 views

Share Classes between Parent and Child SWF

So i have a situation where i want to pass a object of a class say 'MyBigAwesomeClass' from a child to a parent. I import the class definition into both the parent and child. Now, if i load the ...
0
votes
1answer
221 views

Create instance of myClass by factory method in othe application domain

I am trying to create instance of MyClass by factory method in othe application domain is there any solution to this problem? Edited: The question is how to do it Thank you.
0
votes
2answers
356 views

Trying to load dll into Application domain

I am trying to do the following: if(domain != null) { AppDomain.Unload(domain); } domain = AppDomain.CreateDomain(appDomainName); Assembly assembly = domain.Load(location); and the code ...
2
votes
1answer
269 views

Trying to create instance Application domain

I am trying to do the following : private static MyClass CreateMyClassInDomain(ApplicationDomain domain, string componentName, params object[] parmeters) { var componentPath = ...
0
votes
3answers
418 views

Type Coercion error when casting an object loaded in a different application domain

My application currently contains a number of Widgets that are managed by a Widget Manager. When the user clicks on a widget (e.g. a Helper widget), the Widget Manager loads the widget into a separate ...
4
votes
3answers
507 views

implement callback over ApplicationDomain-boundary in .net

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. ...
1
vote
2answers
779 views

Howto: Flex Module with its own custom RSLs loaded only into child ApplicationDomain?

I have a complicated application. I use Flex 4.1 RSLs and custom RSLs for all my libraries (and there are like 15 of custom SWCs - Flex Library Project) I would like to load main application with ...
0
votes
1answer
441 views

vsto add-in uses excel applicationdomain

I am working on the VSTO 2010 excel addin. On one of the dev machine i install the addin (which already has some addin installed). I observed that it was not able to read the configuration file(). ...
1
vote
1answer
964 views

AS3 Loader's unloadAndStop odd behavior

I know the AS3 Loader's class unloadAndStop() supposes to unload and stop everything on a SWF's stage when I load one, but does it also changes objects within the library (even if they are not on ...
3
votes
1answer
279 views

What are the different “components” that make up Processes, AppDomains, Contexts, and Threads (and what are their relationships)?

I am realy hoping to get a definitive answer to this. I have a previous question where I asked "What is a thread (really)?" I got some really good answers and my takeaway from this was that a Thread ...
5
votes
1answer
573 views

Prevent Stack Overflow Exception from crashing process

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 Exception ...
1
vote
1answer
500 views

How do you specify ApplicationDomain.currentDomain when loading via SWFLoader?

I'm using Flex Builder 3 to build what will be a fairly large project. I'm suffering from modules stepping on each other and a conflict between application/module. My structure looks something like ...
6
votes
1answer
2k views

What is ApplicationDomain.domainMemory for?

In AS3, what is ApplicationDomain.domainMemory for? http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/system/ApplicationDomain.html#domainMemory
3
votes
1answer
2k views

Actionscript 3 loading external swf casting issue

I'm having something of an issue with trying to load externally defined classes in actionscript 3.0. I believe this to be an issue with my understanding of the ApplicationDomain / LoaderContext ...
4
votes
1answer
2k views

How can I run a WPF application in a new AppDomain? ExecuteAssembly fails

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 ...
9
votes
2answers
2k views

Why does calling AppDomain.Unload doesn't result in a garbage collection?

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 forces ...
0
votes
1answer
104 views

Loading a class in module1 with the same name as a class in module2

I have a Flex application that can load modules as necessary. When the first module is loaded, it creates a class MyBackground(), which paints the background red. When I choose to load a second module ...
1
vote
1answer
1k views

Flex SWF assets loaded into Flash SWF at runtime within same ApplicationDomain

I'm trying to load a swf compiled by the Flex SDK into a swf exported by the Flash IDE and instantiate the assets by way of getDefinition(). Normally this works fine with assets exported from the ...
0
votes
2answers
938 views

Loading external SWF, cannot cast document class to shared base class

I have a parent SWF file that defines a Widget base class. I then load an external SWF into the parent. The external SWF's document class derives from the Widget base class -- let's call it ...
0
votes
1answer
95 views

How can I have an application stack multiple processes into the same application domain?

So here's an example of what I'm wanting to do: Run test.exe, new Windows process is created, new CLR Application Domain is created, new CLR process is created. Run test.exe, new Windows process is ...
2
votes
2answers
1k views

C# Assembly Loading and Late Binding

I'm reading this book on C# and .NET and I'm learning a bunch of cool stuff. I've read the part where the author talks about dynamically loading an assembly and creating an instance of a type in that ...
2
votes
2answers
1k views

Create Plugins in Flex - loading nested SWF files

I'm trying to implement a plugin system for our application, and having a devil of a time getting SWF file which was dynamically loaded itself, load additional SWF files. It goes something like this: ...
0
votes
3answers
1k views

application domains and threads

A quote from MSDN: http://msdn.microsoft.com/en-us/library/6kac2kdh.aspx One or more managed threads (represented by System.Threading.Thread) can run in one or any number of application ...
2
votes
3answers
1k views

Does Silverlight use a separate application domain for each browser tab?

If the same Silverlight application is running in two web browser tabs, does each tab use a separate application domain? If you know where Microsoft explicitly provides this information, please ...
9
votes
5answers
4k views

What is the scope of a Static Class?

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

“Bootstrapping” a remote swf into the application SecurityDomain (actionscript3)

My Flash (AS3/AIR) application is currently using a slightly unusual architecture (for a Flash app) to provide particular base classes for loaded content at runtime. The external content is published ...