Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Creating an EIS Project (ELUG)"

m
m (How to Create an EIS Project with Indexed or Mapped Records Using Java)
Line 54: Line 54:
  
 
[[Category: EclipseLink User's Guide]]
 
[[Category: EclipseLink User's Guide]]
[[Category: Draft]]
+
[[Category: Release 1]]
 
[[Category: Task]]
 
[[Category: Task]]
 
[[Category: EIS]]
 
[[Category: EIS]]

Revision as of 08:02, 20 August 2008

This section describes the various components that you must configure in order to create an EIS project.

For information on how to configure EIS projects, see Configuring an EIS Project.

You can create a project using the Workbench or Java code.

We recommend using the Workbench to create projects and generate deployment XML or Java source versions of the project for use at run time. For more information on how to create a project using Workbench, see How to Create a Project Using the Workbench. For information on how to create a project using Java, see How to Create a Project Using Java.

For more information, see Introduction to EIS Projects.

For an EIS project that uses a record type other than XML, you must use Java code. For more information, see the following:


Creating an EIS Project with XML Records

Workbench provides complete support for creating EIS projects that map Java objects to EIS XML records.

Using Workbench, you can create an EIS project for transactional persistence of Java objects to a non-relational data source accessed using a JCA adapter and EIS XML records.

The EclipseLink runtime performs XML data conversions based on one or more XML schemas. In an EIS project, Workbench does not directly reference schemas in the deployment XML, but instead exports mappings configured in accordance to specific schemas.

EIS queries use XMLInteraction. For more information, see Using EIS Interactions.


How to Create an EIS Project with XML Records Using Workbench

Refer to How to Create a Project Using the Workbench for this information.


Creating an EIS Project with Indexed or Mapped Records

Workbench does not currently support non-XML EIS projects. You must create such an EIS project in Java.

Using Java, you can create an EIS project for transactional persistence of Java objects to a nonrelational data source accessed using a JCA adapter and any supported EIS record type including indexed, mapped, or XML records.

If you use XML records, the EclipseLink runtime performs XML data conversion based on one or more XML schemas. When you create an EIS project in Java, you configure mappings with respect to these schemas, but the EclipseLink runtime does not directly reference them.

You can base queries on any supported EIS interaction: IndexedInteraction, MappedInteraction (including QueryStringInteraction), or XMLInteraction (including XQueryInteraction). For more information, see Using EIS Interactions.


How to Create an EIS Project with Indexed or Mapped Records Using Java

Refer to How to Create a Project Using Java for this information.




Copyright Statement

Back to the top