When should I use a Java applet instead of AJAX?

When should I use a Java applet instead of AJAX?

Scenarios to use Java applet instead of AJAX:

- When there is a need for custom data streaming
- Need for graphic manipulation
- Threading related functionality
- Complex and advanced GUI manipulations.

When should I use a Java applet instead of AJAX?

- Applets provide features like custom data streaming, graphic manipulation, threading, and advanced GUIs which AJAX cannot.
- However, with the help of DHTML, the functionalities of AJAX can be extended further.
- AJAX requires that the browser be DHTML and AJAX capable.
- AJAX-based functionality does need to take browser differences into consideration due to which using a JavaScript library such as Dojo which abstracts browser differences is recommended.
- AJAX/DHTML works well for applications where the latest browsers are used.
How Ajax is different?
How Ajax is different? - AJAX allows for asynchronous processing of events. This is different from the traditional sequential....
Is the server or the client in control in AJAX?
Is the server or the client in control in AJAX? - AJAX techniques can be implemented by server only, client or, or even mix of both
Are there Usability Issues with AJAX?
Are there Usability Issues with AJAX? - Usability Issues: a. User Exceptions ....
Post your comment