top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Why is HTTP protocol called as a stateless protocol in Java?

+2 votes
342 views
Why is HTTP protocol called as a stateless protocol in Java?
posted May 11, 2016 by Abhishek Maheshwari

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

HTTP is called a stateless protocol because in this each command is executed independently, without any knowledge of the commands that came before it. It is the protocol used for the web. It is Hyper Text Transfer Protocol. It is based on a request paradigm. In this protocol the communication generally takes place over a TCP/IP protocol.

Http Request method are:

  1. GET
  2. POST
  3. HEAD
  4. TRACE
  5. DELETE
  6. OPTIONS
  7. PUT
answer May 11, 2016 by Karthick.c
Similar Questions
0 votes

Is that possible create a http tunnel to remote http tunnel server via a middle http proxy?

Here is my situation :
My Company only allow http protocol and they created a http proxy server. So when we want to access internet we have to set the http proxy settings for the browser or application.

Now I want to access outside without restrictions of http protocol and also not limited to 80 port. As they blocked the ssh, so the SSH reverse binding is not possible. So is that possible to create a http tunnel via the http proxy of my company and aim to my own server outside?

...