Advertisement
Guest User

GarciaPL

a guest
Nov 22nd, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 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.       default-lazy-init="true" default-autowire="byType">
  6.  
  7.     <bean id="userManagerRMI" class="org.springframework.remoting.rmi.RmiServiceExporter" autowire="no">
  8.         <property name="serviceName" value="JSUserManager"/>
  9.         <property name="serviceInterface" value="pl.garciapl.IUser"/>
  10.         <property name="service" ref="userManager"/>
  11.         <property name="registryPort" value="5678"/>
  12.     </bean>
  13. </beans>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement