in reply to Limiting access to a local web application

Does each user get his own copy of the server?
  • Comment on Re: Limiting access to a local web application

Replies are listed 'Best First'.
Re^2: Limiting access to a local web application
by akho (Hermit) on Aug 04, 2008 at 10:23 UTC
    Yes, why not.
      Make up a random number on first request and set a cookie. Then require that the number is valid on each subsequent request.

      Keep the random number per server or per session, depending on whether you want to have one user per server or many.

      /J

      Then how are you having a problem? Let each server pick a different port, because they can't share the same one.
        Another user can access your personal instance of the app.