---
title: "What is stateless Protocol ?"  
description: "What is stateless Protocol ?"  
author: "Anonymous User"  
published: 2019-06-17  
updated: 2019-06-17  
canonical: https://www.mindstick.com/forum/55090/what-is-stateless-protocol  
category: "c#"  
tags: ["protocols"]  
reading_time: 2 minutes  

---

# What is stateless Protocol ?

stateless Protocol.

## Replies

### Reply by Anonymous User

## Stateless Protocol

![What is stateless Protocol ?](https://www.mindstick.com/mindstickforums/3b5287e3-8692-4245-bf46-440a12f3c52a/images/642f864b-6350-41c2-9b49-20766e165981.png) **\**

Although a protocol is going to stateless if there is no relation between subsequent request-response pairs. A server can handle each request uniquely and does not have to keep a session state for the client. This does not keep track of configuration settings, transaction information or any other data for the next session. The HTTP protocol is a stateless protocol. It means that a Web server treats each HTTP request for a page as an independent request. A server retains no knowledge of variable values that were used during previous requests.

![What is stateless Protocol ?](https://www.mindstick.com/mindstickforums/3b5287e3-8692-4245-bf46-440a12f3c52a/images/9548d73e-50dc-4cc1-9b5e-86b1d3a24175.jpeg)

Where there is a purely stateless environment, you will not need any type of session ID. Every request would contain all the information the server would need to process. However many applications need to maintain state to keep track of whether or not a session is authenticated to view certain content or to keep track of what a user is doing. Into the asp.net session state identifies requests from the same browser during a limited time window as a session and provides a way to persist variable values for the duration of that session.

The ASP.NET-MVC, however, does not use server-side controls so it doesn't have to maintain state. An MVC model separates the problem domain into the three partitions so that data is delivered to the client in a streamlined manner.

The full means of state is that there is memory of the past. The Previous transactions are remembered and may affect the current transaction.

![What is stateless Protocol ?](https://www.mindstick.com/mindstickforums/3b5287e3-8692-4245-bf46-440a12f3c52a/images/1937a17e-3cb9-4dbf-aa4a-52bc90ef99ff.gif)\


---

Original Source: https://www.mindstick.com/forum/55090/what-is-stateless-protocol

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
