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/AdvancedOSGi"

(DBWS in an OSGi Environment)
Line 6: Line 6:
 
== DBWS in an OSGi Environment ==
 
== DBWS in an OSGi Environment ==
 
An Eclipselink DBWS service can be run in an OSGi environment using Javase 6's 'containerless' [http://java.sun.com/javase/6/docs/api/javax/xml/ws/Endpoint.html javax.xml.ws.Endpoint] API.
 
An Eclipselink DBWS service can be run in an OSGi environment using Javase 6's 'containerless' [http://java.sun.com/javase/6/docs/api/javax/xml/ws/Endpoint.html javax.xml.ws.Endpoint] API.
 +
 +
=== Environment Setup ===
 +
[http://www.eclipse.org/downloads/packages Download a version of the Eclipse IDE that includes the <i>Plug-in Development Environment</i> (PDE)]
 +
 +
** A number of distributions include PDE including the [http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/heliosr JavaEE], RCP, and Classic distributions.
 +
 +
* Obtain and Install Database driver--we'll used the embedded Apache Derby database in this example
 +
** Download Apache Derby (org.apache.derby) bundle from [http://download.eclipse.org/tools/orbit/downloads Orbit].
 +
** Place the org.apache.derby bundle into your ECLIPSE_HOME\dropins folder.
  
 
Starting with the most recent Eclipse build (as of 2010/08/11 version 'Helios' 3.6), create a new Plugin-in project:
 
Starting with the most recent Eclipse build (as of 2010/08/11 version 'Helios' 3.6), create a new Plugin-in project:

Revision as of 14:18, 11 August 2010


DBWS in an OSGi Environment

An Eclipselink DBWS service can be run in an OSGi environment using Javase 6's 'containerless' javax.xml.ws.Endpoint API.

Environment Setup

Download a version of the Eclipse IDE that includes the Plug-in Development Environment (PDE)

    • A number of distributions include PDE including the JavaEE, RCP, and Classic distributions.
  • Obtain and Install Database driver--we'll used the embedded Apache Derby database in this example
    • Download Apache Derby (org.apache.derby) bundle from Orbit.
    • Place the org.apache.derby bundle into your ECLIPSE_HOME\dropins folder.

Starting with the most recent Eclipse build (as of 2010/08/11 version 'Helios' 3.6), create a new Plugin-in project:

Back to the top