aspose file tools
The moose likes Servlets and the fly likes Http Protocol Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "Http Protocol" Watch "Http Protocol" New topic
Author

Http Protocol

sitaram irrinki
Ranch Hand

Joined: Feb 16, 2005
Posts: 158
if http protocol creator might have not thought
keeping in mind the todays web applications, they can
release a new version of the http protocol as this is
a stateless protocol. i know it is going to increase
the burdent on web container
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35253
    
    7
Umm, is this a question? If so, you should make it a bit clearer what it is.


Android appsImageJ pluginsJava web charts
sitaram irrinki
Ranch Hand

Joined: Feb 16, 2005
Posts: 158
what i am asking is why http protol was desingned as stateful protocol in its latest versions
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35253
    
    7
HTTP is a stateless protocol. What the latest version 1.1 added is the capability to keep connections open for multiple successive requests ("keep-alive"). But no state is kept, and the overhead on the server is not all that big. And the performance benefit on the client is quite noticeable.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Http Protocol
 
Similar Threads
can't web server support protocols other than HTTP
What is SOA
What is Diff betn Application Server & Web Server
transport protocol used in SOAP web services
Does Tomcat itself a Web Server?