For a small but representative subset of the API the remote AVM

interface works.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3502 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Britt Park
2006-08-14 19:15:27 +00:00
parent 1df576890c
commit b42bda5b59
2 changed files with 124 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING/DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<!-- RMI Proxy bean. -->
<bean id="avmRemote" class="org.springframework.remoting.rmi.RmiProxyFactoryBean">
<property name="serviceUrl">
<value>rmi://localhost:1313/avm</value>
</property>
<property name="serviceInterface">
<value>org.alfresco.repo.avm.AVMRemote</value>
</property>
</bean>
</beans>