304 views
0 votes
0 votes
when we say http is stateless and ftp is statefull. what does it realy mean. what does statefull and stateles means.

2 Answers

2 votes
2 votes

HTTP is a stateless protocol, in other word the server will forget everything related to client/browser state. 

the FTP protocol is stateful: the client establishes a Control Connection for the duration of an FTP session that typically spans multiple data transfers.

1 votes
1 votes

Stateful means the computer or program keeps track of the state of interaction, usually by setting values in a storage field designated for that purpose.

Stateless means there is no record of previous interactions and each interaction request has to be handled based entirely on information that comes with it.

http is stateless because it doesn't maintain any information regarding user, where as, ftp is stateful,

No related questions found