Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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

System.AddIn, AddInStore.Rebuild causes UnauthorizedAccessException

my application is loading addins dynamically and when i add a new module i need to Rebuild the Pipeline segments cache, but the app doesn't have write permissions in the program folder and causes a ...
3
votes
1answer
633 views

“Invalid Window Handle” on exiting of WPF application that uses System.AddIn

I am working on a WPF application that is using System.AddIn to solve a memory leak issue we were having with a Windows Forms based control that was wrapped in a WindowsFormsHost control. The add-in ...
2
votes
1answer
775 views

System.AddIn in WCF

I have a question about use AddIn framework, provided by .NET Framework (currently use 3.5 SP1) implemented in System.AddIn namespace. I build a prototype with simple AddIn. This AddIn is instantiated ...
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 ...
2
votes
1answer
1k views

What are the issues with running WPF across multiple AppDomains on one UI thread?

We are looking at creating a WPF UI that runs across multiple AppDomains. One of the app domains would run the application while the remaining AppDomains would host a series of user controls and ...
2
votes
1answer
273 views

Problems detecting plugins made with System.Addin

I am using System.Addin to create plugins for a small portion of my application. I have two different plugins at the moment, and they are both detected and initialized correctly. I can even copy ...
2
votes
5answers
778 views

System.Addin & ClickOnce

I have a annoying build process from using System.Addins API with ClickOnce. Using System.Addins requires a specific directory structure, and the main project does not reference the adapters, view, ...
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
129 views

Achieving application reliability with System.AddIn and process isolation

I've been reading a lot about System.AddIn (a.k.a. Managed Add-in Framework). It lets you activate add-ins in different isolation modes, including separate AppDomains or separate processes. Most of ...
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
1answer
123 views

Sharing Types between AppDomains

I am currently developing an add-in system for a program I am writing, and have run into the issue of how the host and add-in should communicate on a common base. I use the System.AddIn namespace ...
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 ...
0
votes
1answer
15 views

Changing hosting mechanism for scheduler

I have one scheduler which is running on Windows Service. For each new event it creates new thread. Each thread then load DLL using AddIn Framework and execute the task. It is working fine but now ...
0
votes
1answer
40 views

How to kill Thread + .net + System.AddIn

I have developed one scheduler which is creating new thread at each new event. In that thread based on some id one dll is loaded using System.AddIn. Now i want to kill that event in a midway? How ...
0
votes
0answers
9 views

Managed extensibility with System.AddIn Killing the thread

I am using Manage extensibility to load different DLLS to perform some specific task in different threads. It is working perfectly fine. Now I want to kill specific thread during the process. Is it ...
0
votes
1answer
39 views

Managed extensibility with System.AddIn

I am using System.AddIn to add new component to my application. Application successfully pick the newly added add in. Currently if I want to add new addin then I need to create new project of class ...
0
votes
0answers
13 views

Managed extensibility with System.AddIn

I want to develop solution using Microsoft Managed extensibility using framework 3.5. Can anyone tell me sample code and relevant links for the same. Thanks
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
180 views

Getting a BadImageFormatException

I have some addins from the System.AddIn. But when running the AddInStore.Rebuild, string[] warnings = AddInStore.Rebuild(addInRoot); then I get a warning string back: The file is not a valid ...
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
369 views

Are there any articles/examples of using System.AddIn with ASP.NET?

Does anyone know about any articles/examples of using System.AddIn with ASP.NET and/or ASP.NET MVC applications? I'm looking to use System.AddIn to make an ASP.NET MVC application extensible.
0
votes
1answer
283 views

Control AppDomainSetup when activating AddInToken within AddInProcess

In .net, one can create an AddIn within a new AppDomain. The creation of new AppDomains is nothing new, and one can use an AppDomainSetup class to specify all the startup parameters (such as where to ...