Dear All, I've managed to get the jsessionid appended correctly when requesting a page without cookies enabled (wicket 1.5.3, tomcat 7.0.22).
I get curl -v --insecure https://localhost/ -> Location: https://localhost/?1 curl -v --insecure https://localhost/?1 -> Location: https://localhost/.;jsessionid=D62D2D693854214C847E7A75439909A3 curl -v --insecure https://localhost/.;jsessionid=D62D2D693854214C847E7A75439909A3 -> HTTP 404 change URL (erasing ".") to curl -v --insecure https://localhost/;jsessionid=D62D2D693854214C847E7A75439909A3 -> Location: https://localhost/?1 When trying in a browser I get the warning that it's a redirect loop. Can somebody please point me to what I'm doing wrong here? Many Thanks Thomas
