InterviewSolution
Saved Bookmarks
| 1. |
What are the uses of Servlet chaining? |
|
Answer» Given below are some of the use cases of Servlet chaining: One can TALK to those who don’t understand a particular language by dynamically translating the text from the pages to the language that can be read by the client. One can keep away certain words that one doesn’t want others to read.
For instance, one can add custom tags within a page, and then a servlet can replace these with HTML content.
For instance, one can PROVIDE a filter that converts nonstandard image types to GIF or JPEG for the unsupported image types. |
|