I've been using BaseURLSource(since behind a firewall/load balancer) fine all this time, and recently I needed a secure page, so I added the @Secure annotation on that page. But that page is no longer working because @Secure annotation ends up sending continuous redirects. What am I doing wrong?
My BaseURLSource implementation: BaseURLSource source = new BaseURLSource() { public String getBaseURL(boolean secure) { return (secure) ? baseURL : baseSecureURL; } } Thanks, Dave --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org