Project

General

Profile

Download (1.07 KB) Statistics
| Branch: | Tag: | Revision:
96454bcd Sylvain L. Sauvage
<?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:jaxws="http://cxf.apache.org/jaxws"
xmlns:cxf="http://cxf.apache.org/core"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/core
http://cxf.apache.org/schemas/core.xsd
http://cxf.apache.org/jaxws
http://cxf.apache.org/schemas/jaxws.xsd">

<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml"/>
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
8fd1d584 Rémy Ménard
96454bcd Sylvain L. Sauvage
<bean id="SigMaService" class="fr.unicaen.iota.sigma.service.SigMaService">
</bean>
8fd1d584 Rémy Ménard
96454bcd Sylvain L. Sauvage
<jaxws:endpoint id="SigaAEndpoint"
serviceName="sigser:SigMaService"
implementor="#SigMaService"
address="/"
8fd1d584 Rémy Ménard
xmlns:sigser="urn:unicaen:iota:sigma:wsdl" />

bf9c3717 Rémy Ménard
</beans>