The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
37 views

Best way to prevent plugins being shared amongst users

We are developing an C# application based on a plugin architecture using MEF. The main application is just a basic framework and it's modularized functionality will be provided by plugins that the ...
1
vote
2answers
114 views

Looking for some advice on managing class dependencies/refactoring

My application implements a modular architecture that can dynamically load one or more "plugin" assemblys. Each assembly contains a class implementing an IPlugin interface, providing various methods ...
1
vote
0answers
85 views

How to test my plugin architecture feature?

I am implementing a simple plugin architecture in an application. Basically, there will be a simple string defining assembly names and fully qualified types of the plugins' respective main classes, ...
-1
votes
3answers
91 views

My own Java application which can be customized [closed]

I'm planning to implement a process using a java app. The process has various phases. Each phase has an input and output. So it is something like ...
1
vote
3answers
935 views

How reliable is the .NET Managed Add-in framework (MAF) and are there alternatives [closed]

MAF meets the requirements of the project I'm working on. My concern is that there seems to be very little talk about it, compared to MEF for example. I'm not trying to compare the two at the momment, ...
3
votes
1answer
302 views

Getting the Razor templates in a class library

I got a plugin based architecture (using areas) in my solution which works fine. The problem is that the plugin projects are class libraries and the Add View wizard is therefore not visible when I ...
2
votes
3answers
291 views

Python3 plugin system

I'm trying to create a plugin framework similar to yapsy (unfortunately yapsy is not python3 compatible). My code looks like this: root main.py plugins/ __init__.py ...
2
votes
2answers
236 views

Inject dependencies (NLog) into dynamically loaded types

I have sort of plugin architecture in my solution. There is a well-known folder where to place plugins in it. The plugins implement an interface which is shared in the host project. Initially i load ...
22
votes
1answer
8k views

The view must derive from WebViewPage, or WebViewPage<TModel>.

I'm following Justin Slattery's Plugin Architecture tutorial and trying to adapt it for Razor, instead of WebForm Views. Everything else (controllers, plugin assembly loading, etc) seems to be okay. ...
6
votes
2answers
404 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
2answers
311 views

Sandboxed Plugin architecture

I was googling and searching SO for plugin architecture and I'm satisfied by general knowledge on how to implement it. Now I went further to look for a sandboxed architecture. Basically what I mean is ...
1
vote
1answer
135 views

Needs help in defining architecture of ASP.Net web app?

I just got a project to be build up from scratch. Its front end will ASP.Net and Backend is SQL 2008. The requirement is, the architecture of the app should be such so that we can have access to app ...
3
votes
1answer
374 views

How should I design a plugin system in a layered Java EE Application?

I have a Java EE based REST api application. It has a layered architecture like the following: Resources (Jax-rs resources) Object Validation Object Mapper Service Layer Repository Layer JPA ...
1
vote
2answers
384 views

Plugin design question

My program is broken down into two parts: the engine, which deals with user interface and other "main program" stuff, and a set of plugins, which provide methods to deal with specific input. Each ...
0
votes
3answers
2k views

Implementing Plugin Architecture - Dynamic DLL loading

I've an application which is basically a designer with preloaded controls where you can design your pages using the controls. I'm planning to release more and more controls in the future. I don't ...
2
votes
4answers
434 views

Scoped CSS reset

I have a jQuery plugin that is going to dynamically render a decent amount of HTML to the page. I want consumers of the plugin to be able to use it as is and for it to look the same no matter what CSS ...
2
votes
6answers
3k views

C# dll's plugin-architecture

I have a program that i developed to use a basic plugin architecture. Effectively, when the program loads it uses reflection to search the directory for dll's that fit a certain interface and then ...
9
votes
2answers
271 views

Create a plugin, expose events

How do I expose events to my plugin users? I know that I should use: $('#myPluginDiv').trigger('eventName', ["foo", "bar"]); to trigger the event but I'm looking for best practices describing ...
2
votes
3answers
175 views

How do swap implementations on a per user basis on a web application using Spring's DI

Say a web application is a central payment processing engine, where each user may have a different credit card provider that will be processing the credit card. There is an interface that all of the ...
32
votes
4answers
11k views

Java plugin framework choice

We're trying to determine how to implement a simple plugin framework for a service we are implementing that allows different types of calculators to be "plugged-in". After reading a number of posts ...
0
votes
3answers
1k views

java: is there a framework that allows dynamically loading and unloading of jars (but not osgi)?

I want a mechanism that will allow to dynamically load and unload jars as well as calling an activator class in the jar. I don't want to use OSGi because of the cumbersome import/export mechanism.
1
vote
2answers
983 views

Plugin Architecture with Interfaces; Interface check doesn't work

I am implementing a simple plugin architecture in an application. The plugin requirements are defined using an interface (IPlugin) that is in a *.dll that is referenced by the application and the ...
0
votes
2answers
246 views

Restrict Certain Java Code in a Plug-in

I am creating an application which uses the Java Plugin Framework to load plug-ins and integrate them into the program. My question is: Is there any way to restrict certain operations (such as ...
1
vote
2answers
532 views

How to make a Java PlugIn?

I need to make my Java program as a PlugIn to OME - an Image processing web based s/w having Java API www.openmicroscopy
0
votes
1answer
630 views

A Java Plugin Framework that supports JARs

More specifically, is there any Java plugin frameworks have all of the below features: Support for multiple JAR files JARs can be signed and/or sealed Can perform a license check for each JAR prior ...
40
votes
7answers
19k views

Best way to build a Plugin system with Java

How would you implement a Plugin-system for your Java application? Is it possible to have an easy to use (for the developer) system which achieves the following: Users put their plugins into a ...
15
votes
4answers
3k views

Building a Plugin Architecture with Adobe AIR

I'm thinking of choosing Adobe AIR as the client-side implementation technology for an upcoming project. (The previous choice was C# and WPF, but I've been really impressed with Flash/Flex/AIR ...
4
votes
5answers
860 views

Best technology for adding plugin support to a J2SE application? [closed]

I'm writing a J2SE desktop application that requires one of its components to be pluggable. I've already defined the Java interface for this plugin. The user should be able to select at runtime (via ...
15
votes
6answers
3k views

How to create a pluginable Java program?

I want to create a Java program that can be extended with plugins. How can I do that and where should I look for? I have a set of interfaces that the plugin must implement, and it should be in a jar. ...