瀏覽代碼

Commented out hessian and burlap remoting beans to avoid missing class exceptions on startup

Luke Taylor 16 年之前
父節點
當前提交
d6ee9a9a93
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. 4 2
      samples/contacts/src/main/webapp/WEB-INF/remoting-servlet.xml

+ 4 - 2
samples/contacts/src/main/webapp/WEB-INF/remoting-servlet.xml

@@ -33,16 +33,18 @@
 
 	<!-- 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="contactManager"/>
 		<property name="serviceInterface" value="sample.contact.ContactManager"/>
 	</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="contactManager"/>
 		<property name="serviceInterface" value="sample.contact.ContactManager"/>
 	</bean>
-
+-->
 </beans>