Wicket atmosphere initialization exception
I have the following setup: wicket: 6.1.0 wicket-atmosphere: 0.4 (via Maven) On Application.init() I get a NullPointerException during instantiation of EventBus new EventBus(this); Exception: java.lang.NullPointerException at org.apache.wicket.atmosphere.EventBus.<init>(EventBus.java:105) This is caused because the method public synchronized static BroadcasterFactory getDefault() delivers null (the protected static member "factory" is not initialized). How do I use Wicket/Atmosphere properly? Did I forget something to initialize? I'm starting Wicket as a ServletFilter. <filter> <filter-name