ws_client.xml
2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:jpa="http://www.springframework.org/schema/data/jpa"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/data/jpa
http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd">
<!-- CC 服务-->
<bean id="cCSoapService" class="com.plateno.www.service.CCSoapService">
<property name="V4_ACCOUNT" value="${V4_ACCOUNT}"></property>
<property name="V4_PASSWORD" value="${V4_PASSWORD}"></property>
<property name="CC_SERVICR" value="${CC_SERVICR}"></property>
<property name="MEMBER_POINT_appID" value="${MEMBER_POINT_appID}"></property>
<property name="MEMBER_POINT_systemID" value="${MEMBER_POINT_systemID}"></property>
</bean>
<!-- 会员接口 -->
<bean id="memberSoapService" class="com.plateno.www.service.MemberSoapService">
<property name="nPartnerID" value="${nPartnerID}"></property>
<property name="MEMBER_SERVICE" value="${MEMBER_SERVICE}"></property>
<property name="RegSource" value="${RegSource}"></property>
<property name="SID" value="${SID}"></property>
<property name="ADDRESS" value="${ADDRESS}"></property>
<property name="MEMBER_SERVICE_KEY" value="${MEMBER_SERVICE_KEY}"></property>
</bean>
<!-- 积分接口 -->
<bean id="memberPointSoapService" class="com.plateno.www.service.MemberPointSoapService">
<property name="nPartnerID" value="${nPartnerID}"></property>
<!--
<property name="key" value="${key}"></property>
<property name="MEMBER_POINT_SERVICE" value="${MEMBER_POINT_SERVICE}"></property> -->
</bean>
</beans>