12345678910111213141516171819202122232425262728 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
- <!--
- - Contacts web application
- - $Id$
- -->
- <beans>
- <!-- Hessian exporter for the ContactManager -->
- <!-- Hessian is a slim binary HTTP remoting protocol -->
- <bean name="/ContactManager-hessian" class="org.springframework.remoting.caucho.HessianServiceExporter">
- <property name="service"><ref bean="contactManager"/></property>
- <property name="serviceInterface">
- <value>sample.contact.ContactManager</value>
- </property>
- </bean>
- <!-- Burlap exporter for the ContactManager -->
- <!-- Burlap is a slim XML-based HTTP remoting protocol -->
- <bean name="/ContactManager-burlap" class="org.springframework.remoting.caucho.BurlapServiceExporter">
- <property name="service"><ref bean="contactManager"/></property>
- <property name="serviceInterface">
- <value>sample.contact.ContactManager</value>
- </property>
- </bean>
- </beans>
|