Srs,
Estou testando o spring remoting e esta OK mas gostaria de saber como definir/publicar mais de um servico
<bean class="org.springframework.remoting.rmi.RmiServiceExporter">
<property name="service" ref="genericService"/>
<property name="serviceName" value="GenericService"/>
<property name="serviceInterface"
value="mypackage.model.services.IGenericService"/>
</bean>
<bean id="genericServiceProxy" class="org.springframework.remoting.rmi.RmiProxyFactoryBean">
<property name="serviceUrl"
value="rmi://localhost/GenericService" />
<property name="serviceInterface"
value="mypackagemodel.services.IGenericService" />
</bean>
Com o codigo acima eu exporto um servico… e para exportar mais ?