I'm getting java.lang.NoClassDefFoundError: org/json/JSONObject
when i'm running my .class
on Oracle Access Manager
This is the stacktrace:
java.lang.NoClassDefFoundError: org/json/JSONObject
at phillplugin.PhillPlugin.process(PhillPlugin.java:118)
PhillPlugin.java:118
contains just a creation of an instance of aJSONObject
//Line 118:
JSONObject x = new JSONObject();
I'm using JDeveloper IDE and i have included the org.json.jar
in my Libraries and in my Deployment profile
Note that when i'm executing it from a simple
main.class
it runs perfectly
I have to include the org.json.jar
in the MANIFEST.MF file of the deploying PhillPlugin.jar
and i have done it as follows:
Manifest-Version: 1.0
Bundle-Version: 10
Bundle-Name: PhillPlugin
Bundle-Activator: phillplugin.PhillPlugin
Bundle-ManifestVersion: 2
Import-Package:
org.osgi.framework;version="1.3.0",
oracle.security.am.plugin,
oracle.security.am.plugin.authn,
oracle.security.am.plugin.impl,
oracle.security.am.plugin.api,
oracle.security.am.common.utilities.principal,
oracle.security.idm,
javax.security.auth,
org.json.JSONObject;resolution:=optional,
org.json.JSONArray;resolution:=optional,
org.json;resolution:=optional
Export-Package:
org.json.JSONObject;resolution:=optional,
org.json.JSONArray;resolution:=optional,
org.json;resolution:=optional
Bundle-SymbolicName: PhillPlugin
Bundle-ClassPath: org.json.jar,utilities.jar,oam-plugin.jar,felix.jar,identity-provider.jar
But still the server does not recognise my imports
Let me mention that the PhillPlugin.jar
contains:
MANIFEST.MF
PhillPlugin.class
- line 118 gives me the error only on the serverPhillPlugin.xml
I will be happy to provide you with any other extra information you need