Questions tagged [pluggable]
59 questions
1
vote
2 answers
ServiceLoader using ClassLoader pointing to different path
Have been trying this since few days and can't get it working!
I am trying to build a pluggable java application where I can run it from command line and provide plugins (jars) in a separated folder. It seems the ServiceLoader would fit my…

user1611183
- 311
- 1
- 5
- 12
1
vote
1 answer
Pluggable ASP.NET MVC framework query
I am trying to create a pluggable ASP.NET MVC framework. I have extensively used Prism (CAB for silverlight) and am a huge fan and wish to implement the following items in my pluggable ASP.NET MVC framework
The framework will have a host to load…

Abhay Naik
- 410
- 3
- 15
1
vote
0 answers
How to embed MVC5 project into another
I've developed an MVC5 project to be inserted as a plugin into another MVC5 project . the target is to call one partial view from my project in the new project.
I've tried to make my project published and built a test mvc5 project , how to embed the…

Sara Rashad
- 11
- 2
1
vote
1 answer
Oracle 12c Pluggable Database in Restricted Mode
We created Container Database but when we try to create PDB it gets created in Restricted Mode.
SQL> SELECT v.name, v.open_mode, v.restricted, d.status
FROM v$pdbs v, dba_pdbs d WHERE v.guid = d.guid ORDER BY v.create_scn;
NAME OPEN_MODE …

Rohit G
- 39
- 1
- 5
1
vote
1 answer
How to load Typescript module from a file known at runtime (in angular2+electron)
I'm trying to write a little Prove of Concept to find out whether "Angular2 in typescript + Electron" will fullfill the requirements of a future Desktop App project.
But I'm having trouble... Am I trying to achieve the impossible or is there a way…

user2663481
- 21
- 1
- 6
1
vote
1 answer
I need suggestions on pluggable architecture in c#
I am going to develop some logic to get date from third party API. These API have different method names and parameters and I need to keep in mind about the pluggable components.
Also I have to maintain the log of success, failure, number of records…

user3664557
- 11
- 2
1
vote
0 answers
Jira Plugin Framework comparison (OSGI/Pluggable solution)
I need to create an architecture that provides a scalable and flexible solution to allow future customizations in many aspects, as a 'plugin architecture' usually provides. Java is preferable so I'm now looking at Jira Plugin Framework, which is…

JohnMake0
- 25
- 4
1
vote
1 answer
how to build a pluggable java application?
How can I write a pluggable java application. I read about OSGI and some other plugin frameworks but I want to do that me myself.
Is there any easy way to write what I want?

RayanFar
- 539
- 11
- 28
1
vote
1 answer
Sessions connected to a pluggable database in Oracle 12c
Is there a way of identifying the connections made to a pluggable Oracle database? I can use the v$sessions and v$process views, but this seems to show all sessions within the container and all pluggable databases (with no indication on those views…

davegreen100
- 2,055
- 3
- 13
- 24
1
vote
1 answer
HTTP request using asynchronous pluggable protocol in Java
I need to make an HTTP request to a resource that looks like "xy:index.html" in Java.
The HTTP implementation does not have to be sophisticated. I just need to be able to do this to avoid same-origin violations when running in development mode for…

Craig
- 11
- 1
1
vote
1 answer
If I write a tic-tac-toe game that allows a programmer to change the algorithm or board pieces, is this a pluggable architecture?
Say I make a tic-tac-toe game, and I use minimax to play a human/computer opponent. Some other guy comes along with a new decision making idea, expressed in code. If I create some way for him to use that algorithm instead of my stock one, without…

johnny
- 19,272
- 52
- 157
- 259
1
vote
0 answers
Linux Pam authentication by answering to a challenge
I am trying to find a module that can help to ask a question to end an authentication. for example when I connect in ssh, the module ask me to resolve a equation or to answer to a question.

user2354740
- 43
- 4
1
vote
1 answer
Best way to develeop plugin compatible application. Dependency injection?
I'm wondering the best way to create fully compatible application to plug-ins.
I'm used to Wordpress plug-ins concept that you can define actions and filters and then use in your plug-ins. So others can define methods on their plug-ins that are…

Genar
- 433
- 3
- 22
1
vote
1 answer
Links in pluggable area to the root od web (visual studio connot resolve link)
I use the pluggable framework shown here: ASP.NET MVC - Pluggable application but I have problem with links (Visual Studio cannot resolve the link), images and css in module. I have problem with link in area.
When I create action link within area…

Martin Haščák
- 350
- 6
- 29
1
vote
1 answer
Pluggable website capability with ASP.NET
I can see that something similar has already been asked, and that an answer was given here:
how to create pluggable ASP.Net website?
However, I wonder if someone can go into a little more detail.
I have a website that I want to allow developers to…

Paul
- 3,072
- 6
- 37
- 58