Tagged Questions
The maf tag has no wiki summary.
54
votes
5answers
11k views
Choosing between MEF and MAF (System.AddIn)
The Managed Extensibility Framework (MEF) and Managed AddIn Framework (MAF, aka System.AddIn) seem to accomplish very similar tasks. According to this Stack Overflow question, Is MEF a replacement for ...
22
votes
3answers
970 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:
...
6
votes
2answers
152 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 ...
4
votes
1answer
322 views
Dispose of AddIns created using MAF (System.AddIn)
Does anyone know how to dispose of AddIns created using System.AddIn. All the examples online seem to show how to easily load and use an addin, but none show how to dispose of them once they're alive. ...
3
votes
1answer
50 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.
...
3
votes
1answer
53 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 ...
3
votes
1answer
656 views
C# Source Code Examples that make use of System.Addin (MAF)?
Just like to see how others make use of MAF:
What are to define as contracts?
Using IoC and MAF together?
How do addins communicate with each other?
How does MAF help building a winforms ...
2
votes
1answer
29 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 ...
2
votes
1answer
160 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 ...
2
votes
2answers
1k views
MAF vs. MEF vs. Prism
I was watching some tutorials for MEF or Prism with Silverlight but was also doing some MAF work (System.AddIn) on the side and thought that might work also. I see that Prism and MEF are pretty much ...
2
votes
1answer
252 views
Can AddIns in MAF (System.AddIn) have constructor parameters?
I need to pass configuration settings to an AddIn created using the Managed AddIn Framework (MAF, aka System.AddIn). Can a put a settings parameter in the AddIn's constructor?
Another option would be ...
1
vote
1answer
8 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 ...
1
vote
1answer
34 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 ...
1
vote
0answers
21 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 ...
1
vote
1answer
41 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 ...
1
vote
1answer
79 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 ...
1
vote
1answer
413 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
100 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
192 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
89 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 ...
1
vote
3answers
378 views
Programming with MAF (and MEF) on Mono
I am curruntly working as an internship in a company who want to try to make software for the linux platform. Since they are a .net minded company, they want me to lookin to mono.
I kinda have to look ...
1
vote
1answer
341 views
C# WPF MAF Add-In interaction between themselves
I would like create a very simple Paint application using MAF on WPF.
The Add Ins I would like to create are:
Main Image Processor - Shown the current paint and receive inputs from the user
Tool ...
1
vote
2answers
182 views
Is System.AddIn mostly about making it easier to use Remoting or does it make it harder to do so?
It takes at least 7 assemblies and restricting my AddIn's data model to data types that remoting can deal with before the appdomain isolation features begin to work. It is so complex! The ...
1
vote
1answer
170 views
What is the fasted method to pass messages between different processes in C#?
I have a bunch of AddIns loaded by the Microsoft AddIn Framework all in separate processes.
Packets come in from the one side (also an AddIn) then get send to a controller (also an AddIn) that ...
0
votes
1answer
40 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 ...
0
votes
1answer
20 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
53 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 ...
0
votes
1answer
69 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(), ...
0
votes
1answer
88 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
0answers
17 views
Using System.addin for my scheduler extensibility
AddIn for my scheduler job so i can add different type of job in future without changing the code of the scheduler.
Now i am not sure how to implement it and more importantly how i can check that ...
0
votes
1answer
52 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
114 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
0answers
93 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
302 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
123 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 ...
0
votes
1answer
379 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 ...
0
votes
1answer
367 views
Permission Denied - Cross process UI using .NET Remoting and FrameworkElementAdapters
My question is very similar, if not a replica of this one. Irritatingly, the 'answer' doesn't give me a whole lot to work with and frankly I'm at a loose end.
The problem should be fairly obvious. I ...
0
votes
1answer
161 views
Deploying ClickOnce Application With System.AddIn Support
I have a ClickOnce app that I would like to have MAF (System.AddIn) support with.
I have learned about the System.AddIn Pipeline structure and such in a local context, but when it comes to ClickOnce, ...
0
votes
1answer
282 views
Own extensibility layer or MEF/MAF?
For those that work with application extensibility in .NET, what do you prefer doing - creating your own extensibility layer or using MEF (Managed Extensibility Framework) or MAF (Managed Add-in ...
0
votes
1answer
162 views
Using MAF with Prism or CAL
I am in processes of migrating my CAB application to Prism. And facing a specific request of having all the modules hosted in the shell be in different Appdomain. Was thinking of using MAF to achive ...
0
votes
2answers
280 views
System.AddIn (Maf) Interconnection between addins
I want to use MAF in my project because I need a robust add-in architecture. Yet I come to a point where I need to call methods of an add-in from an other add-in. How can I achieve this with a ...
0
votes
1answer
296 views
Plugin Framework - can there be too many addin assemblies?
The product I'm working on needs to be built in such a way that we have a quote engine driven by a pluggable framework.
We are currently thinking of using MAF, so we can leverage separation of the ...
0
votes
1answer
190 views
Can you shadow copy MAF Addins in ASP.NET
Is it possible to configure MAF in an ASP.NET such a way that it loads shadow copies of an addin assembly? I'd like the ability to update an addin without manually restarting the web server.