Space: Apache Tuscany Docs 2.x 
(http://cwiki.apache.org/confluence/display/TUSCANYxDOCx2x)
Page: SCA Java binding.rmi 
(http://cwiki.apache.org/confluence/display/TUSCANYxDOCx2x/SCA+Java+binding.rmi)

Added by Luciano Resende:
---------------------------------------------------------------------

h3. <binding.rmi>

Tuscany supports [Remote Method Invocation 
(RMI)|http://java.sun.com/javase/technologies/core/basic/rmi/index.jsp] as a 
protocol for use with SCA services and references by using the <binding.rmi> 
SCDL extension. 

The RMI binding enables SCA components to use or be used by any other 
application which uses the standard Java RMI protocol. One use of this is to 
easily integrate the Tuscany runtime with existing Java applications which use 
RMI.

This RMI binding SCDL has the following format:

{code}
   <binding.rmi host="" port="" serviceName=""/>
{code}




h4. Some examples:

This example composite shows how to make an SCA component available as an RMI 
service:

{code}
<composite xmlns="http://www.osoa.org/xmlns/sca/1.0";
           xmlns:rmi="http://tuscany.apache.org/xmlns/binding/rmi/1.0-SNAPSHOT";
           name="HelloWorldRmiComposite">

   <service name="HelloWorldRmiService" promote="HelloWorldServiceComponent">
      <interface.java interface="helloworld.HelloWorldService"/>
      <binding.rmi host="localhost" port="8099" 
serviceName="HelloWorldRemoteService"   />
      <reference 
target="HelloWorldServiceComponent">HelloWorldServiceComponent</reference>
   </service>
      
   <component name="HelloWorldServiceComponent">
      <implementation.java class="helloworld.HelloWorldImpl"/>
   </component>   
  
</composite>
{code}

Change your notification preferences: 
http://cwiki.apache.org/confluence/users/viewnotifications.action

Reply via email to