Hi,
I have defined a XML schema extension and created the following artifacts:
XSD containing xml extensions
NamespaceHandler implementation
BeanDefinitionParser implementation
...
Type: Posts; User: unmarshall; Keyword(s):
Hi,
I have defined a XML schema extension and created the following artifacts:
XSD containing xml extensions
NamespaceHandler implementation
BeanDefinitionParser implementation
...
Yes i know that UsernameNotFoundException is a spring security exception and will not know anything about DataAccessException.
The confusion was that the contract for loadUserByUsername in...
Yes i can use that.
I provided my own implementation of the entry point class and from there i forwarded the request to another page.
I created a wrapper over the original HttpServletRequest, set...
Following is the code for UserDetailsService which will fetch the DAO:
public UserDetails loadUserByUserName(String username) throws UsernameNotFoundException, DataAccessException {
if...
Hi Luke,
Thanks for your response. Here is what the problem is. We are using Siteminder for authentication. So consider a scenario where Siteminder authenticates a user and sets SM_USER in the...
Hi,
I am using Spring 2.5.6 and Spring security 2.0.5.
Following is my application context for spring security:
<security:http...
Hi,
I am using Spring 2.5.6 and Spring security 2.0.5.
We are using Siteminder as an external authentication service. I have successfully integrated it with Spring security but there is a...
The issue has been resolved.
Closing this thread.
Regards,
Madhav
To add to the description, the flow is as follows:
1. welcome page - index.jsp - redirects to login.jsp
2. User enters credentials and POST request is sent to Siteminder for authentication
3....
Hi All,
I am using:
---------------------------------
icefaces- 1.8.1
myfaces 1.1
spring 2.5.6
spring security 2.0.5
application server: WAS 6.0
<intercept-url pattern="/**" access="IS_AUTHENTICATED_ANONYMOUSLY" />
The configuration above will not prevent exceptions, specially in my case where i am using Siteminder as a pre-Auth mechanism...
I also tried:
<security:intercept-url pattern="/**" filters="none"/>
It still does not work. In the log file i see the following:
[1/9/10 15:53:47:351 IST] 0000001c FilterChainPr I...
I tried with all sorts of URL for intercept-filter pattern and nothing works.
Finally i changed the web.xml's filter-mapping to:
<filter>
<description></description>...
Exception trace
[1/9/10 13:20:06:302 IST] 0000001d EntryPointInj I org.springframework.security.config.EntryPointInjectionBeanPostProcessor postProcessBeforeInitialization Selecting...
Hi All,
I am using:
Spring 2.5.6
Spring security - 2.0.5
myfaces 1.1, icefaces 1.8.1
I have the following configuration:
web.xml
Hi All,
I am using Spring 2.5.6, Spring security 2.0.5 in our application. The client already has Site Minder for authenticating users and their access to an application, however it has not been...