Microsoft's Managed Add-in Framework (MAF), sometimes called System.Addin, contains types to identify, register, activate, and control add-ins, and to allow add-ins to communicate with a host application. It is a standard part of the Microsoft .NET Framework 3.5.
1
vote
3answers
32 views
C#, MAF, Unhandled Exception Management in separate AppDomain
Okay, so I have a MAF application which loads up each addin inside of a separate appdomain. This is working fantastic for what I need as it allows me to dynamically unload and reload my addins at ...
0
votes
1answer
22 views
Sharing resources between .NET Add-In and Host
The application I develop uses add-ins with the .NET add-in functionality provided by System.AddIn. My host application as well as the add-ins share some resources like WPF embedded fonts and XAML ...
0
votes
1answer
32 views
Is it possible to delete an addin from memory when using MAF C#
I'm working on a project where administrators need to be able to add/delete/edit addins. The addins consist of 3 different dll's and 2 configuration files. when the addin hasn't been loaded ever i can ...
0
votes
0answers
34 views
MAF: Add-in crashes host even when run in seperate process
I am using MAF for my Addin development. All seems to be working fine, but one issue needs be sorted...
I activate the plugin in their own process, i,e, using
var process = new AddInProcess();
...
0
votes
1answer
47 views
Remoting references by wrapping them in a MarshalByRefObject? Will it work?
I'm trying to implement a plugin system using MAF. The objects I want to pass currently aren't serializable though, and even though I'm sure I could make them serializable I don't think it would be ...
0
votes
0answers
15 views
How to Create Independent Pluggable Modules In ASP.NET Webforms? [duplicate]
Possible Duplicate:
Choosing between MEF and MAF (System.AddIn)
I am working on a AMS System. The System is already build on ASP.NET 4 (Webforms + AJAX + Jquery). I want to built a ...
1
vote
1answer
265 views
plugin architecture .net maf or mef [closed]
I am currently working in a game platform application. I want to be able to easily add new games to it, but the games should be comply with a particular contract :
The games must have some required ...
7
votes
1answer
234 views
Proper way to load assemblies with MAF
I have a program with a plugin based architecture using the Managed Add-In Framework (MAF). I am trying to load my Add-In assemblies in a way where they run in their own process and I can specify ...
0
votes
1answer
210 views
C# Managed Add-in Framework with Event-driven Architecture
Is there any way to use an event-driven architecture with the .NET 3.5 managed add-in framework?
From what I can see, MAF only allows direct pre-defined function calls with a strictly defined data ...
1
vote
0answers
52 views
MAF AddInController has AppDomain property null
I'm new with MAF so may be my question is something stupid but reading some docs about activating addins doesn't clarify problem.
I have following code:
var process = new AddInProcess();
...
0
votes
1answer
209 views
MAF (System.Addin) property of serializable type in contract?
We are testing the MAF addin to use as our addin framework. But we get stuck at a basic issue. Can we use serializable types as IContract parameters?
Both the contract and the parameter type is ...
1
vote
1answer
84 views
MAF (System.AddIn) Property which is a Collection
I am attempting to write a MAF AddIn using the .NET4 System.AddIn namespaces. The AddIn has a property that is a collection of a custom type called 'ReportParameters'; there are other properties on ...
1
vote
0answers
58 views
Optimizing WPF Add-In Activation
Are there any optimization tricks for activating a WPF Add-In? My current AddIn activates in roughly 5-6 seconds but because it is being loaded on the UI thread, the UI is blocked for this duration. ...
0
votes
0answers
82 views
Power calculation based on MAF (Minor allele frequency) for controls only?
I try to estimate the power with a specific MAF (Minor allele frequence) for controls only. I do associations study between controls and a phenotype.
I tried to use the Power calculator at ...
1
vote
0answers
116 views
Addin controller Shutdown
I am using Addin framework for my project and i am using following code to shutdown addin.
AddInController ac = AddInController.GetAddInController(job);
ac.shutdown();
This works fine and shutdown ...
0
votes
0answers
232 views
MVC 4 add-in architecture with MAF
I am trying to figure out a good architecture to allow other people to build plugins for an MVC 4 application.
There are many resources to learn about MEF.
There are quite a bit articles/posts ...
1
vote
0answers
101 views
Improve FrameworkElementAdapters.ViewToContractAdapter
I'm using MAF(System.addin) with FrameworkElements between Host and AddIn.
I'm using FrameworkElementAdapters.ViewToContractAdapter and FrameworkElementAdapters.ContractToViewAdapter in the adpters. ...
1
vote
1answer
219 views
MAF with class inside DLL passing to host
I'm developing a MAF application which, in a DLL contains a class. The problem is, when one of the methods exposed by one of the AddIns uses this class. Example:
class A
{
Property_1
...
2
votes
2answers
906 views
Microsoft Add-in Framework vs OSGi?
How does MAF compare to OSGi?
MAF is not something that I could find easily, and I am wandering why people don't recommend it as much as, say, MEF? It seems to be similar to OSGi, at least from my ...
0
votes
1answer
144 views
Security and MAF addons
I want to construct a WPF system that can incorporate addin developed by an external developer community. Since I can't vouch for those developers, I want their code to run in a safe environment.
It ...
0
votes
0answers
73 views
System.Addin get HostView from token without activating
Is there anyway to obtain the HostView of a token without activating that token? In my program I activate the token when the wpf window loads and then, in a separate class, I need to access the ...
0
votes
2answers
259 views
C# MAF Activate AddIn without locking dll
Using System.AddIn, is there a way to load and activate an AddIn without locking the .dll file? I want to delete or override the file to load a new version of my AddIn.
The only way to unlock the ...
1
vote
1answer
119 views
How to get activated addins?
I have several addins activated within a windows service process. I have another process where a GUI application is running. What I want is to get somehow the activated addins form the service. The ...
1
vote
1answer
133 views
How to add MAF process to windows firewall exception rules
I using Microsoft Managed AddIn Framework, to run my addin as a separate process.
It creates a process called "AddInProcess32.exe" from my plugin dll.
The plugin should able to open a port, so i ...
3
votes
1answer
341 views
Give MAF plugin which run as separate process a custom name
I activate my plugin using MAF[Managed Add - In Framework] in a separate process.
The problem is that it gives default name "AddInProcess32" to the each
plugin which run as a separate process.
...
0
votes
1answer
543 views
Using MEF and MAF together
I want to compose my plugins with MEF (Managed Extensibility Framework) and run them in a separate process with MAF (Managed AddIn Framework).
So
First, is it possible?
Then, if possible how? (Any ...
1
vote
1answer
142 views
Instantiate MEF parts in a separate process
Is it possible in MEF to instantiate each plugin as a separate process? Or should i have to use MAF?
PS: I see an interesting article at ...
2
votes
2answers
159 views
Using System.Addin with Assembly generated in memory
I have an application where I have to provide on-the-fly extensibility to the user. You can think of it as a sort of calculation engine, with a lot of data and some math / numeric algorithms. I ...
0
votes
1answer
239 views
Custom Pipeline File and Directory Structure in C#
I have built a pipeline for addins using C#. Once I build the projects, how can I update the code so that it will use the .dll files in the root directory and not in the typical add-in ...
0
votes
1answer
135 views
Multiple Add-Ins using one C# Pipeline
Is it possible to have one add-in pipeline (MEF) but depending on the add-in class type perform different functionality?
Example: if I have add-ins for reporting (with each add-in performing a ...
0
votes
1answer
184 views
Practicality of Add-In Pipeline in C#
How practical is using the MEF pipeline in your application for a add-in/plug-in environment?
If, for example I want to create a basic reporting base class, then extend the functionality using some ...
1
vote
1answer
143 views
EntryAssembly for MAF AddIn
Is there a way to setup MAF addins so that System.Reflection.Assembly.GetEntryAssembly() returns a reference to the addin's main assembly when called from inside the addin's AppDomain?
Background: to ...
4
votes
1answer
254 views
How to specify AddIn process names?
I am using the Microsoft AddIn Framework to load AddIn assemblies. I am running them in their own process as to separate them from the service. The thing I don't like it that every AddIn process ...
6
votes
2answers
384 views
How to Plugin Web Pages dynamically in ASP .NET (and update the plugin)?
For regular assemblies one can use MEF to load assemblies dynamically. If a live update is required of those assemblies, the recommendation is to use AppDomains to host the dynamic assemblies ...
1
vote
1answer
493 views
Can “AddInProcess.exe has stopped working” be suppressed?
I am attempting to sandbox potentially malicious code by executing it within a MAF plugin launched in its own process:
var x = token.Activate<Ix>(new AddInProcess(), ...
1
vote
1answer
142 views
System.AddIn AddInView assembly strong name issue
I've built up an application that works using the System.AddIn APIs. Add-ins are currently activated in an external AppDomain with Internet trust.
In order to improve performance I've added strong ...
0
votes
1answer
299 views
Microsoft add-In with .net framework
I am extending an application using MAF in .net framework. I have implemented a pipeline and the required folder structure and it is working fine when I have the add-in implemented in one dll.
If I ...
0
votes
2answers
338 views
How do I properly handle a MAF addin crashing within a windows service host?
I have a windows service that uses MAF to load user created plugins. Here is how I am loading each addin:
public bool ActivatePlugin()
{
try
{
_addin = ...
0
votes
2answers
286 views
Catch Exception in AddInToken.Activate<T>()
I use MAF and I have a problem with activating the addin. Let me explain my plan.
First I create a secondary AppDomain then I try to activate the addin:
MyAddIn = ...
0
votes
1answer
249 views
UI thread for each MAF AddIn
I work with the MAF in WPF and I have problems with the UI threads. I would like that each AddIn that I activate become a unique UI thread.
Why do I want that you probably wondering? I try to explain ...
0
votes
2answers
604 views
How can I dynamically load and unload .Net assemblies inside a WCF service
I want to develop a windows service hosted wcf web service that would behave as a task execution management and reporting service. Each task would be represented as a .net assembly, the task name and ...
0
votes
1answer
183 views
How should I organize reference assemblies for AddIns when using Microsoft AddIn Framework
Here is my scenario:
I am using the Microsoft AddIn Framework for my project in order to have a nice plugin architecture. I also have a custom API I made compiled into a dll. The host application ...
1
vote
1answer
127 views
.NET AddIn Framework, ignore folder (.svn)
Is it possible to make the AddInStore of the AddIn Framework (MAF) to ignore a certain directory?
In my case the addin store is versioned by subversion but when the pipeline is rebuild I get the ...
2
votes
1answer
330 views
Can IoC and the Managed AddIn Framework (System.AddIn) work together with isolated AppDomains?
If I use Managed AddIn Framework (System.AddIn) and set it up to use separate AppDomains, can I use a centralized IoC container that is in the primary/default AppDomain? Can the IoC container resolve ...
0
votes
1answer
600 views
C# .NET 4.0 Forms plugins manager
I'm a bit lost with MEF, MAF, Unity ...
This question is about architecture of Winform application.
I've got a main project which contains a Main form and some other forms;
Because i want to ...
1
vote
1answer
570 views
Telerik Reporting inside a WPF MAF (System.Addin) control
I am using MAF (System.Addin) to display a WPF control onto a shared main form. When I add the telerik reportviewer I am getting a exception that I am trying to access a different thread then the one ...
1
vote
0answers
193 views
Problem activating MAF add-in with custom AppDomain
I am trying to use the overload of MAF's AddInToken.Activate() method that accepts an AppDomain, so that I can pass an application domain created by my client application.
When the passed AppDomain ...
1
vote
2answers
297 views
Can I use MEF to add content to a vs2010 right-click context menu?
Specifically dealing with extending the vs2010 right-click context menu.
Can I use MEF to add content to a right-click context menu. I know that was something that was supposedly in the works back in ...
1
vote
1answer
142 views
How should add-ins in restricted AppDomains access escalated services
I've currently used MAF to create an add-in model where the add-ins are loaded in a restricted AppDomain (Internet permission). This means that the add-in can't call our database which is what we ...
35
votes
5answers
3k views
Looking for a practical approach to sandboxing .NET plugins
I am looking for a simple and secure way to access plugins from a .NET application. Although I imagine that this is a very common requirement, I am struggling to find anything that meets all my needs:
...
