19 Mapping Data with Cross-References
This chapter provides an overview of cross references and how they are used in Service Bus services to map identifiers for like objects between external systems. It also describes how to create cross references in Service Bus projects.
This chapter includes the following sections:
For more in-depth information about cross references, see "Working with Cross References" in Developing SOA Applications with Oracle SOA Suite.
Introduction to Cross References
Cross reference tables map identifiers that represent equivalent objects across multiple applications, associating like objects created in different external applications.
For example, you can use cross references to map customer identifiers for records that were created in multiple customer management systems. Cross references are similar to domain value maps (DVMs), but cross references can be updated during runtime, allowing you to dynamically integrate values between systems. Cross reference data updated at runtime is persisted in the database.
Cross references can be used across Oracle SOA Suite components. In Service Bus, you can create cross reference tables in both JDeveloper and the Oracle Service Bus Console.
Cross Reference Database Tables
All cross reference mappings are stored in the form of tables. When you create a cross reference table in a Service Bus project in JDeveloper, you only define the metadata for the table (that is, the keys and not the values). All cross reference tables are stored in the database, by default in the XREF_DATA
table. Cross reference tables can either be custom or generic (the default). Generic tables are all stored in a single database table that is created during installation (XREF_DATA
); custom tables are each stored in individual database tables that you create. Service Bus uses the standard SOA Suite data source, jdbc/SOADataSource
, to access the database tables. You can create your own data source with the following requirements:
-
The data source must be named
jdbc/xref
, otherwise the runtime will use the default schema. -
The data source must be XA enabled.
For instructions on creating a custom database table, see "How to Create Custom Database Tables" in Developing SOA Applications with Oracle SOA Suite.
Cross Reference Functions
In the Service Bus message flow, you can reference cross reference tables from XQuery expressions and XSLT transformations using a set of XRef functions to lookup, populate, and update cross reference entries at runtime based on information in incoming messages. Use these functions to populate the values for the keys you defined when you first created the cross reference table.
You can access the XRef functions in JDeveloper from the XSLT mapper, the XQuery mapper, and the expression editors. In the Oracle Service Bus Console, the functions are available from the expression and condition editors. For information about the Service Bus XRef functions, see Cross-Reference Functions.
Managing Cross Reference Data at Runtime
Fusion Middleware Control provides features to help you manage cross reference data in the runtime. For information and instructions, see "Managing Cross References" in Administering Oracle SOA Suite and Oracle Business Process Management Suite.
Creating Cross Reference Tables in JDeveloper
You can create cross reference tables in a Service Bus project in JDeveloper, and then use them in XQuery expressions in pipelines and split-joins to map objects between external systems.
When you create a cross reference table, you only need to specify a name for the table and the names of the end systems that are sharing the data. You do not need to specify the values for each system in the design time.
Working with Cross Reference Resources in the Oracle Service Bus Console
If you are using the Oracle Service Bus Console, you can create new cross reference tables or you can upload cross reference tables that you first created in JDeveloper into a cross reference (XRef) resource.
How to Create Cross Reference (XRef) Resources in the Console
When you create a cross reference table, you only need to specify a name for the table and the names of the end systems that are sharing the data. You do not need to specify the values for each system in the design time.
Before you Begin
If you are uploading a cross reference file already created in JDeveloper, as described in Creating Cross Reference Tables in JDeveloper, make sure the file is available on your system.
To create a cross reference resource in the console:
How to Edit Cross Reference Resources in the Console
If you are using the Oracle Service Bus Console, use the following procedure to edit cross reference resources.
To edit a cross reference resource in the console:
-
In the Project Navigator, expand the project and folders containing the cross reference to edit.
-
Right-click the cross reference name, and select Open.
-
To modify the source file, do the following:
-
Click Edit Source in the toolbar.
The Edit Source dialog appears.
-
To browse to and select a new cross reference file to upload, click Browse.
-
To modify the contents of the file, update the code directly in the Contents section of the dialog.
-
Click Save.
-
-
To add end systems to the cross reference table, click Add above the End System table and enter the name of the system in the new row that appears.
-
In the Cross Reference (XREF) Definition Editor toolbar, click Save.
-
To end the session and deploy the configuration to the runtime, click Activate.
How to Create a Custom Database Table in the Console
As mentioned previously, all the runtime data is stored in the XREF_DATA
table by default. If you want to create custom database tables, then perform the following steps.
Note:
When you create a cross reference table in JDeveloper, you can run the custom database creation script directly from the Cross Reference Editor. If you use the Oracle Service Bus Console, you create the custom database table manually. For more information, see "How to Create Custom Database Tables" in Developing SOA Applications with Oracle SOA Suite.
To create a custom database table in the console:
Deleting a Cross Reference Resource
If any resources reference the resource you want to delete, remove those references before deleting the resource.
You can delete the resource even if it is referenced by other resources, though this might result in conflicts due to unresolved references to the deleted resource.
How to Delete a Cross Reference Resource
Before deleting a cross reference, check for references and dependencies. In the Oracle Service Bus Console, open the cross reference resource in the Cross Reference (XREF) Definition Editor and click the Tools icon in the upper right, and then select References to find out whether there are any references. In JDeveloper, right-click the XQuery resource and select Explore Dependencies.
To delete a cross reference resource:
- In the Application Navigator or Project Navigator, expand the project and folders containing the resource to delete.
- Right-click the name of the resource, and select Delete.
- If you are using JDeveloper, a confirmation dialog displays the number of references for the transformation. Click Show Usages to view information about the references, and then click Yes to confirm that you want to delete the resource.
- If you are using the Oracle Service Bus Console, click Activate to end the session and deploy the configuration to the runtime.
Populating Cross Reference Tables in Oracle Service Bus
Before using a cross reference to look up a particular value, you must populate it at runtime. Use the cross reference XPath functions provided with Service Bus to populate the cross-reference tables.
The XPath functions let you populate a cross reference column, perform lookups, and delete a column value. These XPath functions can be used in the Expression Builder to create an expression or in the XSLT Mapper to create transformations. You can access the Expression Builder dialog through several pipeline activities and split-join operations.
For information about the XRef functions provided with Service Bus, see Cross-Reference Functions.
For information, examples, and instructions on managing cross reference data in JDeveloper, see the following topics in Developing SOA Applications with Oracle SOA Suite. The information in these topics is also helpful when working in the Oracle Service Bus Console.