1,18 → 1,15 |
<beans xmlns="http://www.springframework.org/schema/beans" |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws" |
xmlns:jaxrs="http://cxf.apache.org/jaxrs" xmlns:simple="http://cxf.apache.org/simple" |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
xmlns:jaxws="http://cxf.apache.org/jaxws" |
xmlns:jaxrs="http://cxf.apache.org/jaxrs" |
xsi:schemaLocation=" |
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd |
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd |
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd |
http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd"> |
|
<import resource="classpath:META-INF/cxf/cxf.xml" /> |
<!-- deprecated since CXF 2.4.0 --> |
<!-- <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" /> |
<import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml" |
/> --> |
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" /> |
|
<import resource="classpath:META-INF/cxf/cxf.xml"/> |
<import resource="classpath:META-INF/cxf/cxf-servlet.xml"/> |
|
<jaxws:endpoint id="archiveservice" |
implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl" address="/ArchiveService"> |
</jaxws:endpoint> |
84,30 → 81,8 |
</jaxrs:server> |
<bean id="FileInfoBean" class="net.brutex.xservices.ws.rs.FileInfoImpl" /> |
|
|
<jaxrs:server address="/app1"> |
<jaxrs:serviceBeans> |
<ref bean="FileInfoBean"/> |
</jaxrs:serviceBeans> |
<jaxrs:providers> |
<ref bean="redirectGetFilter"/> |
</jaxrs:providers> |
</jaxrs:server> |
|
<bean id="redirectGetFilter" class="org.apache.cxf.rs.security.saml.sso.SamlRedirectBindingFilter"> |
<property name="idpServiceAddress" value="https://localhost:9443/idp"/> |
<!-- both relative and absolute URIs are supported --> |
<property name="assertionConsumerServiceAddress" value="/racs/sso"/> |
<property name="stateProvider" ref="stateManager"/> |
</bean> |
|
|
<bean id="stateManager" class="org.apache.cxf.rs.security.saml.sso.state.EHCacheSPStateManager"> |
<constructor-arg ref="cxf"/> |
</bean> |
|
|
|
|
|
|
<jaxrs:server id="CVSInfo" address="/cvsinfo"> |
117,6 → 92,7 |
</jaxrs:server> |
<bean id="CVSInfoBean" class="net.brutex.xservices.ws.rs.CVSInfoImpl" /> |
|
<!-- |
<jaxrs:server id="DIMCMInfo" address="/dimcminfo"> |
<jaxrs:serviceBeans> |
<ref bean="DIMCMInfoBean" /> |
123,6 → 99,6 |
</jaxrs:serviceBeans> |
</jaxrs:server> |
<bean id="DIMCMInfoBean" class="net.brutex.xservices.ws.rs.DIMCMInfoImpl" /> |
|
--> |
|
</beans> |