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 "EclipseLink/UserGuide/DBWS/Overview"

(XML Schema Definition (.xsd))
m
 
(109 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<div style="float:right;border:1px solid #000000;padding:5px;max-width:500px;">__TOC__</div>
+
For the current version, see:
==EclipseLink DBWS Overview==
+
'''[http://www.eclipse.org/eclipselink/documentation/2.4/dbws/toc.htm Developing Persistence Architectures Using EclipseLink Database Web Services, Release 2.4]'''
The goal of EclipseLink DBWS is to enable simple and efficient access to relational database artifacts via a Web service, extending EclipseLink's core capabilities while leveraging existing components (ORM, OXM).
+
  
EclipseLink DBWS has two parts: a design-time tooling component and a runtime provider component that takes a service descriptor (along with related deployment artifacts) and realizes it as a JAX-WS 2.0 Web service. The runtime provider uses EclipseLink to bridge between the database and the XML SOAP Messages used by Web service clients.
+
For EclispeLink DBWS Overview, see http://www.eclipse.org/eclipselink/documentation/2.4/dbws/overview.htm
  
An EclipseLink DBWS service may be comprised of any number of '''operations''' of which there are 4 types:
+
[[Category:DBWS]]
# Insert - inserts into the database persistent entities described by an XML document.
+
# Update - updates database persistent entities described by an XML document.
+
# Delete - removes from the database persistent entities described by an XML document.
+
# Query - retrieves from the database persistent entities described by an XML document. <br>Selection criteria for Query operations can be specified by:
+
#* custom <tt>SQL</tt>
+
#* Stored Procedures
+
#* EclipseLink Named Queries (can use the complete range of EclipseLink ORM Expression Framework APIs)
+
 
+
The XML documents used by an '''operation''' conform to an XML Schema Definition (<tt>.xsd</tt> file) auto-generated by the design-time tooling. Alternatively, if no <tt>.xsd</tt> is available, a pre-defined simple XML format (SXF) is used.
+
 
+
===Concept: XML-to-Relational Mapping (XRM)===
+
EclipseLink's ORM and OXM features provides the basis for a powerful '''bridge''' between a database's relational structure(s) and XML's hierarchical structure.
+
[[Image:XRRunTime.png]]
+
 
+
===Configuration===
+
The metadata for an EclipseLink DBWS service is contained in an easy-to-read service descriptor file <b>eclipselink-dbws.xml</b>:
+
* contains <b><i>name of EclipseLink DBWS service</i></b>
+
* contains <b><i>name of sessions.xml</i></b> - if not present, then <tt><b>eclipselink-dbws-sessions.xml</b></tt> will be used
+
* operation definitions
+
* contains <b><tt>eclipselink-dbws-schema.xsd</tt></b> XML Schema Definition file
+
Example DBWS Service descriptor file
+
<source lang="xml">
+
<?xml version="1.0" encoding="UTF-8"?>
+
<dbws
+
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
  >
+
  <name>example</name>
+
  <query>
+
    <name>countEmployees
+
    <result>
+
      <type>xsd:int</type>
+
    </result>
+
    <sql><![CDATA[select count(*) from EMP]]></sql>
+
  </query>
+
</dbws>
+
</source>
+
The information required by the EclipseLink DBWS service descriptor file is kept to a minimum and omitted fields have simple defaults, allowing for both auto-generation by tools or manual editing.
+
 
+
===XML Schema Definition===
+
An EclipseLink DBWS service requires an XML Schema Definition file to specify how information returned from the database is to be shaped. The EclipseLink OXM Project handles converting information from the database to XML, giving the user access to the complete range of EclipseLink Object-to-XML mapping capabilities. If no schema is provided by the user, a pre-defined Simple XML Format (SXF) can be used.
+
<blockquote style="padding:4px;border:1px solid black;">
+
SXF uses information only available at the time of query execution to build the XML element-tag names; thus, these XML documents cannot be validated against any schema.
+
</blockquote>
+
 
+
===Auto-generation of An EclipseLink DBWS service===
+
The design-time tooling will auto-generate a DBWS service, creating the service descriptor and all required deployment artifacts.
+

Latest revision as of 08:39, 1 November 2012

For the current version, see: Developing Persistence Architectures Using EclipseLink Database Web Services, Release 2.4

For EclispeLink DBWS Overview, see http://www.eclipse.org/eclipselink/documentation/2.4/dbws/overview.htm

Back to the top