Advertisement
Guest User

GarciaPL

a guest
Nov 22nd, 2014
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.71 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd"
  5.        >
  6.  
  7.     <bean id="userManager" class="org.springframework.remoting.rmi.RmiProxyFactoryBean" lazy-init="true" >
  8.         <property name="serviceUrl" value="rmi://192.168.1.1:5678/JSUserManager"/>
  9.         <property name="serviceInterface" value="pl.garciapl.IUser"/>
  10.         <property name="refreshStubOnConnectFailure" value="true"/>
  11.         <property name="lookupStubOnStartup" value="false"/>
  12.     </bean>
  13.  
  14. </beans>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement