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‎ | UserGuide‎ | DBWS‎ | Overview
Revision as of 08:43, 7 December 2011 by Rick.sapir.oracle.com (Talk | contribs) (EclipseLink DBWSBuilder File)

EclipseLink DBWSBuilder 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 file is eclipselink-dbws-builder_1.3.xsd and can be found in the META-INF/ directory of the eclipselink-dbwsutils.jar file, located in the <ECLIPSELINK_HOME>/utils/dbws/ directory. The file has two main sections: global properties settings and specific operation settings.

DBWSBuilder builder xml file Properties
Property 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 subelement:

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 data source 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 for customization of the object-relational mappings project.

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 for customization of the object-XML mappings project.

No

None

wsdlLocationURI

The URI of this EclipseLink Database Web service's WSDL (used by Web service tools to generate the 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. Includes a stack trace.
  • warning - Logs exceptions that do not force EclipseLink to stop, including all exceptions not logged with severe level. Does not include a stack trace.
  • info - Logs the login and 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.
This table lists attributes common to all three builder operations: table, procedure and sql.

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 foobar

false

simpleXMLFormatTag

The name of the root-level simple XML format element tag. For more information, see (Information pending).

<simple-xml-format>

xmlTag

The name of the grouping XML element tag for rows. For more information, see (Information pending).

<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.

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">
            <statement>
            <![CDATA[select * from XR_EMP where ENAME like ?]]>
            </statement>
            <binding name="ENAME" type="xsd:string"/>
        </sql>
    </table>
    <sql name="employeeInfo" simpleXMLFormatTag="employee-info" xmlTag="aggregate-counts">
        <statement>
        <![CDATA[select count(*) as "COUNT", max(SAL) as "MAX-Salary" from EMP]]>
        </statement>
    </sql>
</dbws-builder>


Graphical View of EclipseLink DBWSBuilder Schema eclipselink-dbws-builder_1.3.xsd

Dbws 1 2.png


Copyright Statement

Back to the top