Adds the barely necesaries for post deployment actions for alfresco->alfresco.

Remoted Actions service.
Added getRomoteActionService call to DeploymentService.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6236 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Britt Park
2007-07-12 23:15:14 +00:00
parent 7a575c5518
commit 82841201e2
8 changed files with 798 additions and 3 deletions

View File

@@ -164,4 +164,30 @@
<value>${avm.remote.port}</value>
</property>
</bean>
<!-- Remoting the ActionService -->
<bean id="actionServiceTransport" class="org.alfresco.repo.action.ActionServiceTransportImpl">
<property name="actionService">
<ref bean="ActionService"/>
</property>
<property name="authenticationService">
<ref bean="AuthenticationService"/>
</property>
</bean>
<!-- The RMI export of the ActionService Transport -->
<bean id="actionServiceTransportRMI" class="org.springframework.remoting.rmi.RmiServiceExporter">
<property name="service">
<ref bean="actionServiceTransport"/>
</property>
<property name="serviceInterface">
<value>org.alfresco.service.cmr.action.ActionServiceTransport</value>
</property>
<property name="serviceName">
<value>action</value>
</property>
<property name="registryPort">
<value>${avm.remote.port}</value>
</property>
</bean>
</beans>