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"

(Basic Examples)
m
(25 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
  
The following examples are intended to help consumers get started with EclipseLink DBWS and easily use the key features.   See [http://wiki.eclipse.org/Creating_EclipseLink_Files_for_Deployment_(ELUG)#Creating_Deployment_Files_for_EclipseLink_Database_Web_Services  Creating EclipseLink DBWS Deployment files] for more details.
+
The following examples are intended to help consumers get started with EclipseLink DBWS and easily use the key features.
__TOC__
+
See the ''[http://www.eclipse.org/eclipselink/documentation/ Developing Persistence Architectures Using EclipseLink Database Web Services]'' guide for complete information.
  
 +
 +
__TOC__
  
 
== Basic Examples ==
 
== Basic Examples ==
  
* [[EclipseLink/Examples/DBWS/DBWSBasicTable| Web Service based on D/B Table]]
+
* [[EclipseLink/Examples/DBWS/DBWSBasicTable| EclipseLink DBWS Service based on Database Table]]
* [[EclipseLink/Examples/DBWS/DBWSBasicStoredProcedure| Web Service based on Stored Procedure]]
+
* [[EclipseLink/Examples/DBWS/DBWSBasicSQL| EclipseLink DBWS Service based on Results Sets from custom SQL <code>SELECT</code> statements]]
* [[EclipseLink/Examples/DBWS/DBWSBasicSQL| Web Service based on Results Sets from custom SQL 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]]
  
== Advanced Examples ==
+
== Builder Examples ==
  
* [[EclipseLink/Examples/DBWS/ExistingMappingFiles |Generating a Web Service using existing Native ORM and MOXy mappings]]
+
*[[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_Examples_DBWS]]
+
[[Category:EclipseLink/Example|DBWS Examples]]

Revision as of 19:02, 1 February 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