Extended Mapping Files
Oracle SOA Suite extends JAXB and OXM file support through use of an extended mapping (EXM) file. If an EXM file is present in the class path of the design time project, then it can be used for Java-to-WSDL conversions. The EXM file provides data binding metadata in the following situations:
-
When you cannot add the JAXB annotations into the Java source and must specify them separately
-
When scenarios are not covered by JAXB (for example, with top level elements like method return types or parameter types)
The external JAXB annotations can be specified either directly in the EXM file or included in the separate TopLink JAXB mapping OXM file that can be referred to from the EXM file.
The EXM file name must match the Java class name and reside in the same package location. For example, if the Java class is named pack1.pack2.myJavaInterface.class
, the EXM file must be named pack1/pack2/myJavaInterface.exm
.
Oracle SOA Suite design time supports placing the EXM file in either the source path (SCA-INF/src
) or the class path (SCA-INF/classes
or a JAR in SCA-INF/lib
).
Placing the EXM file in the source path (SCA-INF/src
) enables you to edit the EXM using Oracle JDeveloper (files in the class path do not appear in the Applications window in Oracle JDeveloper). When project compilation is complete, the EXM file (and any XML files that it imports) is copied to the class path (SCA-INF/classes
) for deployment. If the EXM file is in the source path, it must still be in the same corresponding directory structure.
If you place the EXM (and OXM) files in SCA-INF/src
, ensure that your Oracle JDeveloper project is configured so that SCA-INF/src
is the default source directory (right-click the project name, and select Project Properties > Java Source Paths). EXM files can also be found in JAR files that are in the project's class path.
When you drag and drop a Java interface (Enterprise JavaBeans) to a BPEL process, Oracle SOA Suite checks to see if the EXM file exists. If it does, it is passed to the web services java2wsdl
API.
After the WSDL file is generated, an informational message is displayed. If an EXM file was used, the message displayed takes the following format:
The WSDL file {0} was generated based on the JAVA class {1} using extended mapping file {2}
The following provides an example of an EXM file:
<java-wsdl-mapping name="com.hello.sei.MyServiceEndpointInterface" xmlns="http://xmlns.oracle.com/weblogic/weblogic-wsee-databinding" xmlns:oxm="http://www.eclipse.org/eclipselink/xsds/persistence/oxm" databinding="toplink.jaxb"> <xml-schema-mapping> <toplink-oxm-file java-package="com.hello.foo" file-path="./foo-oxm.xml"/> <toplink-oxm java-package="com.hello.coo"> <xml-bindings xmlns="http://www.eclipse.org/eclipselink/xsds/persistence/oxm"> <xml-schema element-form-default="QUALIFIED" attribute-form-default="UNQUALIFIED" namespace="urn:customer"> <xml-ns prefix="ns1" namespace-uri="urn:customer" /> </xml-schema> <java-types> <java-type name="Person" xml-transient="true"> <java-attributes> <xml-transient java-attribute="id"/> </java-attributes> </java-type> <java-type name="Customer"> <xml-see-also>org.example.employee.Employee</xml-see-also> </java-type> </java-types> </xml-bindings> </toplink-oxm> </xml-schema-mapping> . . . </java-wsdl-mapping>
The EXM schema file for external mapping metadata for the data binding framework is available at the following URL:
http://www.oracle.com/technology/weblogic/weblogic-wsee-databinding/1.1/weblogic-wsee-databinding.xsd
The data defines the attributes of a particular Java web service endpoint. This schema defines three types of XML constructs:
-
Constructs that are analogous to JAX-WS or JSR-181 that override or define attributes on the service endpoint interface (SEI) and JAXB annotations for the value types used in the interfaces of the SEI.
-
Additional mapping specifications not available using standard JAX-WS or JAXB annotations, primarily for use with the
java.util.Collections
API. -
References to external JAXB mapping metadata from a Toplink OXM file.
When a construct is the direct analog of a JAX-WS, JSR-181, or JAXB annotation, the comment in the schema contains a notation such as:
Corresponding Java annotation: javax.jws.WebParam.Mode