Thank you guys!
Using
did the trick. Perhaps you could update that line of code in your
sample page? Especially since it seems it's no longer possible to
download the older versions of StreamHub.
I have some more questions and comments regarding the samples you
present on your web page
http://streamhub.blogspot.com/2009/10/getting-started-with-reverse-ajax-and.html
1. The Java code for the stock ticker sample, on line 16 originally
says:
private final Set symbols = new HashSet();
but it doesn't compile with my javac version 1.6.0.22. In order
to make it compile it's necessary to change it to:
private final Set<String> symbols = new HashSet<String>();
2. I notice that sometimes the stock ticker sample doesn't start to
show the stock prices on the web browser right away and it's necessary
to refresh the page several times to get the numbers start to roll.
Is there anything I can do to fix this?
3. In the hello world sample, clicking on the "Say Hello" button
quickly doesn't seem to work, I need to wait one or two seconds
between clicks for it to really work. For my current needs that's
good enough, but would it be possible to make the wait between clicks
shorter? How?
Thanks guys! I think StreamHub works really neat!
Andy