Tagged Questions
0
votes
0answers
83 views
spring, wicket: atmosphere Eventbus nullpointerexception when testing
I am using following code:
private WicketTester tester;
@Autowired
private ApplicationContext applicationContext;
@Autowired
private LDBApplication ldbApplication;
@Before
public void setUp() {
...
0
votes
0answers
117 views
Wicket + Atmosphere + Guice
I'm trying to configure Atmosphere and that is what I get when I post event to EventBus
java.lang.IllegalStateException: MeteorServlet not defined in web.xml
at ...
0
votes
0answers
100 views
Wicket+Atmosphere behind Apache proxy problems
I have the following scenario:
A Jetty instance is running on port 8080 with URL http://localhost:8080/appl/test
The deployed Wicket application is using Atmosphere for push events.
I've configured my ...
2
votes
0answers
96 views
Configuration + Code example of using Atmosphere with Wicket?
This question has an answer which points to a non-working example and the
conversation on the mailing list is very vague. Is there any working example of using Wicket 6.5.0 with Atmosphere?
Or is ...
0
votes
1answer
268 views
How to have a servlet for a specific resource but use wicket for the rest of the web application
I'm trying to add Atmosphere support to a Wicket-1.5.X web application. (Currently upgrading to 6 isn't an option.)
I currently have the wicket filter configured to run on top of the Atmospheres ...
1
vote
1answer
196 views
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);
...
