我想配置一個cxf soap webservice,授權和身份驗證部署在Servicemix上。卡拉夫cxf-rs-ws授權
我配置了LDAP身份驗證模塊如下:
<!-- Bean to allow the $[karaf.base] property to be correctly resolved -->
<ext:property-placeholder placeholder-prefix="$[" placeholder-suffix="]"/>
<jaas:config name="myRealm">
<jaas:module className="org.apache.karaf.jaas.modules.ldap.LDAPLoginModule" flags="required">
connection.url = ldap://srv-ldap:389
user.base.dn = ou=people,dc=intranet,dc=company,dc=com
user.filter = (uid=%u)
user.search.subtree = false
role.base.dn = ou=groups,dc=intranet,dc=company,dc=com
role.filter = (member:=uid=%u,ou=people,dc=intranet,dc=company,dc=com)
role.name.attribute = cn
role.search.subtree = true
authentication = simple
</jaas:module>
</jaas:config>
<service interface="org.apache.karaf.jaas.modules.BackingEngineFactory">
<bean class="org.apache.karaf.jaas.modules.properties.PropertiesBackingEngineFactory"/>
</service>
這裏是beans.xml的文件
<jaxws:endpoint id="myService"
implementor="com.myorg.services.impl.MyServiceWSImpl"
address="/myService">
<jaxws:inInterceptors>
<bean class="org.apache.cxf.ws.security.wss4j.WSS4JInInterceptor">
<constructor-arg>
<map>
<entry key="action" value="UsernameToken" />
<entry key="passwordType" value="PasswordText" />
</map>
</constructor-arg>
</bean>
<ref bean="authenticationInterceptor" />
<ref bean="authorizationInterceptor" />
</jaxws:inInterceptors>
<jaxws:properties>
<entry key="ws-security.validate.token" value="false" />
</jaxws:properties>
</jaxws:endpoint>
<bean id="authenticationInterceptor"
class="org.apache.cxf.interceptor.security.JAASLoginInterceptor">
<property name="contextName" value="myRealm" />
</bean>
<bean id="authorizationInterceptor"
class="org.apache.cxf.interceptor.security.SecureAnnotationsInterceptor">
<property name="securedObject" ref="securedBean"/>
</bean>
最後,在我的WebService實現我註釋的方法與@RolesAllowed。
@RolesAllowed("Role1")
public Department get(String name) throws IdMException {
return service.get(name);
}
身份驗證攔截器正在檢索用戶,對其進行身份驗證並將組檢索爲RolePrincipal實例。 然後,在授權攔截器(SecureAnnotationsInterceptor)中讀取方法配置,expectedRoles爲「Role1」,但SimpleAuthorizingInterceptor.isUserInRole方法返回false。
我還沒有發現任何例如試圖做更多或更少相同,我發現了從CXF文檔頁面http://cxf.apache.org/docs/security.html#Security-Authorization
我必須失去了一些東西重要的幾個信息,希望有人能幫助我。 在此先感謝和親切的問候。
非常感謝您! –
沒問題。請注意,有一個ServiceMix的商業克隆提供全面支持。現在,JBoss Fuse中也出現了相同的問題,但是JBoss Fuse很快就會解決這個問題。問題鏈接:https://issues.jboss.org/browse/ENTESB-1672 –