Hello,
I need to expose a service that use class RmiProxyFactoryBean, but
blueprint container can't start cause it doesn't find implementation
of my interface.
here the configuration.
<bean id="myManagerRMI"
class="org.springframework.remoting.rmi.RmiProxyFactoryBean">
<property name="serviceUrl"
value="${ipaddress}/myManagerRmi" />
<property name="serviceInterface" value="myInterface" />
<property name="cacheStub" value="true" />
<property name="lookupStubOnStartup" value="false" />
<property name="refreshStubOnConnectFailure" value="true" />
</bean>
<service ref="myManagerRMI" interface="myInterface"
ranking="1" />
Is possible to use spring proxy in blueprint ?
The same configuration in spring osgi works.
Could you tell me please where what is wrong in my configuration
Thanks for help
--Filippo