Hi Again, Is this a bug or is it me? I have a page with the @Secure annotation. I put a t:form with a context on the tml for the page.
Problem 1: The action url is http://myhost:myport/MyPage.MyForm/MyContext. Which leads to problem 2. The RequestSecurityManagerImpl method checkForInsecureRequest(String) creates a page render link using the page but then throws an exception java.lang.RuntimeException: Context values (which are added to the request URL) may not be null or blank. I guess this is because the onPassivate() method for the containing page is called and by now it's properties are null since we are in a new request... What is the correct way to get around this? Shouldn't the form just submit to https anyway since it is on an https page? And why does createPageRenderLink cause the exception to be thrown, do I have to mark ALL fields that are used in onPassivate as @Persist? And what happens to the forms context? Any answers to any of the above would be greatly appreciated. Cheers Russell