Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
4answers
9k views

How to deal with LinkageErrors in Java?

Developing a heavily XML-based Java-application, I recently encountered an interesting problem on Ubuntu Linux. My application, using the Java Plugin Framework, appears unable to convert a ...
3
votes
2answers
548 views

How to use implementation loaded with different Java classloader?

I am writing a library where I allow people to provide implementations of certain interfaces using a plugin framework (it's JPF if you're familiar). The plugins are not stored in the classpath. The ...
1
vote
1answer
73 views

Java Plugin Framework (JPF) and SystemClassLoader

Hello stackoverflow world, I am stuck on a little problem with Java Plugin Framework and I can't find in the documentation an answer to it. The question is surprisingly simple: how to make ...
1
vote
2answers
380 views

Plugin Management for an Android application

We want to develop and extensible Android application, and are looking for a way to handle plugins. What do you think would be the best approach: Using Android's PackageManager. The problem here is ...
0
votes
1answer
122 views

Use Java Path Finder from another java project

I want to use JPF (Java Path Finder) from another java project. Steps that i have done: I have created a new Java project Referenced the jpf-core in build path. Created a java class(Test.java) ...
0
votes
2answers
136 views

How to declare Entities on the fly?

I try to develop a Java Plugin application using the Java plugin framework. All plugins will have acces to a uniq database using JPA (with Eclipselink). But each plugin will have there own Entities. ...
0
votes
1answer
640 views

Returning binary content from a JPF action with Weblogic Portal 10.2

One of the actions of my JPF controller builds up a PDF file and I would like to return this file to the user so that he can download it. Is it possible to do that or am I forced to write the file ...