I'm having issues with the Spring Security and GWT.  Defining  the
following in my Spring config file:

<beans xmlns="http://www.springframework.org/schema/beans";
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
    xmlns:security="http://www.springframework.org/schema/security";
        xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
                        http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-2.0.4.xsd";>

and referencing spring security elements as follows:

<security:http entry-point-ref="samlEntryPoint">
        <security:intercept-url pattern="/**"
access="IS_AUTHENTICATED_FULLY"/>
        <security:intercept-url pattern="/logout.jsp" filters="none"/>
        <security:intercept-url pattern="/login.jsp" filters="none"/>
        <security:intercept-url pattern="/favicon.ico" filters="none"/
>
    </security:http>

results in:

org.springframework.beans.factory.parsing.BeanDefinitionParsingException:
Configuration problem: Unable to locate Spring NamespaceHandler for
XML schema namespace [http://www.springframework.org/schema/security]
Offending resource: class path resource [server-config.xml]

        at
org.springframework.beans.factory.parsing.FailFastProblemReporter.error
(FailFastProblemReporter.java:68)
        at org.springframework.beans.factory.parsing.ReaderContext.error
(ReaderContext.java:85)
        at org.springframework.beans.factory.parsing.ReaderContext.error
(ReaderContext.java:80)
        at
org.springframework.beans.factory.xml.BeanDefinitionParserDelegate.error
(BeanDefinitionParserDelegate.java:281)
        at
org.springframework.beans.factory.xml.BeanDefinitionParserDelegate.parseCustomElement
(BeanDefinitionParserDelegate.java:1294)

Has anybody come across/solved this issue at all?  It's definitely a
GWT issue as I'm able to load the config up normally in a standard
Java application.  Many thanks...

--

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.


Reply via email to