Tagged Questions
The plugin-architecture tag has no wiki summary.
24
votes
6answers
8k 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 ...
19
votes
3answers
5k 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 ...
14
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 ...
14
votes
6answers
2k 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. ...
6
votes
2answers
150 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
0answers
97 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 how to ...
4
votes
5answers
593 views
Best technology for adding plugin support to a J2SE application?
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 ...
2
votes
2answers
39 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
2answers
74 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 ...
2
votes
1answer
141 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 ...
2
votes
6answers
1k 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 ...
2
votes
2answers
420 views
Best material (book) to learn plugin architecture using C#
Can someone please suggest good reading material to learn the concepts of plugin architecture using C#?
2
votes
3answers
110 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 ...
1
vote
3answers
71 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
...
1
vote
1answer
59 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 ...
1
vote
3answers
161 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 ...
1
vote
4answers
168 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 ...
1
vote
2answers
689 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 ...
1
vote
2answers
306 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
215 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. ...
0
votes
2answers
93 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 ...
0
votes
3answers
399 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 ...
0
votes
0answers
64 views
Plugin architecture, parameter passing
I have been working on a plugin architecture in .NET(C#) for some time and there are some issues that keeps my mind busy.
The communication between the actual application and the plugin will be ...
0
votes
3answers
671 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.
0
votes
2answers
153 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 intergrate them into the program.
My question is: Is there anyway restrict certain operations (such as starting ...
0
votes
1answer
462 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 ...