Subversion Repositories XServices

Rev

Rev 175 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 175 Rev 185
Line 1... Line 1...
1
<beans xmlns="http://www.springframework.org/schema/beans"
1
<beans xmlns="http://www.springframework.org/schema/beans"
2
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws"
2
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-
 
3
	xmlns:jaxws="http://cxf.apache.org/jaxws"
3
	xmlns:jaxrs="http://cxf.apache.org/jaxrs" xmlns:simple="http://cxf.apache.org/simple"
4
	xmlns:jaxrs="http://cxf.apache.org/jaxrs"
4
	xsi:schemaLocation="
5
	xsi:schemaLocation="
5
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
6
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
6
       http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
7
       http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
7
       http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd">
8
       http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd">
Line 8... Line 9...
8
 
9
 
9
	<import resource="classpath:META-INF/cxf/cxf.xml" />
-
 
10
	<!-- deprecated since CXF 2.4.0 -->
-
 
11
	<!-- <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" /> 
-
 
12
		<import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml" 
-
 
13
		/> -->
10
  <import resource="classpath:META-INF/cxf/cxf.xml"/>
14
	<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
11
  <import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
15
 
12
  
16
	<jaxws:endpoint id="archiveservice"
13
	<jaxws:endpoint id="archiveservice"
17
		implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl" address="/ArchiveService">
14
		implementor="net.brutex.xservices.ws.impl.ArchiveServiceImpl" address="/ArchiveService">
Line 18... Line 15...
18
	</jaxws:endpoint>
15
	</jaxws:endpoint>
Line 82... Line 79...
82
			<ref bean="FileInfoBean" />
79
			<ref bean="FileInfoBean" />
83
		</jaxrs:serviceBeans>
80
		</jaxrs:serviceBeans>
84
	</jaxrs:server>
81
	</jaxrs:server>
85
	<bean id="FileInfoBean" class="net.brutex.xservices.ws.rs.FileInfoImpl" />
82
	<bean id="FileInfoBean" class="net.brutex.xservices.ws.rs.FileInfoImpl" />
Line 86... Line 83...
86
	
83
	
87
	 
-
 
88
<jaxrs:server address="/app1"> 
-
 
89
       <jaxrs:serviceBeans>
-
 
90
          <ref bean="FileInfoBean"/>
-
 
91
       </jaxrs:serviceBeans>
-
 
92
       <jaxrs:providers>
-
 
93
          <ref bean="redirectGetFilter"/>
-
 
94
       </jaxrs:providers>
-
 
95
</jaxrs:server>
-
 
96
 
-
 
97
<bean id="redirectGetFilter" class="org.apache.cxf.rs.security.saml.sso.SamlRedirectBindingFilter">
-
 
98
      <property name="idpServiceAddress" value="https://localhost:9443/idp"/>
-
 
99
      <!-- both relative and absolute URIs are supported -->
-
 
100
      <property name="assertionConsumerServiceAddress" value="/racs/sso"/>
-
 
101
      <property name="stateProvider" ref="stateManager"/>
-
 
102
</bean>
-
 
103
 
-
 
104
 
-
 
105
<bean id="stateManager" class="org.apache.cxf.rs.security.saml.sso.state.EHCacheSPStateManager">
-
 
106
    <constructor-arg ref="cxf"/>
-
 
107
</bean>
-
 
108
	
-
 
Line 109... Line 84...
109
	
84
 
110
	
85
	
111
 
86
 
112
 
87
 
113
	<jaxrs:server id="CVSInfo" address="/cvsinfo">
88
	<jaxrs:server id="CVSInfo" address="/cvsinfo">
114
		<jaxrs:serviceBeans>
89
		<jaxrs:serviceBeans>
Line -... Line 90...
-
 
90
			<ref bean="CVSInfoBean" />
115
			<ref bean="CVSInfoBean" />
91
		</jaxrs:serviceBeans>
116
		</jaxrs:serviceBeans>
92
	</jaxrs:server>
117
	</jaxrs:server>
93
	<bean id="CVSInfoBean" class="net.brutex.xservices.ws.rs.CVSInfoImpl" />
118
	<bean id="CVSInfoBean" class="net.brutex.xservices.ws.rs.CVSInfoImpl" />
94
	
119
	
95
	<!-- 
120
	<jaxrs:server id="DIMCMInfo" address="/dimcminfo">
96
	<jaxrs:server id="DIMCMInfo" address="/dimcminfo">
121
		<jaxrs:serviceBeans>
97
		<jaxrs:serviceBeans>
Line 122... Line 98...
122
			<ref bean="DIMCMInfoBean" />
98
			<ref bean="DIMCMInfoBean" />