InterviewSolution
Saved Bookmarks
| 1. |
When Will The Forms Listener Servlet Use Http 1.1 Requests To The Web Server, And When Will It Use Http 1.0 Requests? |
|
Answer» The FORMS LISTENER Servlet will always make HTTP 1.1 requests if the Web SERVER and any intervening proxies, SUPPORT this protocol level. The Servlet will drop down to using HTTP 1.0 if Web server or one of the proxies can only support that level of the protocol. The Forms Listener Servlet will always make HTTP 1.1 requests if the Web server and any intervening proxies, support this protocol level. The Servlet will drop down to using HTTP 1.0 if Web server or one of the proxies can only support that level of the protocol. |
|