This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
hi, can some body help me what a servlet chaining and servlet tunneling are? it would be better if i am explained with a simple example.
thanks in advance.
amit a
Greenhorn
Joined: Jan 11, 2001
Posts: 2
posted
0
Servlet Chainning is talking of one servlet to the other,that can be done by enabling the servlet chainning option in the file admin login at java web server and specify all the servlets in the alias. this is basicaly done for formating the output and load balancing of servlet. Servlet tunneling is one of the process for communication between applet and servlet.this is usually done at byte level. You can get the complete details of this at Java Server Programming by WROX publication.
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12268
1
posted
0
It looks to me like the "Filter" concept in the next servlet API will eliminate the need for servlet "chaining" in a MUCH cleaner fashion. Bill