21.2 Outbound RMI

To send messages from a channel over RMI, simply define an RmiOutboundGateway. This gateway will use Spring's RmiProxyFactoryBean internally to create a proxy for a remote gateway. Note that to invoke a remote interface that doesn't use Spring Integration you should use a service activator in combination with Spring's RmiProxyFactoryBean.

To configure the outbound gateway write a bean definition like this:

	<bean id="rmiOutGateway" class=org.spf.integration.rmi.RmiOutboundGateway>
		<constructor-arg value="rmi://host"/>
		<property name="replyChannel" value="replies"/>
	</bean>