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/EclipseLink DBWS Service Descriptor File (ELUG)"

(Graphical View of the EclipseLink DBWS Service Descriptor Schema eclipselink-dbws_1.2.xsd)
m (Replacing page with 'For EclipseLink DBWS documentation,including JAX-WS and JAX-RS, see http://www.eclipse.org/eclipselink/dbws.php Category: EclipseLink User's Guide [[Category: Release 1.1]...')
 
Line 1: Line 1:
__NOTOC__
+
For EclipseLink DBWS documentation,including JAX-WS and JAX-RS, see http://www.eclipse.org/eclipselink/dbws.php
==EclipseLink DBWS Service Descriptor File==
+
<onlyinclude>
+
The metadata for an EclipseLink DBWS service is contained in the <tt>eclipselink-dbws.xml</tt> service descriptor file.
+
The <tt>eclipselink-dbws.xml</tt>'s XML schema definition is represented by the <tt>eclipselink-dbws_1.0.xsd</tt> file. It is located in the
+
<tt><ECLIPSELINK_HOME>/xsds</tt> directory. <br/>
+
 
+
{|class="RuleFormalWideMax" dir="ltr" title="<tt><b>eclipselink-dbws.xml</tt> File Elements</b>" width="100%" border="1" frame="border" rules="all" cellpadding="3" frame="border" rules="all"
+
|- align="left" valign="top"
+
|+ <b><code>eclipselink-dbws.xml</code> File Elements</b>
+
! id="r1c1-t2" align="left" valign="bottom" | '''Element'''
+
! id="r1c2-t2" align="left" valign="bottom" | '''Description'''
+
! id="r1c1-t2" align="left" valign="bottom" | '''Required'''
+
! id="r1c2-t2" align="left" valign="bottom" | '''Default'''
+
|- align="left" valign="top"
+
| align="left" |
+
<code>name</code>
+
|
+
The name of the EclipseLink DBWS service.
+
|
+
Yes - set by the <code>DBWSBuilder</code> property <code>projectName</code>.<br/>For more information, see [[EclipseLink/UserGuide/Creating Deployment Files for EclipseLink Database Web Services (ELUG)#DBWSBuilder|DBWSBuilder]] and its [[EclipseLink/UserGuide/DBWS/Overview/EclipseLink_DBWSBuilder_File_(ELUG)|builder xml file]].
+
|
+
None
+
|-
+
|
+
<code>sessions-file</code>
+
|
+
The name of EclipseLink <code>sessions.xml</code> file to be used.
+
|
+
No
+
|
+
If not present, then <tt>eclipselink-dbws-sessions.xml</tt> file will be used.
+
|-
+
|
+
Any of the following four operation elements:
+
* <code>insert</code>
+
* <code>update</code>
+
* <code>delete</code>
+
* <code>query</code>
+
|
+
One or more service operations.
+
|
+
At least one service operation.
+
|
+
None
+
|}
+
</onlyinclude>
+
 
+
 
+
===Graphical View of the EclipseLink DBWS Service Descriptor Schema eclipselink-dbws_1.0.xsd===
+
 
+
[[Image:dbws_1_0.png]]
+
----
+
''[[EclipseLink User's Guide Copyright Statement|Copyright Statement]]''
+
 
+
  
 
[[Category: EclipseLink User's Guide]]
 
[[Category: EclipseLink User's Guide]]
 
[[Category: Release 1.1]]
 
[[Category: Release 1.1]]
 
[[Category: DBWS]]
 
[[Category: DBWS]]

Latest revision as of 08:51, 1 November 2012

For EclipseLink DBWS documentation,including JAX-WS and JAX-RS, see http://www.eclipse.org/eclipselink/dbws.php

Back to the top