Re: Wicket Auth-Roles and Spring Security 3

2011-03-22 Thread James Carman
Have you ever done this in a non-wicket environment? I would get that working first before you try to introduce Wicket to the mix. On Tue, Mar 22, 2011 at 2:52 PM, RBC Bankster wrote: > JSESSIONID > > On Tue, Mar 22, 2011 at 2:49 PM, James Carman > wrote: >> >> What cookies are you expecting to

Re: Wicket Auth-Roles and Spring Security 3

2011-03-22 Thread RBC Bankster
JSESSIONID On Tue, Mar 22, 2011 at 2:49 PM, James Carman wrote: > What cookies are you expecting to be there? What cookies does your > services layer expect? > > On Tue, Mar 22, 2011 at 2:47 PM, RBC Bankster > wrote: > > The simplest way is talking to the servlet in the services application. >

Re: Wicket Auth-Roles and Spring Security 3

2011-03-22 Thread James Carman
What cookies are you expecting to be there? What cookies does your services layer expect? On Tue, Mar 22, 2011 at 2:47 PM, RBC Bankster wrote: > The simplest way is talking to the servlet in the services application. This > is done using a PostMethod and HttpClient. > > i.e. > PostMethod filePos

Re: Wicket Auth-Roles and Spring Security 3

2011-03-22 Thread RBC Bankster
The simplest way is talking to the servlet in the services application. This is done using a PostMethod and HttpClient. i.e. PostMethod filePost = new PostMethod("http://...";); filePost.setRequestHeader("Cookie", StringUtils.join(cookies)); HttpClient client = new HttpClient(); client.executeMeth

Re: Wicket Auth-Roles and Spring Security 3

2011-03-22 Thread James Carman
How are you "talking to" your services? On Tue, Mar 22, 2011 at 2:16 PM, RBC Bankster wrote: > Hi, > > I'm using Wicket 1.4 with Auth Roles and Spring Security 3.  My application > is split into two parts: a web application in Wicket and a service > application, and they are deployed as separate

Wicket Auth-Roles and Spring Security 3

2011-03-22 Thread RBC Bankster
Hi, I'm using Wicket 1.4 with Auth Roles and Spring Security 3. My application is split into two parts: a web application in Wicket and a service application, and they are deployed as separate WAR files. Wicket talks to the service application using web services and servlets. The servlet calls

Re: Wicket auth-roles and Spring Security 3

2011-02-06 Thread ookpalm
Thank you James for your answer. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-auth-roles-and-Spring-Security-3-tp3263515p3263615.html Sent from the Users forum mailing list archive at Nabble.com

Re: Wicket auth-roles and Spring Security 3

2011-02-06 Thread James Carman
e > can access to PageA and PageB. > > Can we do this in Wicket auth-roles and Spring Security 3 integration? Or is > there another way to achieve this? > > Thank you > OOkpalm > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Wicket-aut

Wicket auth-roles and Spring Security 3

2011-02-06 Thread ookpalm
roles to a principle like Mr. One has PageA, PageB roles so he can access to PageA and PageB. Can we do this in Wicket auth-roles and Spring Security 3 integration? Or is there another way to achieve this? Thank you OOkpalm -- View this message in context: http://apache-wicket.1842946.n4.nabble.

Re: wicket-auth-roles and spring security 3.x

2010-09-29 Thread yferahi
Hi James, I am trying to migrate your Wicket-advanced example to use Spring Security 3 and the Pre-authentication scheme (Letting SiteMinder do the authentication). Since it is in development mode, I configured a filter to mock siteMinder by setting some headers (SM_User, SM_Role).. I have chang