<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" " http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
    <bean name="testService1" class="org.codehaus.xfire.spring.ServiceBean">
        <property name="serviceBean" ref="webServiceBean"/>
        <property name="name" value="XFireTestService1"/>
        <property name="namespace" value="http://www.roche.com/drugsafety"/>
        <property name="style" value="wrapped"/>
        <property name="use" value="literal"/>
        <property name="createDefaultBindings" value="true"/>
    </bean>
    <bean name="testService2" class="org.codehaus.xfire.spring.ServiceBean">
        <property name="serviceBean" ref="webServiceBean"/>
        <property name="name" value="XFireTestService2"/>
        <property name="namespace" value="http://www.roche.com/drugsafety"/>
        <property name="style" value="wrapped"/>
        <property name="use" value="literal"/>
        <property name="createDefaultBindings" value="true"/>
        <property name="serviceFactory" value="org.codehaus.xfire.xmlbeans.XmlBeansServiceFactory"/>
    </bean>
    <bean id="webServiceBean" class="test.XFireWebService">
    </bean>
    <import resource="classpath:org/codehaus/xfire/spring/xfire.xml"/>
</beans>

