Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd"
- >
- <bean id="userManager" class="org.springframework.remoting.rmi.RmiProxyFactoryBean" lazy-init="true" >
- <property name="serviceUrl" value="rmi://192.168.1.1:5678/JSUserManager"/>
- <property name="serviceInterface" value="pl.garciapl.IUser"/>
- <property name="refreshStubOnConnectFailure" value="true"/>
- <property name="lookupStubOnStartup" value="false"/>
- </bean>
- </beans>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement