<beans>
<bean id= "webAnnotations" class="org.codehaus.xfire.annotations.jsr181.Jsr181WebAnnotations"/>
<bean id="handlerMapping" class="org.codehaus.xfire.spring.remoting.Jsr181HandlerMapping">
<property name="typeMappingRegistry" >
<ref bean="xfire.typeMappingRegistry"/>
</property>
<property name="xfire">
<ref bean="xfire"/>
</property>
<property name="webAnnotations">
<ref bean="webAnnotations" />
</property>
</bean>
<bean id="annotatedEcho" class="org.codehaus.xfire.spring.AnnotatedEchoImpl"/>
<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping ">
<property name="urlMap">
<map>
<entry key= "/">
<ref bean="handlerMapping"/>
</entry>
</map>
</property>
</bean>
</beans>
