I am using Spring Security with my GWT application and have it
working. however, to get it working in the Eclipse IDE i have to
include the gwt.codeserver in the url of my "default-target-url" as
in....
<security:http auto-config='true'>
<security:intercept-url pattern="/login.html*" filters="none" />
<security:intercept-url pattern="/**" access="ROLE_USER" />
<security:form-login login-page='/login.html' default-target-
url='/MyApp.html?gwt.codesvr=55.55.55.55:9997' always-use-default-
target='true'/>
<security:logout logout-success-url="/login.html"/>
</security:http>
While this works in development i do not want this in my production
environment. Can anyone offer any advice? I guess worst case i could
have my Ant build script overwrite that value when i build for
production although it seems sub-optimal.
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.