Remove less commonly used protocols.

This commit is contained in:
Ben Alex 2005-05-18 03:01:40 +00:00
parent fe15b011bb
commit 71b8f3e515

View File

@ -27,10 +27,9 @@
<ref local="remoteInvocationFactory"/> <ref local="remoteInvocationFactory"/>
</property> </property>
</bean> </bean>
-->
<!-- Automatically propagates ContextHolder contents when using the RMI proxy -->
<bean id="remoteInvocationFactory" class="net.sf.acegisecurity.ui.rmi.ContextPropagatingRemoteInvocationFactory"/> <bean id="remoteInvocationFactory" class="net.sf.acegisecurity.ui.rmi.ContextPropagatingRemoteInvocationFactory"/>
-->
<!-- Proxy for the HTTP-invoker-exported ContactManager --> <!-- Proxy for the HTTP-invoker-exported ContactManager -->
<!-- Spring's HTTP invoker uses Java serialization via HTTP --> <!-- Spring's HTTP invoker uses Java serialization via HTTP -->
@ -50,8 +49,7 @@
and credentials to a HTTP invoker BASIC authentication header --> and credentials to a HTTP invoker BASIC authentication header -->
<bean id="httpInvokerRequestExecutor" class="net.sf.acegisecurity.context.httpinvoker.AuthenticationSimpleHttpInvokerRequestExecutor"/> <bean id="httpInvokerRequestExecutor" class="net.sf.acegisecurity.context.httpinvoker.AuthenticationSimpleHttpInvokerRequestExecutor"/>
<!-- Proxy for the Hessian-exported ContactManager --> <!-- Proxy for the Hessian-exported ContactManager
<!-- Hessian is a slim binary HTTP remoting protocol -->
<bean id="hessianProxy" class="org.springframework.remoting.caucho.HessianProxyFactoryBean"> <bean id="hessianProxy" class="org.springframework.remoting.caucho.HessianProxyFactoryBean">
<property name="serviceInterface"> <property name="serviceInterface">
<value>sample.contact.ContactManager</value> <value>sample.contact.ContactManager</value>
@ -60,9 +58,9 @@
<value>http://${serverName}:${httpPort}${contextPath}/remoting/ContactManager-hessian</value> <value>http://${serverName}:${httpPort}${contextPath}/remoting/ContactManager-hessian</value>
</property> </property>
</bean> </bean>
-->
<!-- Proxy for the Burlap-exported ContactManager -->
<!-- Burlap is a slim XML-based HTTP remoting protocol --> <!-- Proxy for the Burlap-exported ContactManager
<bean id="burlapProxy" class="org.springframework.remoting.caucho.BurlapProxyFactoryBean"> <bean id="burlapProxy" class="org.springframework.remoting.caucho.BurlapProxyFactoryBean">
<property name="serviceInterface"> <property name="serviceInterface">
<value>sample.contact.ContactManager</value> <value>sample.contact.ContactManager</value>
@ -71,5 +69,6 @@
<value>http://${serverName}:${httpPort}${contextPath}/remoting/ContactManager-burlap</value> <value>http://${serverName}:${httpPort}${contextPath}/remoting/ContactManager-burlap</value>
</property> </property>
</bean> </bean>
-->
</beans> </beans>