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/Examples/DBWS"

(New page: __NOTOC__ The following examples are intended to help consumers get started with EclipseLink DBWS and easily use the key features. == DBWS Basics ==)
 
(Basic Examples)
 
(33 intermediate revisions by 6 users not shown)
Line 2: Line 2:
  
 
The following examples are intended to help consumers get started with EclipseLink DBWS and easily use the key features.
 
The following examples are intended to help consumers get started with EclipseLink DBWS and easily use the key features.
 +
See the ''[http://www.eclipse.org/eclipselink/documentation/ Developing Persistence Architectures Using EclipseLink Database Web Services]'' guide for complete information.
  
== DBWS Basics ==
+
 
 +
__TOC__
 +
 
 +
== Basic Examples ==
 +
 
 +
* [[EclipseLink/Examples/DBWS/DBWSBasicTable| EclipseLink DBWS Service based on Database Table]]
 +
* [[EclipseLink/Examples/DBWS/DBWSBasicSQL| EclipseLink DBWS Service based on Results Sets from custom SQL <code>SELECT</code> statements]]
 +
* [[EclipseLink/Examples/DBWS/DBWSBasicAutoGenSchema| EclipseLink DBWS Service based on schema-formatted Results from custom SQL <code>SELECT</code> statements]]
 +
* [[EclipseLink/Examples/DBWS/DBWSBasicStoredProcedure| EclipseLink DBWS Service based on Stored Procedure]]
 +
* [[EclipseLink/Examples/DBWS/DBWSComplexArgStoredProcedure| EclipseLink DBWS Service based on Stored Procedure with complex PL/SQL arguments]]
 +
* [[EclipseLink/Examples/DBWS/DBWSBasicStoredFunction| EclipseLink DBWS Service based on Stored Function]]
 +
* [[EclipseLink/Examples/DBWS/DBWSComplexArgStoredFunction| EclipseLink DBWS Service based on Stored Function with complex PL/SQL arguments]]
 +
* [[EclipseLink/Examples/DBWS/DBWSOverloadStoredProcedure| EclipseLink DBWS Service based on overloaded PL/SQL Stored Procedure]]
 +
* [[EclipseLink/Examples/DBWS/EndToEndPLSQLRecord| End to End Example of a DBWS Service based on a PL/SQL Stored Function that returns a PL/SQL Record]]
 +
 
 +
== Builder Examples ==
 +
 
 +
*[[EclipseLink/Examples/DBWS/DBWSBuilder using ANT | DBWSBuilder using ANT and javac]]
 +
 
 +
== Intermediate Examples ==
 +
 
 +
* [[EclipseLink/Examples/DBWS/DBWSIntermediateAttribute|Change an &lt;element-tag&gt; to an "attribute"]]
 +
* [[EclipseLink/Examples/DBWS/DBWSIntermediateIgnoreColumn|Skip a column so it does not become an &lt;element-tag&gt;]]
 +
* [[EclipseLink/Examples/DBWS/DBWSIntermediateCustomizer|Use EclipseLink Customizer]]
 +
 
 +
== Advanced Examples ==
 +
* [[EclipseLink/Examples/DBWS/ExistingMappingFiles|EclipseLink DBWS Service based upon existing ORM and OXM Projects]]
 +
* [[EclipseLink/Examples/DBWS/AdvancedJavase6Containerless|EclipseLink DBWS Service deployed as a JavaSE 6 'containerless' EndPoint]]
 +
* [[EclipseLink/Examples/DBWS/AdvancedOSGi|EclipseLink DBWS Service deployed in an OSGi (Equinox) environment]]
 +
 
 +
[[Category:EclipseLink/Example|DBWS Examples]]

Latest revision as of 14:16, 20 June 2013


The following examples are intended to help consumers get started with EclipseLink DBWS and easily use the key features. See the Developing Persistence Architectures Using EclipseLink Database Web Services guide for complete information.


Basic Examples

Builder Examples

Intermediate Examples

Advanced Examples

Back to the top