Como habilitar / oauth / check_token com o Spring Security Oauth2 usando XML

Ativei com êxito o terminal '/ oauth / check_token' usando o spring-security 3.2. * E o javaconfig, mas atualmente estou restrito ao spring-security 3.1.4 e, em seguida, estou preso à configuração XML. O terminal '/ oauth / token' está funcionando como eu gostaria, mas não consigo ativar o terminal check_token e não consigo encontrar nenhuma documentação (que não seja o javaconfig) explicando o que fazer.

Configuração do servidor de autorização Vanila:

<oauth:authorization-server 
        client-details-service-ref="client-service" 
        token-services-ref="tokenServices" >
    <oauth:refresh-token disabled="false" />
    <oauth:client-credentials disabled="false" />
    <oauth:password authentication-manager-ref="userAuthenticationManager"  />       
</oauth:authorization-server>

configuração de segurança http:

<sec:http 
        auto-config="true"
        pattern="/oauth/token" 
        create-session="stateless"
        authentication-manager-ref="clientAuthenticationManager">
    <sec:intercept-url pattern="/oauth/token" access="IS_AUTHENTICATED_FULLY" />
    <sec:anonymous enabled="false"/>
    <sec:http-basic entry-point-ref="clientAuthenticationEntryPoint" />
</sec:http>

Eu tentei adicionar a seguinte configuração http sem sucesso.

<sec:http 
        auto-config="true"
        pattern="/oauth/check_token" 
        create-session="stateless"
        authentication-manager-ref="clientAuthenticationManager">
    <sec:intercept-url pattern="/oauth/check_token" access="IS_AUTHENTICATED_FULLY" />
    <sec:anonymous enabled="false"/>
    <sec:http-basic entry-point-ref="clientAuthenticationEntryPoint" />
</sec:http>

por favor, alguma sugestão. Um exemplo de trabalho seria ótimo.

best ./Kristofer

questionAnswers(2)

yourAnswerToTheQuestion