Check out this SlideShare Presentation: Apache HISE + Apache CamelView more presentations from Rafal Rusin.Check out this SlideShare Presentation: Apache HISE + Apache CamelView more presentations from Rafal Rusin.
The problem
When you have a form, that anybody can see, but only logged on users can POST, you may want to redirect the user to the login page, and back to the form after login
Using wicket 1.3/1.4, if you do that using redirectToInterceptPage(loginP...The problem
When you have a form, that anybody can see, but only logged on users can POST, you may want to redirect the user to the login page, and back to the form after login
Using wicket 1.3/1.4, if you do that using redirectToInterceptPage(loginP...
In my real-world scenario I have a REST service for AJAX purposes. It renders data series for graphs. I want to test it with groovy's excellent HttpBuilder. There is a problem though - these requests are only available for already logged in users. In t...