Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
2k 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 ...
5
votes
2answers
1k 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 a ...
4
votes
1answer
268 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 ...
4
votes
1answer
374 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
3answers
166 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. ...
2
votes
4answers
188 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 ...
2
votes
0answers
137 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 = ...
2
votes
1answer
120 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 ...
2
votes
1answer
670 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 ...
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
3answers
850 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 ...
1
vote
2answers
394 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 ...
1
vote
0answers
511 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 ...
1
vote
1answer
269 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 ...
1
vote
1answer
852 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 ...
1
vote
1answer
889 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 ...
1
vote
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
2answers
43 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
90 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 ...
0
votes
1answer
107 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
195 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 ...
0
votes
3answers
156 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 ...
0
votes
1answer
216 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(). ...
0
votes
1answer
75 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 ...
0
votes
2answers
770 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
59 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 ...
0
votes
3answers
401 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 ...
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 ...