From: Kevin B. <kb...@ca...> - 2001-08-24 16:46:36
|
Peter Bengtsson wrote: > > So, I want to create a little chatwindow JavaApplet that is downloaded once > to the visitor and then, from there can make constant requests to an > application server back and forth without having to reload the page. > > Can this be done with Jython better than other tools? While you can do this with Jython, you'd probably be better off just using Javascript to reload the display frame every time you send new information from the edit frame. This will reduce the load on your network & app server, and instead of requiring the browser to support Java & a large applet, it only needs to support JavaScript. kb |