Multiple sessions for one user?

Hi, I have a host web application that is being developed using java and jsp. On the client side, each client gives five ajax calls to the server to receive data from the server every 30 seconds. My problem is that one user who uses one browser to log in has several sessions at a time. The reason is that when I use this tool to use the monitor, I see that more than 10 sessions are active for the same IP address. How can this happen? any comments

+4
source share
2 answers
  • You can use another browser application.
  • Some browsers do not log in from an already running browser instance.
  • 2 or more users behind the same proxy server will have the same IP address (provider IP address)
+6
source

1. The IP you see is a public IP address that can be the same for multiple users, therefore, you see multiple calls from the same IP address.

  • One user using different browsers will have the same IP address, but 10 calls will be displayed in your log.
+1
source

Source: https://habr.com/ru/post/1335363/


All Articles