I want to embed JWebSocket to osgi environment(apache-servicemix 4.5.2 for example). I did following steps:
- I drop jWebSocketServer-Bundle-1.0.jar to deploy folder of servicemix.
- I create another bundle to call main function of JWebSocketServer class
But when the my bundle runs, it raises above exception. I try to debug to find the problem, I found that has an error on line 112 of JSocketFactory.java
109 if (lDebug) {
110 Logger lLogger = mLog.getRootLogger();
111 String lAppenderStr = "";
112 Enumeration lAppenders = lLogger.getAllAppenders()**;
Logger does not have getAllAppenders() method. I guest log4j of service mix overrode log4j in jWebSocketServer-Bundle-1.0.jar, but I am not sure about it.
Can you please help me ? thank you
here is my code in MyActivator class to call JWebSocketSer
public class MyActivator implements BundleActivator {
public void start(BundleContext bundleContext) throws Exception
{
JWebSocketServer.main(null);
}
public void stop(BundleContext bundleContext) throws Exception
{
}
}
Please make sure that both things are using compatible log4j versions. I've check Karaf 2.3.3 and it embeds Log4j 1.2.15. What doesn't work and will cause lots of problems is JWebSocketServer packaging which is a "fat jar". You have log4j (and junit by the way) again embedded in JWebSocketServer.jar.
If you drop something to drop plain JAR to Karaf deploy it gets wrapped in bundle which exports all contents and have Dynamic-ImportPackage. To avoid your issue you may need to repackage jwebsocket.