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

EclipseLink/UserGuide/DBWS/Overview/EclipseLink DBWSBuilder File (ELUG)

EclipseLink DBWSBuilder builder XML File

The DBWSBuilder design-time utility processes the elements in this file to produce the requisite EclipseLink DBWS service descriptor and accompanying files. The XML Schema definition for a DBWSBuilder builder xml File is eclipselink-dbws-builder_1.0.xsd and can be found in the META-INF/ directory in the eclipselink-dbwsutils.jar file, located in the <ECLIPSELINK_HOME>/utils/dbws/ directory.

DBWSBuilder builder xml file Properties
Element Description Required Default

projectName

The name of the EclipseLink DBWS service.

Yes

None

username

Database user name.

Yes

None

password

Database password.

Yes

None

url

Database connection URL.

Yes

None

driver

Class name of the JDBC driver.

Yes

None

contextRoot

The value of the web.xml file servlet-mapping element's url-pattern sub-element:

Example:
<servlet-mapping>
    ...
    <url-pattern>
        /servlet/MyWebService
    </url-pattern>
</servlet-mapping>

No

" / "+ projectName

dataSource

JNDI datasource location for the EclipseLink sessions.xml file You must configure a JNDI datasource before deploying your EclipseLink DBWS to a Java-EE server

No

None

sessionsFileName

The name of EclipseLink sessions.xml file to add to the EclipseLink DBWS service archive file.

No

eclipselink-dbws-sessions.xml

platformClassname

The fully qualified name of the EclipseLink database platform class to use to connect to the relational database. This class must be in the classpath.

No

org.eclipse.persistence.platform.database.MySQLPlatform

orSessionCustomizerClassName

The name of a Java class that implements the eclipselink.persistence.config.SessionCustomizer interface. The name is added to the EclipseLink sessions.xml file, allowing the ORM project to be customized.

No

None

oxSessionCustomizerClassName

The name of a Java class that implements the eclipselink.persistence.config.SessionCustomizer interface. The name is added to the EclipseLink sessions.xml file, allowing the OXM project to be customized.

No

None

wsdlLocationURI

The URI of this EclipseLink Database Web service's WSDL (used by Web service tools to generate client code).

No

http://localhost:7001/projectName

logLevel

EclipseLink logging level to be inserted in the EclipseLink database Web service sessions.xml file. Controls the amount and detail of log output by configuring the log level (in ascending order of information) to one of the following java.util.logging.Level values:

  • off - Disable logging.
  • severe - Logs exceptions indicating EclipseLink cannot continue, as well as any exceptions generated during login. This includes a stack trace.
  • warning - Logs exceptions that do not force EclipseLink to stop, including all exceptions not logged with severe level. This does not include a stack trace.
  • info - Logs the login/logout per sever session, including the user name. After acquiring the session, detailed information is logged.
  • config - Logs only login, JDBC connection, and database information.
  • fine - Logs SQL.
  • finer - Similar to warning. Includes stack trace.
  • finest - Includes additional low level information.

No

info

targetNameSpace

The URI of the target namespace that the EclipseLink Database Web service inserts into the eclipselink-dbws-schema.xsd file.

No

urn: + projectName

The following tables describe attributes of builder operations that eclipselink-dbws-build.xml File uses. This table lists attributes common to all three builder operations.

Common Attributes of Builder Operations

Attribute Description Default

name

Name of the operation.

None

isCollection

Specifies whether or not the procedure returns multiple results. The following are valid values:
  • true - the operation returns more than a single row.
  • false - the operation returns a single row.

false

isSimpleXMLFormat

Specifies whether or not the procedure returns information in the Simple XML Format (SXF). The following are valid values:

  • true - the operation returns information in the Simple XML Format.
  • false - the operation returns information in the Simple XML Format.

For more information, see Unstructured Data.

false

simpleXMLFormatTag

The name of the root-level Simple XML Format element-tag. For more information, see Unstructured Data.

<simple-xml-format>

xmlTag

The name of the grouping XML element-tag for rows. For more information, see Unstructured Data.

<simple-xml>

binaryAttachment

Specifies whether or not the operation returns binary data as a SOAP attachment. The following are valid values:

  • true - the operation returns binary data as a SOAP attachment.
  • false - the operation does not return binary data as a SOAP attachment.

false

returnType

Specifies a return type when the operation's return type cannot be deduced from database metadata. Valid values are any type that the eclipselink-dbws-schema.xsd file defines. For more information, see eclipselink-dbws-schema.xsd.

Note: This attribute is optional.

None


This table lists attributes of the procedure operation.

Attributes of the procedure Operation

Attribute Description

catalogPattern

A pattern that matches one or more catalog names in the database identified by the parent operation (supports SQL-92 % wild-card).

schemaPattern

A pattern that matches one or more schema names in the database identified by the parent operation (supports SQL-92 % wild-card).

procedurePattern

A pattern that matches one or more stored procedure, stored function, or stored trigger names in the database identified by the parent operation (supports SQL-92 % wild-card).


This table lists attributes of the table operation.

Attributes of the table Operation

Attribute Description

catalogPattern

A pattern that matches one or more catalog names in the database identified by the parent operation (supports SQL-92 % wild-card).

schemaPattern

A pattern that matches one or more schema names in the database identified by the parent operation (supports SQL-92 % wild-card).

tableNamePattern

A pattern that matches one or more table names in the database identified by the parent operation (supports SQL-92 % wild-card).

Example DBWSBuilder builder xml file:

<?xml version="1.0" encoding="UTF-8"?>
<dbws-builder xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    <properties>
        <property name="projectName">test</property>
        <property name="driver">oracle.jdbc.OracleDriver</property>
        <property name="password">tiger</property>
        <property name="url">jdbc:oracle:thin:@localhost:1521:ORCL</property>
        <property name="username">scott</property>
    </properties>
    <table catalogPattern="%" schemaPattern="SCOTT" tableNamePattern="XR_EMP">
        <procedure returnType="xr_empType"
                   catalogPattern="SOME_PKG"
                   schemaPattern="SCOTT"
                   procedurePattern="GetEmployeeByEMPNO_DEPTNO"
        />
        <sql name="findXREmpByName" isCollection="true" returnType="xr_empType">
            <text>
            <![CDATA[select * from XR_EMP where ENAME like ?]]>
            </text>
            <binding name="ENAME" type="xsd:string"/>
        </sql>
    </table>
    <sql name="employeeInfo" simpleXMLFormatTag="employee-info" xmlTag="aggregate-counts">
        <text>
        <![CDATA[select count(*) as "COUNT", max(SAL) as "MAX-Salary" from EMP]]>
        </text>
    </sql>
</dbws-builder>

For more information, see the following:

What You May Need to Know About Builder Operations

The following are the builder operations:

  • procedure-You use this operation to specify a stored procedure.
  • table-You use this operation to specify a database table.
  • sql-You use to this operation to specify an SQL statement.


Graphical view of EclipseLink DBWS Service Descriptor's Schema eclipselink-dbws_1.0.xsd

Dbws-builder 1 0.png


Copyright Statement

Back to the top