Hi ,
I am trying to implement HTTP Digest as per the documentation mentioned here http://static.springsource.org/spring-security/site/docs/3.1.x/reference/springsecurity-single.html#digest-config...
Type: Posts; User: suriin; Keyword(s):
Hi ,
I am trying to implement HTTP Digest as per the documentation mentioned here http://static.springsource.org/spring-security/site/docs/3.1.x/reference/springsecurity-single.html#digest-config...
I have generated the conrollers using the command
controller all --package com.mycompnay.myproject
but after run the application in the tomcat server i am unable to see any menus just the...
Hi Martinez
Thank u very much.The above exception is not coming now.But the data is not getting inserted in to DB now and when i click the List All Customers link getting the following stack
...
I have run the following commands from the roo shell for reverse engineering MSSQL Server 2008 Express Edition
database introspect --schema dbo --enableViews
database reverse engineer --schema...
check this
database.url=jdbc:jtds:sqlserver://localhost:1433/ResourceManager;instance=SQLEXPRESS
open Sql Server Configuration Manager and make sure TCP/IP is enabled if not enable and restart...
Hi ,
I am new to Spring roo.The referance manual has some good documentation for getting started.I am planning to develop a Advanced MVC addon, like i want to use Tapestry in place of Spring...
Hi ,
I have integrated Jasypt with Spring Security in my applicationContext.xml
as follows
<!-- Security Authentication Manager -->
<security:authentication-manager>
<!-- Custom...
Hi ,
I am using Spring 3.0 ,when i use the following Web Secuity expression
<security:intercept-url pattern="/**" access="hasRole('ROLE_ADMIN') and hasIpAddress('192.168.1.2')"/>
when i...
Hi Rohan,
I have done that by adding <security:http auto-config="true" session-fixation-protection="newSession">
Thanks
Regards,
Suresh
Hi ,
I am new to spring security and my requirement is, if a user is already signed or log in at one place and if he tries to login at some other place he should be able to login and the previous...
Hi ,
ApplicationContext.xml
----------------------
<security:http auto-config="true" access-denied-page="/AccessDenied">
<security:intercept-url pattern="/LoginPage"...
Hi Luke,
I have given
<!-- Http Session Context Integration Filter -->
<bean id="httpSessionContextIntegrationFilter"
...
Hi,
I have configured my application context as
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
...
<security:http auto-config="true">
<security:intercept-url pattern="/**" access="ROLE_ADMIN" />
<security:concurrent-session-control max-sessions="1" exception-if-maximum-exceeded="true" />...
Hi Luke,
I am new to Spring Security,have gone through Spring Security 2.0.5 ref manual and configured my application accordingly.
<http>
<intercept-url pattern="/LoginPage"...
Hi ,
I am using apache wicket framework in my application.I am integrating spring security with wicket.I have added the following dependency in my pom.xml
<dependency>...