Dynamic Ports
Functionality
This component is aimed at demonstrating the dynamic generation of ports based on the configuration made. By default, there are no input and output ports for this sample component. In the component's custom property sheet (CPS), a property called "Number of Ports" can be seen; input and output ports will be generated based on the value of this property.
Default Behavior
By default, the component sends the message received on a particular input port to all the output ports.
Changes required to use a different CPS
Add the following lines in etc\ServiceDescriptor.xml under "execution" element after "separate-process" element,
Add
CODE<cps> <launcher>com.fiorano.edbc.dynamicports.model.DynamicPortsPM</launcher> </cps>
Under "servicerefs" element, make the following service reference changes:
Add
CODE<serviceref guid="TifosiUIFramework" version="4.0" /> <serviceref guid="BCCommon" version="4.0" />
Remove
CODE<serviceref guid="FioranoJavaRTL" version="4.0" />
Add 'cpsClass' and 'cpsMandatory' (if the configuration is mandatory) attributes in service-export ant task (present in the target "deploy")
in common.xml as shown below:CODE<?xml version="1.0" encoding="UTF-8"?> <service-export destfile="export.zip" servicefile="etc/ServiceDescriptor.xml" resourcesfile="etc/resources.properties" executionClass="com.fiorano.edbc.dynamicports.DynamicPorts" cpsClass="com.fiorano.edbc.dynamicports.model.DynamicPortsPM" cpsMandatory="true" inMemoryClass="com.fiorano.edbc.dynamicports.DynamicPorts" defaultLogModule="com.fiorano.edbc.dynamicports.dynamicPorts"> <fileset dir="${deploy.dir}"> <include name="${jar.path}" /> </fileset> </service-export>
Add class DynamicPortsPM.
Provide default constructor and a parameterized constructor (taking "CPSHelper" as the parameter)
Add the following methods:
private void generateInports(int val)
private void generateOutports(int val)
Also follow steps 2-4 in ..\PortProperties\readme.txt
Service Dependencies Used
The Service Dependencies used by this sample can be seen in the "servicerefs" element present in the "deployment" in the service descriptor file (etc/ServiceDescriptor.xml).
- To check the functionality of this component, it should be registered with the server.
- The steps to register the samples is specified in the Sample Templates section.