2012-10-12 12:21:24 +07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2012-12-13 12:44:52 +07:00
|
|
|
<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:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd" >
|
2012-10-12 12:21:24 +07:00
|
|
|
<!--beans xmlns="http://www.springframework.org/schema/beans"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
|
|
|
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"-->
|
|
|
|
|
|
|
|
|
2012-12-17 17:18:00 +07:00
|
|
|
<jaxws:endpoint id="ModelADService" address="/ModelADService" implementor="org.idempiere.adinterface.ModelADServiceImpl">
|
2012-10-12 12:21:24 +07:00
|
|
|
<jaxws:dataBinding>
|
|
|
|
<bean class="org.apache.cxf.xmlbeans.XmlBeansDataBinding" />
|
|
|
|
</jaxws:dataBinding>
|
|
|
|
</jaxws:endpoint>
|
2012-12-13 12:44:52 +07:00
|
|
|
|
2012-12-19 23:36:49 +07:00
|
|
|
<jaxws:endpoint id="compositeInterface" address="/compositeInterface" implementor="com.trekglobal.ws.CompositeServiceImpl" >
|
2012-10-12 12:21:24 +07:00
|
|
|
<jaxws:dataBinding>
|
2012-12-13 12:44:52 +07:00
|
|
|
<bean class="org.apache.cxf.xmlbeans.XmlBeansDataBinding" >
|
|
|
|
</bean>
|
2012-10-12 12:21:24 +07:00
|
|
|
</jaxws:dataBinding>
|
|
|
|
</jaxws:endpoint>
|
|
|
|
|
|
|
|
</beans>
|
2012-12-17 17:18:00 +07:00
|
|
|
|