Re: GWT and spring security integration,DelegatingFilterProxy has a dead loop

2016-07-05 Thread Alexander Leshkin
On Tuesday, July 5, 2016 at 1:25:39 PM UTC+3, Alex Luya wrote: > > Does this mean if add added blow to web.xml: > > > > springSecurityFilterChain > > org.springframework.web.filter.DelegatingFilterProxy > > > springSecurityFilterChain > /dp_web/service/* > > > > I must use t

Re: GWT and spring security integration,DelegatingFilterProxy has a dead loop

2016-07-05 Thread Alex Luya
Does this mean if add added blow to web.xml: springSecurityFilterChain org.springframework.web.filter.DelegatingFilterProxy springSecurityFilterChain /dp_web/service/* I must use to configure something in applicationContext.xml? In my case,I removed above stuff from web.

Re: GWT and spring security integration,DelegatingFilterProxy has a dead loop

2016-07-05 Thread Alexander Leshkin
On Tuesday, July 5, 2016 at 6:02:38 AM UTC+3, Alex Luya wrote: > > and blow to applicationContext.xml: > > class="org.springframework.web.filter.DelegatingFilterProxy"/> > > > I think this causes recursion. Try to remove this bean declarion. Spring security should internally create bean with nam

GWT and spring security integration,DelegatingFilterProxy has a dead loop

2016-07-04 Thread Alex Luya
There is a pure GWT solution here:GWT Spring Security Integration (PURE GWT, NO JSP) 1,Do not use http element at all (http tag from config namespace) 2,Define your AuthenticationRpcService 3,Add AuthenticationRpcService.authenticate(user,password) method 4,Inject into AuthenticationServiceI