Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Step2. Set the key store location and the algorithm info

...

Code Block
languagexml
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:jaxrs="http://cxf.apache.org/jaxrs">
    <bean id="serviceBean" class="org.apache.cxf.systest.jaxrs.security.jose.SecureService"/>
    <jaxrs:server address="/secure">
        <jaxrs:serviceBeans>
            <ref bean="serviceBean"/>
        </jaxrs:serviceBeans>
        <jaxrs:properties>
            <entry key="rs.security.signature.properties" value="org/apache/cxf/systest/jaxrs/security/secret.jwk.properties"/>

...


            <entry key="rs.security.encryption.properties" value="org/apache/cxf/systest/jaxrs/security/secret.jwk.properties"/>
         

...

</jaxrs:properties>
    </jaxrs:server>
</beans

 See the Configuration section for all the available configuration options.

Consume JOSE data

Step1. Use JoseConsumer or JoseJwtConsumer

...