Hi Reini,as has been mentioned REST principles specify each request should be stateless[0], which your http sessions breaks. It should also be noted that by using an http session, you would need to maintain a sticky connection, as the session would only exist in the publish instance that created the...