Contents
This topic describes how to run the TIBCO ActiveSpaces® operator sample application, which illustrates how to use the operators with an ActivesSpaces Metaspace. For more information on this operator, see Using the TIBCO ActiveSpaces Operators.
There is a separate sample to show how to use the deprecated see Legacy TIBCO ActiveSpaces operator. If you are developing a new project, use the operators described in this sample.
This sample includes a number of ActiveSpaces operators, which by default connect to
an ActiveSpaces Metaspace named sbms, which is assumed
to already be running, and a Space called sbspace. Once
connected, you can use the sample to send and receive tuples from sbspace using the various ActiveSpaces Operators.
This sample has the following files:
-
The sample EventFlow application,
activespaces.sbapp. -
A corresponding
sbd.sbconf, which is used by the StreamBase Server to correctly configure the Java environment to locate the ActiveSpaces libraries. -
A text file named
asAdminCLIScript.txtwhich can be used as an input to the ActiveSpaces Admin CommandLine Interface utility to create the required Metaspace as well as a Space with the required schema. -
The sample also contains an EventFlow application to illustrate the legacy ActiveSpaces operator,
activespaceslegacy.sbapp.
The Studio project for this sample contains files for the current and legacy versions of the ActiveSpaces operators.
The steps to run this sample in Studio are as follows:
-
Before running you must configure the project to locate and load the ActiveSpaces libraries. In the Package Explorer, right-click on the top-level node of your project and select . On the Libraries tab of the dialog box that appears, if there is no entry for
as-common.jarin the list, click the button. This will bring up file browser; navigate to your ActiveSpaces install's lib directory, selectas-common.jarand click . Back in the Libraries tab, an entry will have been added foras-common.jar. -
Expand the
as-common.jarnode, select Native Library Location and click the button. Enter the correct location of the ActiveSpaceslibsubdirectory and click , then click to dismiss the properties dialog. -
By default, the sample is configured to run both the StreamBase application and the second ActiveSpaces node locally (using the loopback 127.0.0.1 IP address). If you wish to run the nodes on separate machines you will have to edit
asAdminCLIScript.txtandsbd.sbconfto reflect the actual IP addresses involved. -
Make sure there is a Metaspace and Space currently up and running on the machine to which you wish to connect. The sample includes a configuration file called
asAdminCLIScript.txtwhich can be used to start such a Metaspace and correctly-defined Space on your machine using the following command, run from thedirectory:$AS_HOME/libjava -jar as-admin.jar -i
<path_to_sample_project>/asAdminCLIScript.txt -
In the Package Explorer, double-click to open the
activespaces.sbappapplication. -
Make sure the application is the currently active tab in the EventFlow editor, then click the
Run button. This opens the SB
Test/Debug perspective and starts the application.
-
In the Manual Input view, select the
InBeginTxinput stream. -
Enter the following values:
-
passthrough.id:ID1
Click (which will trigger the tuple to be sent to an ActiveSpaces Begin Transaction Operator and cause a transaction to be initiated during which two tuples are sent to the Space as a single transaction), and observe that the
OutCommitTxoutput stream received a tuple with a matchingIDvalue, indicated that the transaction has been committed to the space. -
-
Still in the Manual Input view, select the
InBrowsestream and click (leaving all fields null). This will cause the Space to list all its tuples (theasTuplefield contains the current value of each requested tuple) on theOutBrowsestream, terminating the list with a punctuation tuple with itsasTuplefield set to null. -
You may similarly add tuples to the Space using the InPut stream, remove tuples using the InTake stream, etc. Of note is the InControl stream which allows you to send control commands to, for example, disconnect from the Metaspace.
-
When done, press F9 or click the
Stop Running Application button.
In StreamBase Studio, import this sample with the following steps:
-
From the top-level menu, select → .
-
Type
activeto narrow the list of options. -
Select TIBCO ActiveSpaces Operators from the Extending StreamBase category.
-
Click OK.
StreamBase Studio creates a single project for the ActiveSpaces Operator samples in your current Studio workspace.
When you load the sample into StreamBase Studio, Studio copies the sample project's files to your Studio workspace, which is normally part of your home directory, with full access rights.
Important
Load this sample in StreamBase Studio, and thereafter use the Studio workspace copy of the sample to run and test it, even when running from the command prompt.
Using the workspace copy of the sample avoids the permission problems that can occur when trying to work with the initially installed location of the sample. The default workspace location for this sample is:
studio-workspace/sample_activespaces
See Default Installation
Directories for the location of studio-workspace on your system.
In the default TIBCO StreamBase installation, this sample's files are initially installed in:
streambase-install-dir/sample/activespaces
See Default Installation
Directories for the location of streambase-install-dir on your system. This location
may require administrator privileges for write access, depending on your platform.
