If tcp in the transport layer creates for us a session , so why we need the session layer to create for us a session?
Why do we need both session layer if we have transport layer(in the osi model)?
501 Views Asked by quora my At
2
There are 2 best solutions below
Related Questions in SESSION
- Multiple Processes, Multiple Processors, Single Priority Queue - Java Thread-Safe and Concurrency -
- Securing routes with sessionStorage in NextJS
- Cant handle Session's cookie when Safari/iOS
- Quart_Sessions Redis deletes keys and create backups instead
- I cannot get ID from session in GET method in Next.js 14
- I am new to flutter, just trying to set and get logged in user's session but maybe I am missing something
- I'm going nuts with Heroku session management issues
- Have a problem with get session in nextjs
- Session custom property getting undefined when calling Node js API from Javascript fetch
- Best Approach for Preserving User Input Across Blazor Pages in ASP.NET Core Application with User-Specific Data Storage
- spring security + form login + redis session storage -> keep coming out anonymous User
- Check user login in backend
- Next.js Middleware for Session Authentication Redirects: Errors Encountered
- Ansible prompt "No existing session" in manual executing the playbook
- Running a program on different computers with different users that access a central database simultaneously - VB.NET XAMPP/MySQL
Related Questions in NETWORKING
- How to avoid duplicates with the pull-based subscribe model?
- How to simulate CSMA/CD protocol in ns3?
- Network System - Cisco Packet Tracer
- Adhoc / mesh network not working (with and without batman-adv)
- Algorithm for finding a subset of nodes in a weighted connected graph such that the distance between any pair nodes are under a postive number?
- Python Client-Server Communication with Protocol
- I registered a service in eureka which is resolving through java code. But it is not able to resolve its name when hitting through chrome or postman
- Share files from the server without data or internet usage
- Player names not synchronizing in unity Mirror Networking
- My phone can not visit the server on macos in the same local network
- Unable to ping remote websites from an ipV6 only ubuntu ec2 Instance
- Linux Networking - Routing packets from one network interface to another
- wrong output from Supernetting algorithm
- Mapping localhost port on host to docker container
- Microsoft Message Analyzer disable resolving IP address to their domain names a.k.a turn off AutoIP feature
Related Questions in LAYER
- How to reuse postgres database connection client across multiple AWS Lambda invocations?
- Accessing the last convolutional layer in the model name
- Delay observed between two moving sublayers
- Nuxt 3 Layers and Azure DevOps repositories
- How to Build and Export a MSAVI raster file from Google Earth Engine
- Can I track the position of an element on flutter and display measurements and distances as on figma?
- Custom Layer using Keras
- How to get Stamen background with political boundaries
- How can I solve this layering problem in Unity 2D?
- How can I make a transparent outline for circles so that the background shows through?
- ValueError: Layer 'dense' expected 2 variables, but received 0 variables during loading. Expected: ['dense/kernel:0', 'dense/bias:0']
- how to get the full sized layer mask like photoshop in LibPSD library
- Can we create a stored procedure or a SQL function in a B1 Database using Service layer?
- Python and 3D Design
- How can i use Tailwind directive @layer @apply, when i was in Tailwind CDN environment?
Related Questions in OSI
- Why is error control needed at every OSI layer?
- Application-layer overhearing in ad hoc networks, much like TCP
- Application vs. Session Layer of OSI Model
- OSI model in VB.Net 2010
- osi model presentation layer formatting
- Tool to work in the network layer
- In OSI Networking Model, why is Network layer above Data-link layer
- intercept data received and sent from my computer?
- Why Tcp faster than http?
- How to make HTTP request to a web server behind a Network Load Balancer (Layer 3)?
- OSI Model Layer
- Definition of Network Units: Fragment, Segment, Packet, Frame, Datagram
- Send UDP packet, not using ARP, known IP and MAC
- If UDP is unreliable why is it used at transport layer
- Check host availability by MAC address
Related Questions in TRANSPORT-LAYER-PROTOCOL
- Where are the example programs of stm32 located in CubeIDE?
- change FTP server's transport protocol (pyftpdlib)
- Fragmentation over the Transport layer (UDP)
- Using NATS Transport Layer in HELM
- Why do we need both session layer if we have transport layer(in the osi model)?
- Gokit: Validate request/payload in transport layer
- If UDP is message-oriented, why does SMTP use TCP
- What actually happens on the client side when running VPN client software
- Where I can find the source code of TCP New Reno and run it on NS3
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
A quick look at the Wikipedia page seems to indicate that a session-layer session could span multiple connections (TCP sessions).
I don't know much about that protocol in particular, but in general if they made a separate layer for sessions, that would indicate to me that a Session-layer session is different than a TCP session. A TCP session might fail or might get closed if it is open too long, and they wanted an abstract way to talk about a communication "session" that might actually take place over multiple connections.