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/Design time"

m (Replacing page with 'For the current version, see: '''[http://www.eclipse.org/eclipselink/documentation/2.4/dbws/toc.htm Developing Persistence Architectures Using EclipseLink Database Web Services...')
 
(33 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<css>
+
For the current version, see:
  .source-sql {padding:1em;border:1px solid black; background-color: white;}
+
'''[http://www.eclipse.org/eclipselink/documentation/2.4/dbws/toc.htm Developing Persistence Architectures Using EclipseLink Database Web Services, Release 2.4]'''
  .source-java5 {padding:1em;border:1px solid black; background-color: white;}
+
  .source-xml {padding:1em;border:1px solid black; background-color: white;}
+
  .source-text {padding:1em;border:1px solid black; background-color: white;}
+
</css>
+
{{EclipseLink_UserGuide
+
|info=y
+
|toc=n
+
|eclipselink=y
+
|eclipselinktype=DBWS
+
}}
+
  
== Creating EclipseLink DBWS Services using the DBWSBuilder utility ==
 
The EclipseLink DBWS design-time utility <tt><b>DBWSBuilder</b></tt> is a Java application that processes an [[EclipseLink dbws-builder.xml File (ELUG)#eclipselink-dbws-builder.xml|EclipseLink DBWS builder XML file]] to produce a deployable archive (typically a <tt>.war</tt> file) containing all the required deployment artifacts (WSDL, <tt>.xsd</tt> schema, <tt>web.xml</tt>, etc.) for a JAX-WS 2.0 compliant Web Service. There are script files provided for invoking <tt>DBWSBuilder</tt>. They are located in the <tt><ECLIPSELINK_HOME>\utils\dbws</tt> directory. The scripts ending in <tt>.cmd</tt> are for Windows use while those that end with <tt>.sh</tt> are for all other operating systems. Before runnign the <tt>dbwsbuilder.cmd</tt> script, please ensure that the following environment variables in the <tt><ECLIPSELINK_HOME>\utils\dbws\setenv.cmd</tt> (or <tt>setenv.sh</tt> file) are set:
 
* <tt>JAVA_HOME</tt>
 
* <tt>DRIVER_CLASSPATH</tt>
 
<source lang="text" enclose=div>
 
DBWSBuilder usage - [] indicates optional argument:
 
prompt > dbwsbuilder.cmd  -builderFile {path_to_dbws_builder.xml} -stageDir  {path_to_stageDir} -packageAs[:archive_flag - archive, noArchive, ignore] {packager} [additional args]
 
Available packagers:
 
    -packageAs:[default=not supported] jdev
 
    -packageAs:[default=archive] javase [jarFilename]
 
    -packageAs:[default=archive] wls [warFilename] [warFilename]
 
    -packageAs:[default=archive] glassfish [warFilename] [warFilename]
 
    -packageAs:[default=archive] jboss [warFilename] [warFilename]
 
    -packageAs:[default=archive] war [warFilename] [warFilename]
 
    -packageAs:[default=archive] was [warFilename] [warFilename]
 
    -packageAs:[default=not supported] eclipse
 
</source>
 
  
Typical <tt>.war</tt> file layout:
+
To create EclipseLink DBWS Services using the DBWSBuilder utility, see http://www.eclipse.org/eclipselink/documentation/2.4/dbws/overview002.htm
root of war file
+
    \---WEB-INF
+
    |
+
    |  <span style="font-weight: bold;">web.xml</span>
+
    |
+
    +---classes
+
    |  +---META-INF
+
    |  |      <span style="font-weight: bold;">eclipselink-dbws.xml</span>
+
    |  |      <span style="font-weight: bold;">eclipselink-dbws-or.xml</span>
+
    |  |      <span style="font-weight: bold;">eclipselink-dbws-ox.xml</span>
+
    |  |      <span style="font-weight: bold;">eclipselink-dbws-sessions.xml</span>
+
    |  |
+
    |  \---_dbws
+
    |          <span style="font-weight: bold;">DBWSProvider.class</span>    -- auto-generated JAX-WS 2.0 Provider
+
    |          <span style="font-weight: bold;">ProviderListener.class</span> -- auto-generated Servlet Listener
+
    |
+
    \---wsdl
+
            <span style="font-weight: bold;">eclipselink-dbws-schema.xsd</span>
+
            <span style="font-weight: bold;">eclipselink-dbws.wsdl</span>
+
            <span style="font-weight: bold;">swaref.xsd</span>                -- optional
+

Latest revision as of 08:40, 1 November 2012

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


To create EclipseLink DBWS Services using the DBWSBuilder utility, see http://www.eclipse.org/eclipselink/documentation/2.4/dbws/overview002.htm

Back to the top