| At line 6 added 1 line. | 
| * [2] Configuring Appfuse - create ws servlet | 
| At line 18 changed 1 line. | 
| !!Configuring Appfuse - map servlet to be listening on "ws/*" url address | 
| !!! Configuring Appfuse - map servlet to be listening on "ws/*" url address [#2] | 
| At line 39 added 49 lines. | 
 | 
| !!! Configuring Appfuse - create ws servlet[#3] | 
| <div style="margin-left: 40px"> | 
| {{{ | 
| <?xml version="1.0" encoding="UTF-8" ?> | 
| <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> | 
 | 
| <!-- | 
|   - $Id: ws-servlet.xml,v 1.1 2004/08/01 23:03:20 benalex Exp $ | 
|   --> | 
| <beans> | 
 | 
| 	<!-- Hessian exporter for the Clinic --> | 
| 	<!-- Hessian is a slim binary HTTP remoting protocol --> | 
| 	<bean name="/Clinic-hessian" class="org.springframework.remoting.caucho.HessianServiceExporter"> | 
| 		<property name="service"><ref bean="userManager"/></property> | 
| 		<property name="serviceInterface"> | 
| 			<value>org.appfuse.service.UserManager</value> | 
| 		</property> | 
| 	</bean> | 
 | 
| 	<!-- Burlap exporter for the Clinic --> | 
| 	<!-- Burlap is a slim XML-based HTTP remoting protocol --> | 
| 	<!--bean name="/Clinic-burlap" class="org.springframework.remoting.caucho.BurlapServiceExporter"> | 
| 		<property name="service"><ref bean="clinic"/></property> | 
| 		<property name="serviceInterface"> | 
| 			<value>org.springframework.samples.petclinic.Clinic</value> | 
| 		</property> | 
| 	</bean--> | 
 | 
| 	<!-- Hessian exporter for the RemoteAuthenticationManager --> | 
| 	<bean name="/RemoteAuthenticationManager-hessian" class="org.springframework.remoting.caucho.HessianServiceExporter"> | 
| 		<property name="service"><ref bean="remoteAuthenticationManager"/></property> | 
| 		<property name="serviceInterface"> | 
| 			<value>net.sf.acegisecurity.providers.rcp.RemoteAuthenticationManager</value> | 
| 		</property> | 
| 	</bean> | 
 | 
| 	<!-- Burlap exporter for the RemoteAuthenticationManager --> | 
| 	<!--bean name="/RemoteAuthenticationManager-burlap" class="org.springframework.remoting.caucho.BurlapServiceExporter"> | 
| 		<property name="service"><ref bean="remoteAuthenticationManager"/></property> | 
| 		<property name="serviceInterface"> | 
| 			<value>net.sf.acegisecurity.providers.rcp.RemoteAuthenticationManager</value> | 
| 		</property> | 
| 	</bean--> | 
 | 
| </beans> | 
| }}} | 
| </div> |