15 Creating SOAP Web Services with Application Modules
This chapter includes the following sections:
About Service-Enabled Application Modules
Service-enabled ADF Business Components application modules are made available to SOAP service customers through a service interface.
A service-enabled application module is an ADF application module that you advertise through a service interface to service consumers. There are three scenarios for service consumers to consume a published service-enabled application module: web service access, Service Component Architecture (SCA) composite access, and access by another ADF application module.
Service Component Architecture (SCA) provides an open, technology-neutral model for implementing remotable services that are defined in terms of business functionality and that make middleware functions more accessible to application developers. ADF Business Components supports an SCA-compliant solution through application modules you can publish with a service interface.
When you service-enable your application module, JDeveloper generates the necessary artifacts comprising: 1) The Java interface defining the service, 2) an EJB 3.0 session bean that implements this Java interface, 3) a WSDL file that describes the service's operations, and (4) XML schema documents (XSD) that defines the service's data structures. The service interface is described for Fusion web application clients in a language-neutral way by the combination of WSDL and XSD.
SCA defines two kinds of service:
-
Remotable services, typically coarse-grained and designed to be published remotely in a loosely coupled SOA architecture
-
Local services, typically fine-grained and designed to be used locally by other implementations that are deployed concurrently in a tightly coupled architecture
ADF Business Components services fall into the first category, and should only be used as remotable services.
ADF Business Components services, including data access and method calls, defined by the remote application modules are interoperable with any other application module. This means the same application module can support interactive web user interfaces using ADF data controls and web service clients.
Service-Enabled Application Module Use Cases and Examples
Any development team can publish a service-enabled application module to contribute to the Fusion web application. The Fusion web application assembled from remote web services also does not require the participating services to run on a single application server.
Although the web applications may run on separate application servers, the appearance that SCA provides is one of a unified application. Consuming client projects use the ADF service factory lookup mechanism to access the data and any business methods encapsulated by the service-enabled application module. At runtime, the calling client and the ADF web service may or may not participate in the same transaction, depending on the protocol used to invoke the service (either SOAP or RMI). Only the RMI protocol and a Java Transaction API (JTA) managed transaction support the option to call the service in the same transaction as the calling client. By default, to support the RMI protocol, the ADF web service is configured to participate in the same transaction.
Additional Functionality for Service-Enabled Application Modules
You may find it helpful to understand other Oracle ADF features before you start working with ADF Business Components services. Following are links to other functionality that may be of interest.
-
For information about the SCA and service data object (SDO) standards, see the Specifications section of the website for the Organization for the Advancement of Structured Information Standards (OASIS) through the Open Composite Services Architecture (CSA) at
http://www.oasis-opencsa.org
. -
For further background about web services and Oracle WebLogic Server support for web services, see Overview of Web Services in Understanding Web Services
-
For details about the predefined authorization policies supported by Oracle Web Services Manager (OWSM), including
binding_permission_authorization_policy
used to enable authorization for RMI clients. For more information, see the "Predefined Policies" appendix in Securing Web Services and Managing Policies with Oracle Web Services Manager. -
For local service support, use the
ApplicationModule
interface andViewObject
interface support described in Working Programmatically with an Application Module's Client Interface. -
For API documentation related to the
oracle.jbo
package, see the following Javadoc reference document:
Publishing Service-Enabled Application Modules
Use the ADF Application Module to enable a SOAP-based web service and make available rows of view object data.
The application module is ADF Business Components framework component that encapsulates business logic as a set of related business functions. Application modules are mapped to services. You use the overview editor for your application module to enable a web service interface and publish rows of view object data as service data object (SDO) components.
The SDO framework upon which the SDO components are based abstracts the data of the view object and standardizes the way that data structures are passed between Java and XML. This data abstraction simplifies working with heterogeneous data sources in a service-oriented architecture (SOA) and lets you selectively service-enable view objects using the same view object to support interactive web user interfaces and web service clients.
JDeveloper allows you to expose application modules as web services which use SDO components based on view instance that your application module defines to standardize the way that data structures are passed between Java and XML. JDeveloper also generates the WSDL service description that is used by the web service client in the consuming application.
Note:
JDeveloper only supports generating SDO components for view objects of a service-enabled application module. Currently, no other ADF Business Components may be defined as SDO components.
The service-enabled application module exposes the view objects, custom methods, built-in data manipulation operations, and specialized find methods based on named view criteria to be used by the client. Once you have enabled the application module service interface, you will need to create an ADF Business Components Service Interface deployment profile and deploy it to the target application server.
Note:
It is important to note that you don't implement methods with SDO parameters directly. The SDO framework is used to wrap the view row types during runtime only.
How to Enable the Application Module Service Interface
You edit the application module in JDeveloper to create a web service interface that exposes the top-level view objects and defines the available service operations it supports. Top-level view objects that you may service-enable and make accessible by the service client are:
-
View instances of standalone view objects (does not participate in a hierarchical relationship)
-
Master view instances of master-detail related view objects (does not include the child view instance)
-
View instances of view objects that extend a parent view object (must not include a subtype discriminator attribute to define a polymorphic view object)
View objects that do not automatically participate in the service interface are:
-
Child view instances of master-detail related view objects
You can add child view objects individually to the service interface. For information on how to create SDO classes for child view objects, see How to Service-Enable Individual View Objects.
-
View instances of polymorphic view objects (as defined by a subtype discriminator attribute)
In JDeveloper, you can create a web service proxy client to access and manipulate for polymorphic view objects. For an example of a JAX-WS client, see Accessing Polymorphic Collections in the Consuming Application.
The primary purpose of the standard service operations is to expose data manipulation operations on the view objects. Any business logic that you have defined on the underlying framework objects (for example, business rule validation) will be applied when you invoke a standard service operation.
Table 15-1 shows the list of standard operations that service view instances support.
Table 15-1 Standard View Instance Data Manipulation Operations
Operation | Method Name | Operation Description |
---|---|---|
|
|
Creates an ADF Business Components view row. |
|
|
Updates an ADF Business Components view row. |
|
|
Deletes an ADF Business Components view row. |
|
|
Updates an ADF Business Components view row if one exists; otherwise, creates a new one. |
|
|
Gets a single ADF Business Components view row by primary key. |
|
|
Finds and returns a list of ADF Business Components view rows using an SDO-based view criteria that is applied to the selected view object's query statement. Note that the query must not specify a bind variable defined as required for the query to execute. The service interface does not expose required bind variables at runtime. For details about creating a find method for this scenario, see How to Expose a Declarative Find Operation Filtered By a Required Bind Variable. |
|
|
Finds and returns a list of single ADF Business Components view rows by named view criteria and values for the required bind variables. This is the preferred way to filter the ADF Business Components view rows that rely on a required bind variable. |
|
|
Performs a Create, Update, Delete, or Merge operation on a list of ADF Business Components view rows. The specified operation is applied to all objects in the given list. |
|
|
Performs a Create, Update, or Delete operation on a list of ADF Business Components view rows. Different operations may be applied to different objects, depending on what is specified in the |
Additionally, several built-in methods can be optionally added to the client service interface of the application module (AppModuleService.java
). Table 15-2 shows the list of built-in methods that provide runtime support for service view instances that you enable.
Table 15-2 Built-In Service Interface Methods
Operation | Method Name and Async Method Name | Method Description |
---|---|---|
|
|
Returns the base UI hints, including object and attribute display name labels, for an object based on a specific locale. The method takes the name of the object, at the service, to get the hints and the locale name (in ISO 639-1 format) to drive localization of base hints. This method may be used by the web service consuming application to generate a user interface with the correct labels for the service view instance and its attributes. For details about specifying display name UI hints, see How to Set Display Names for Service View Instances and Attributes. |
|
|
Returns the last modified time for the service schema files at the SOAP service endpoint. This method may be used by the web service consuming application that caches the service view instance schema files (XSD) to determine when the object has been updated. |
|
|
Returns the list of service view instance names and flags that indicate whether each service view object at the SOAP service endpoint supports Create, Update, Merge, and Delete operations. This method may be used by the web service consuming application that uses custom object services to determine the available operations. Custom object services are not created using the ADF Business Components web service design time and are not described in this documentation. |
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF application modules and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
When you create the service-enabled application module, do not create it in a project that already contains a standard web service (a Java class or interface with the @WebService
annotation). JDeveloper deployment profiles do not support deploying a standard web service and an ADF Business Service web service from the same project. If you attempt to deploy the ADF Business Service web service from the same project as a standard web service, the deployment will fail with an Oracle WebLogic Server exception error.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete these tasks:
-
Create the desired view objects, as described in How to Create an Entity-Based View Object and How to Create a Custom SQL Mode View Object.
-
Create the desired application module, as described in How to Create an Application Module.
-
Optionally, set JDeveloper preferences to specify a default suffix for the names of generated SDO classes, modify the default subpackage where the service interface and classes reside, and set the default namespace prefix for the generated SDO schema and web service, as described in How to Set Preferences for Generating the ADF Web Service Interface.
-
If you want to expose custom find operations on the service, create declarative view criteria to specify the custom query, as described in How to Create Named View Criteria Declaratively.
To create the web service interface:
-
In the Applications window, double-click the application module.
-
In the overview editor, click the Service Interface navigation tab and then click the Enable support for Service Interface button.
Use the Create Service Interface wizard to configure the desired options.
-
In Create Service Interface wizard, on the Service Interface page, enter the name and target namespace for the web service.
The target namespace is a URI for the service that you can assign to group similar services together by entering the same URI. The default target namespace is the package name of the application module combined with package names that you specify in the Preferences dialog.
Tip:
You can define JDeveloper preferences that will shape the URI and allow you to define a unique target namespace for your service. For details about namespace URI shaping preferences, see How to Set Preferences for Generating the ADF Web Service Interface.
-
To expose the methods of the application module as asynchronous service methods and enable both synchronous and asynchronous operations on the web service, select Generate Asynchronous Web Service Methods.
By default, the web service supports synchronous service methods. This forces the invoking client application to wait for the response to return before it can continue with its work. In cases where the response returns immediately, this method of invoking the web service is common. However, because request processing can be delayed, it is often useful for the client application to continue its work and to handle the response later on.
-
The Service Categories list will appear empty unless role shaping has been defined based on previously defined customization roles. Leave the Selected list empty unless your organization is classifying services.
This feature has no impact on the service WSDL file and has no relevance to the operation of web services.
-
On the Service Built-in Methods page, optionally, select Generate Object and Attribute Control Hints Operation to generate a method that will return the static control hints (UI hints) defined on a view instance and its attributes.
When you enable this option, the wizard adds the
getDfltObjAttrHints()
method to the client service interface (AppModuleService.java
). The web service consuming application can invoke this method to resolve UI hints on the server without requiring a database roundtrip. The method takes a service view object name and a locale name and returns the base UI hints, including object and attribute display name labels, for an object based on a specific locale. If the locale name is not specified, the method uses the default locale. -
Optionally, select Generate Last Update Time Operation to generate a method that will return the last modified time for the service schema files.
When you enable this option, the wizard adds the
getServiceLastUpdateTime()
method to the client service interface (AppModuleService.java
). Before any customization occurs, this method returns the file timestamp of the last updated schema file. When a schema is customized at runtime, the last-update timestamp is updated, and this latest timestamp will be returned. This feature is primarily useful in web service consuming applications that cache the service XSD. -
Optionally, select Generate Entity List Operation to generate a method that will return the list of service view instances.
When you enable this option, the wizard adds the
getEntityList()
method to the client service interface (AppModuleService.java
). The method returns the list of service view instance names, XSD type, and flags that indicate whether the service view supports Create, Update, Merge, and Delete operations. This feature is primarily useful in web service consuming applications that require customization. -
On the Service Custom Methods page, add the custom methods you want to expose in the service interface and define the data types of each method's parameters and return value.
The parameters and non-void return value of the custom service methods you enable must be one of the service-interface supported data types, such as a Java primitive type, or a list of the service-interface supported data types (including
oracle.jbo.server.ViewRowImpl
,java.util.List<
ViewRowImpl
>
,oracle.jbo.AttributeList
,java.util.List<
AttributeList
>
, orjava.util.List<
PrimitiveType
>
).Note that although both
ViewRowImpl
andAttributeList
data types expose the identical row structure to the web service client, at runtime there will be a fundamental difference. For a description of the supported data types, see What You May Need to Know About Method Signatures on the ADF Web Service Interface.After selecting a qualifying custom method to appear in the service interface, for each parameter and return value using the
ViewRowImpl
orAttributeList
data type, you must in turn select the name of the view object instance corresponding to the row structure:-
In the Selected list, expand return or parameters and select the item.
-
Enter the Java element data type in Element Java Type.
-
In the case where the Java element type is
ViewRowImpl
orAttributeList
, enter the view object instance name to identify the row structure in Element View Object.For example, if you define a custom method to return a single row of the
CustomerInfo
view object instance, you would need a custom method signature like this:public ViewRowImpl findCustomerInfo(int id)
Then, after selecting the
findCustomerInfo()
custom method to appear in the service interface, you would select its return value in the tree and configure its View Object property to beCustomerInfo
, the view instance name whose row structure should be used at runtime.
-
-
To expose service information messages for a custom method or warnings for process operation methods, select Include Warnings in Return Service Data Object.
For example, you might want to display an informational message when a method returns the total employee compensation and the total is outside of the desired range.
If Include Warnings is not selected, no informational messages will be returned with the service response.
This option is only enabled when the method does not return a view row or a list of view rows. When the method returns view rows, the underlying view object determines whether the method supports warnings, as described How to Service-Enable Individual View Objects.
The informational messages (and warnings) are reported as part of the return object. JDeveloper generates appropriate wrappers as the return objects, and the wrappers contain the actual method return and the informational messages.
-
On the Service View Instances page, select the top-level view instances in the application module that you want to expose in the service interface.
View object subtypes of the top-level view instance will automatically be service-enabled.
Also, on this page, you can enable the available data manipulation operations supported on the exposed methods, as shown in Figure 15-1.
Figure 15-1 View Instances and CRUD Operation Selection
-
In the Basic Operations tab, select the data manipulation operations for the currently selected view instance and in the Method Name field, change the names of the selected service operations to the names that you prefer to expose in the service interface.
The primary purpose of the standard service operations is to expose data manipulation operations on the view objects. Any business logic that you have defined on the underlying framework objects (for example, business rule validation) will be applied when you invoke the service operations. For a description of the operations that service view instances support, see Table 15-1.
In the case of the find method operation that you can select, the find method must not reference a required bind variable in the view object's query statement. A required bind variable is one that makes the query execution dependent on the availability of a valid value for the bind variable. The service interface does not expose required bind variables at runtime. For details about defining a find operation for this scenario, see How to Expose a Declarative Find Operation Filtered By a Required Bind Variable.
-
To expose declarative find operations, select the View Criteria Find Operations tab and click the Add View Criteria icon.
You can define custom find operations when you want the service to support executing a predefined query. For information about defining a named view criteria, see Working with Named View Criteria.
Caution:
The service interface find operations are based on specific view criteria that your project defines. This means that the bind variables of the view criteria must match the parameters of the corresponding find operation method. If you change the number or order of the bind variables after the find operation is defined and the service interface generated, the corresponding method will not execute at runtime. Therefore, after changing the underlying view criteria, you must regenerate the service interface.
-
In the Configure View Criteria Find Operation dialog, choose the named view criteria for the find operation.
The dialog displays the list of view criteria exposed by the referenced view object. For example,
OrdersView
definesOrdersViewCriteria
with a bind variableOrdId
that specifies the order ID, as shown in Figure 15-2.Figure 15-2 Specialized Find Methods Based on Named View Criteria
-
If the view criteria uses a bind variable, you can double-click the XML name to customize the name as it will appear in the XML definition for the service.
-
-
Click Next to review the custom methods that your service view instances will expose.
-
Click Finish.
What Happens When You Create an Application Module Service Interface
JDeveloper generates the service interface class and enables any view instance options you have chosen, as shown in Figure 15-3.
Do not modify the generated files for the service-enabled application module. The generated files implement required methods of the service interface. An exception to this are use cases that require adding Java annotations to the service implementation class. For example, annotations that you add in the service implementation class let you attach security policies, as described in How to Secure the ADF Web Service for Access By SOAP Clients.
Figure 15-3 Service Interface Page of the Overview Editor for an Application Module

Description of "Figure 15-3 Service Interface Page of the Overview Editor for an Application Module"
The following types of files are generated and are listed in the Applications window in the Projects panel, under the application module's serviceinterface node, as shown in Figure 15-4.
-
Web service interface, for example,
ServiceAppModuleService.java
-
Web service schema file, for example,
ServiceAppModuleService.xsd
-
Web service definition file, for example,
ServiceAppModuleService.wsdl
-
Web service implementation class, for example,
ServiceAppModuleServiceImpl.java
Figure 15-4 Service Interface Files Appear Below Application Module

In addition, the connections.xml
file is created when you first create an ADF Business Components service. Although this file is only used by the web service client (the consuming application), it is generated with the service-enabled application module as a convenience. This file appears in the Applications window in the Application Resources panel, under the Descriptors and ADF META-INF nodes.
Annotations Generated in the Web Service Interface
The web service interface uses metadata annotations specified by the web service specification (JSR-181) to indicate how the interface should be exposed as a web service. This example shows part of ServiceAppModuleService.java
, which is the web service interface class for the ServiceAppModule
application module in the oracle.summit.model.amservice
package in the SummitADF_Examples
workspace.
package oracle.summit.model.amservice.common.serviceinterface; ... import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebResult; import javax.jws.soap.SOAPBinding; ... import oracle.summit.model.amservice.common.CustomerViewSDO; import oracle.summit.model.amservice.common.OrderViewSDO; ... import oracle.webservices.annotations.PortableWebService; import oracle.webservices.annotations.SDODatabinding; ... @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.WRAPPED, style=SOAPBinding.Style.DOCUMENT) @PortableWebService(targetNamespace="http://www.globalcompany.com/ServiceAppModuleService", name="ServiceAppModuleService", wsdlLocation= "oracle/summit/model/amservice/common/serviceinterface/ServiceAppModuleService.wsdl") @SDODatabinding(schemaLocation= "oracle/summit/model/amservice/common/serviceinterface/ServiceAppModuleService.xsd") public interface ServiceAppModuleService { public static final String NAME = ("http://www.globalcompany.com/ServiceAppModuleService") @WebMethod(action="www.globalcompany.example.com/createCustomersView", operationName="createCustomersView") @RequestWrapper(targetNamespace="www.globalcompany.example.com/types/", localName="createCustomersView") @ResponseWrapper(targetNamespace="www.globalcompany.example.com/types/", localName="createCustomersViewResponse") @WebResult(name="result") CustomersViewSDO createCustomersView(@WebParam(mode = WebParam.Mode.IN, name="customerView") CustomersViewSDO customersView) throws ServiceException; ... }
Web Service Schema Generated in the Web Service Schema File
The web service schema file is an XML schema file which represents the web service schema, as shown in Figure 15-5.
WSDL Generated in the Web Service Definition File
The web service definition file is a XML-structured document file that conforms to the Web Service Definition Language (WSDL) specification that describes the generated web service as a collection of endpoints, or ports. A port is defined by associating a network address with a reusable binding. The client application that connects to the web service reads the WSDL to determine what functions are available on the server. The WSDL also specifies the endpoint for the service itself, which you can use to locate and test your deployed service.
Figure 15-6 shows the WSDL for the web service generated for the ServiceAppModule
application module in the WSDL visual editor. You can see the WSDL as an XML document by selecting the Source tab.
Stateless Session Bean Specified by the Service Implementation Class
The service implementation class is an EJB 3.0 stateless session bean that implements the web service interface and extends the oracle.jbo.server.svc.ServiceImpl
class, the generic service implementation for ADF Business Components. The following example shows part of ServiceAppModuleServiceImpl.java
, which is the service implementation class for the ServiceAppModule
application module in the oracle.summit.model.amservice
package in the SummitADF_Examples
workspace.
package oracle.summit.model.amservice.server.serviceinterface; ... import oracle.summit.model.amservice.common.CustomersViewSDO; import oracle.summit.model.amservice.common.OrdersViewSDO; import oracle.summit.model.amservice.common.serviceinterface.ServiceAppModuleService; ... import oracle.webservices.annotations.PortableWebService; @Interceptors({ ServiceContextInterceptor.class }) @Stateless(name="oracle.summit.model.amservice.common.ServiceAppModuleServiceBean", mappedName="ServiceAppModuleServiceBean") @Remote(ServiceAppModuleService.class) @PortableWebService(targetNamespace="http://www.globalcompany.com/ServiceAppModuleService", serviceName="ServiceAppModuleService", portName="ServiceAppModuleServiceSoapHttpPort", endpointInterface="oracle.summit.model.amservice.common. serviceinterface.ServiceAppModuleService") public class ServiceAppModuleServiceImpl extends ServiceImpl implements ServiceAppModuleService { ... public CustomersViewSDO createCustomersView(CustomersViewSDO customersView) throws ServiceException { return (CustomersViewSDO) create(customersView, "CustomersView"); } public CustomersViewSDO updateCustomersView(CustomersViewSDO customersView) throws ServiceException { return (CustomersViewSDO) update(customersView, "CustomersView"); } ... }
Lookup Defined in the connections.xml File
The connections.xml
file allows the web service client to look up the service with the factory class oracle.jbo.client.svc.ServiceFactory
. The ADF Business Components service factory provides the mechanism that allows the service client to look up the service. The service factory relies on ADF connection architecture and the connections.xml
file to manage service endpoint locations. The connections.xml
file is created when you first create an ADF Business Components service. This file appears in the Applications window in the Application Resources panel, under the Descriptors and ADF META-INF nodes.
The following example shows the initial connections.xml
entry created by JDeveloper when you first create an ADF Business Components service.
<Reference name="{http://www.globalcompany.com}ServiceAppModuleService" className="oracle.jbo.client.svc.Service" xmlns=""> <Factory className="oracle.jbo.client.svc.ServiceFactory"/> <RefAddresses> <StringRefAddr addrType="serviceInterfaceName"> <Contents>oracle.summit.model.amservice.common.serviceinterface. ServiceAppModuleService</Contents> </StringRefAddr> <StringRefAddr addrType="serviceEndpointProvider"> <Contents>ADFBC</Contents> </StringRefAddr> <StringRefAddr addrType="jndiName"> <Contents>ServiceAppModuleServiceBean#oracle.summit.model.amservice. common.serviceinterface.ServiceAppModuleService</Contents> </StringRefAddr> <StringRefAddr addrType="serviceSchemaName"> <Contents>ServiceAppModuleService.xsd</Contents> </StringRefAddr> <StringRefAddr addrType="serviceSchemaLocation"> <Contents>oracle/summit/model/amservice/common/ serviceinterface/</Contents> </StringRefAddr> </RefAddresses> </Reference>
What Happens When You Create an Application Module Service Interface With Polymorphic View Objects
When your model project defines subtype view objects that extend a base view object, the generated SDO service interface will be strongly-typed for the base view objects, but not for the polymorphic subtypes. For example, assume SalespersonViewEx
extends the SEmpView
and adds an attribute CommissionPct
to define the subtype. When you generate the service interface for the service-enabled view instances, the Applications window displays the service interface and service objects, as shown in Figure 15-7.
Figure 15-7 Service Object Generated for Polymorphic Subtype

Description of "Figure 15-7 Service Object Generated for Polymorphic Subtype"
Note:
After generating the SDO service interface from a ADF Model project that defines base view objects and subtype view objects, the generated service schema definition will be strongly-typed for the base view object, but not for the polymorphic subtype. Therefore, web service clients that need to access polymorphic subtype view objects use the approach described in Accessing Polymorphic Collections in the Consuming Application.
Because the polymorphic subtype is specified in application module data model as an import on the base service-enabled view instance, JDeveloper automatically generates the subtype service object from the base service object. The following example shows the SalespsersonViewExSDO.xsd
subtype schema definition with the additional attribute CommissionPct
defined. The subtype schema includes the attributes of base service object SEmpViewSDO
.
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="/oracle/model/polymorphicvo/views/common/" xmlns="/oracle/model/polymorphicvo/views/common/" elementFormDefault="qualified"> <xsd:include schemaLocation="SEmpViewSDO.xsd"/> <xsd:complexType name="SalespersonViewExSDO"> <xsd:annotation> <xsd:appinfo source="http://xmlns.oracle.com/adf/svc/metadata/"> <key xmlns="http://xmlns.oracle.com/adf/svc/metadata/"> <attribute>Id</attribute> </key> </xsd:appinfo> </xsd:annotation> <xsd:complexContent> <xsd:extension base="SEmpViewSDO"> <xsd:sequence> <xsd:element name="CommissionPct" type="xsd:decimal" minOccurs="0" nillable="true"/> </xsd:sequence> </xsd:extension> </xsd:complexContent> </xsd:complexType> <xsd:element name="salespersonViewExSDO" type="SalespersonViewExSDO"/> </xsd:schema>
The generated service interface uses the XSD <import>
element to expose the polymorphic subtype. The following example shows the service interface XSD AppModuleService.xsd
with the import definition for the SalespersonViewExSDO
subtype.
<schema xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://xmlns.oracle.com/apps/hr/service/types/" xmlns:tns="http://xmlns.oracle.com/apps/hr/service/types/" xmlns:ns0="/oracle/model/polymorphicvo/views/common/" xmlns:ns1="http://xmlns.oracle.com/adf/svc/types/"> <import namespace="http://xmlns.oracle.com/adf/svc/types/" schemaLocation="classpath:/META-INF/wsdl/BC4JService.xsd"/> <import namespace="/oracle/model/polymorphicvo/views/common/" schemaLocation="../../../views/common/SalespersonViewExSDO.xsd"/> <import namespace="/oracle/model/polymorphicvo/views/common/" schemaLocation="../../../views/common/SDeptViewSDO.xsd"/> <import namespace="/oracle/model/polymorphicvo/views/common/" schemaLocation="../../../views/common/SEmpViewSDO.xsd"/>
Figure 15-8 shows how the web service schema represents the various strongly-typed service objects, as well as the import definition for the polymorphic subtype SalespersonViewExSDO
.
Figure 15-8 Web Service Schema Imports Polymorphic View Usage

Description of "Figure 15-8 Web Service Schema Imports Polymorphic View Usage"
What You May Need to Know About Method Signatures on the ADF Web Service Interface
You can define two different kinds of interfaces for an application module: the client interface and the service interface. The client interface is used by the ADF Model layer for UI clients. The service interface is for application integration and is used by external web services or other application services (either programmatically or automatically using the service-enabled entity feature).
An application module can support no interface at all, only client interfaces, only service interfaces, or both client interfaces and service interfaces combined. However, be aware that the two kinds of interfaces differ in the data types that are supported for the parameters and/or return values of your custom methods that you define for the respective interfaces. The types supported on the client interface are described in What You May Need to Know About Method Signatures on the Client Interface.
The service interface, in contrast to the client interface, supports a more narrow set of data types for custom method parameters and return values and is limited to:
-
Java primitive types and their object wrapper types (for example,
int
,Integer
, andLong
) -
java.lang.String
-
java.math.BigDecimal
-
java.math.BigInteger
-
java.sql.Date
-
java.sql.Time
-
java.sql.Timestamp
-
java.util.Date
-
oracle.jbo.AttributeList
-
oracle.jbo.domain.BlobDomain
-
oracle.jbo.domain.Char
-
oracle.jbo.domain.ClobDomain
-
oracle.jbo.domain.DBSequence
-
oracle.jbo.domain.Date
-
oracle.jbo.domain.NClobDomain
-
oracle.jbo.domain.Number
-
oracle.jbo.domain.Timestamp
-
oracle.jbo.domain.TimestampLTZ
-
oracle.jbo.domain.TimestampTZ
-
oracle.jbo.server.ViewRowImpl
or any subtype -
java.util.List<
aType
>
, whereaType
is any of the service-interface supported data types, including Java primitive typeNote: The service interface specifically does not support Java
Map
collection. This means it is not possible to return a collection of objects that are of different types. However, a collection is not limited to view row attributes, a return type can be defined as a list of any service-interface supported data type. For example,List<DataObject>
,List<AttributeList>
, andList<String>
are all valid types.
You can define a custom method that returns a type of AttributeList
when you want to allow the client developer to work with the list of attributes and perform custom operations without the need to involve framework behavior before the custom method executes. As an alternative, when the client developer wants the framework to manage rows (create, find, and populate), define custom methods that return ViewRowImpl
or List<ViewRowImpl>
instead. In summary, if your method signature defines ViewRowImpl
or List<ViewRowImpl>
as the data type, then the application automatically:
-
Looks up the row in the corresponding view object instance by primary key and/or alternate key
-
If the row is not found, then creates a new row
-
Applies the attribute changes in the found or new row
Whereas, if your method signature defines the AttributeList
data type, then no automatic behavior is provided, and the actions performed and data modified by the custom method will be limited to your custom method's code.
What You May Need to Know About Row Finders and the ADF Web Service Operations
When you create a row finder for a view object, the service operations of the exposed service view instance support row lookup using non-key attributes defined by the row finder. For example, the service can invoke the row finder to locate the employee by their email address instead of the employee ID (a row key attribute). When the row finder is defined on a non-key attribute of the view object and the end user supplies a value for this attribute in the web service payload, the service will automatically invoke the row finder to identify the matching rows. Where the email address is the row finder's only required value, the service update operation would allow the end user to update the record of an employee who is identified only by their email address. For details about defining a row finder for use with the service view instance, see Working with Row Finders.
How to Service-Enable Individual View Objects
As a result of enabling the web service interface using the overview editor for the application module, JDeveloper automatically enables your parent view instance selections as Service Data Object (SDO) components. The generated SDO components for each view instance will reference the same namespace and will be configured with the same settings for options such as whether or not warnings are supported. You can use the Java page of the overview editor to customize the SDO definition of these existing service-enabled view objects. You can also use the Java page to service-enable view objects that were not added already to the service interface. For example, if you selected a parent view object that represents the master in a master-detail relationship, the child view object will not be automatically service-enabled. You can use the Java page of the overview editor for the child view object to individually add it to the service interface.
You use the Java page of the overview editor for the view object to configure the SDO name and namespace for a view object, or to selectively service-enable child view objects.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete these tasks:
-
Create the desired view objects, as described in How to Create an Entity-Based View Object, and How to Create a Custom SQL Mode View Object.
-
Enable the service interface for the application module, as described in How to Enable the Application Module Service Interface.
-
Optionally, set JDeveloper preferences to specify a default suffix for the names of generated SDO classes, modify the default subpackage where the service interface and classes reside, and set the default namespace prefix for the generated SDO schema and web service, as described in How to Set Preferences for Generating the ADF Web Service Interface.
To set the SDO name and namespace for a view object:
How to Customize the SDO Properties of Service-Enabled View Objects
You can use the overview editor for the view object to customize the SDO component definition of the service-enabled view object. By default, all attributes of the service-enabled view object will be exposed as SDO properties. By customizing the view object definition, you can exclude individual SDO properties from participating in the service interface. In the case of SDO properties that define numeric values, you can associate two properties so they appear as a single complex type in the service interface. For example, you can associate one property that defines a currency code or unit of measure with another property that displays the numeric value. Currently, only the complex service types AmountType
(a currency code) and MeasureType
(a unit of measure) are supported.
Excluding Individual SDO Properties in a Generated SDO Component
As a result of enabling the web service interface using the overview editor for the application module, JDeveloper automatically enables your parent view instance selections as SDO components. Additionally, you can selectively service-enable individual child view objects and generate SDO components. By default, generated SDO components expose all attributes of their base view object definition as SDO properties. You can hide any attribute that you do not want the service interface to return as an SDO property.
You use the Attributes page of the overview editor to select the view object attribute that you want to exclude from the service interface. You then use the Details tab in the overview editor for the view object to hide the selected attribute from the SDO component.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete these tasks:
-
Create the desired view objects, as described in How to Create an Entity-Based View Object, and How to Create a Custom SQL Mode View Object.
-
Service-enable the desired view object, as described in How to Service-Enable Individual View Objects.
To exclude an SDO property from a service-enabled view object:
- In the Applications window, double-click the view object.
- In the overview editor, click the Attributes navigation tab.
- In the Attributes page, select the attribute corresponding to the property that you want to exclude and then click the Details tab and deselect SDO Property.
Associating Related SDO Properties Using Complex Data Types
As a result of service-enabling the view object, JDeveloper automatically exposes SDO properties as XSD-defined service types that correspond to the data types of the underlying view object's attributes. In the case of attributes that define numeric values, you can change the SDO property's service type to associate a related property using one of these predefined service types:
-
AmountType
service type, for use with any property that defines a currency code -
MeasureType
service type, for use with any property that defines a unit of measure
When you change the service type of an SDO property to either of these complex types, the service interface associates the two properties together and returns them as a single XML element. Both properties of the SDO component must be defined by attributes in the base service-enabled view object.
For example, suppose that your view object defines the OrderTotal
attribute and a CurrencyCode
attribute to specify the currency code of allowed countries. By default, the service interface exposes these attributes as SDO properties and returns each property as a separate XML element:
<OrderTotal>100.00</Price> <CurrencyCode>USD</CurrencyCode>
If you change the type of the OrderTotal
property (assume that the XSD file defines this property as a decimal
type) to the complex type AmountType
and then associate the CurrencyCode
property, the service interface will return them as one XML element:
<OrderTotal CurrencyCode="USD">123.00</OrderTotal>
Also, when you generate a web service proxy, as described in Calling a Web Service Method Using the Proxy Class in an Application Module, the class treats the two values as one object:
AmountType price; ... price.setValue(123.00); price.setCurrencyCode("USD");
You use the Attributes page of the overview editor to select the view object attribute whose service type you want to customize. You use the Edit Attribute dialog that you display from the Attributes page of the overview editor to associate SDO properties for the selected attribute and select the predefined complex service type.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete these tasks:
-
Create the desired view objects, as described in How to Create an Entity-Based View Object, and How to Create a Custom SQL Mode View Object.
-
Service-enable the desired view object, as described in How to Service-Enable Individual View Objects.
To associate SDO properties in a service-enabled view object:
How to Support Nested Processing in Service-Enabled Master-Detail View Objects
When your data model defines master-detail relationships between parent and child view objects, the service operations that you enable for the master view object may not automatically be executed on the detail view object. Post operations on the detail view object are supported by default when the primary source entity object of the master view object is composed with the primary destination entity object of the detail view object. This master-detail relationship is known as a composition association and is created in JDeveloper when the source entity object contains the destination entity object as a logical, nested part, as described in What You May Need to Know About Composition Associations.
To support create/merge/update/process methods that post child details along with the parent, you will need to create a view link to define the master-detail relationship according to one of these scenarios:
-
The view link uses the composition association, then post operations on the detail view object are supported by default.
-
The view link is based on an association, and the association has the destination accessor generated, and the association has a custom property
SERVICE_PROCESS_CHILDREN=true
defined. -
The view link is not based on an association but has a custom property
SERVICE_PROCESS_CHILDREN=true
defined.
The custom property provides an alternative to using a composition association that makes it convenient to support nested processing for any view objects with a view link defined. You can define SERVICE_PROCESS_CHILDREN
as a custom property in the overview editor for either the view link or the view link's association (when present).
To support get and find methods that retrieve child details along with the parent, the view link between the master and detail view objects must have the destination accessor generated. The destination accessor permits traversal of the hierarchy from the master to the detail view object.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to have an understanding of how master-detail relationships are defined using view links or entity associations:
-
For more information about view links, see Working with Multiple Tables in a Master-Detail Hierarchy.
-
For more information about associations, see Creating and Configuring Associations.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete these tasks:
-
Create the desired view objects and service-enable the child view object in the master-detail hierarchy, as described in How to Service-Enable Individual View Objects.
-
If the view link is not based on an association, confirm that a destination accessor exists for the view link by opening the view link in the overview editor and viewing the Relationship page. To generate the accessor so it appears in the Relationship page, click the Edit Accessors button, and then, in the View Link Properties dialog, select Generate Accessor in View Object for the destination accessor.
If the view link is based on an association, then the destination accessor must exist for the association's destination entity object. To generate one, use the Relationship page of the overview editor for the association.
To support nested processing in a master-detail hierarchy:
What Happens When You Create SDO Classes
When you create SDO classes, the following files are generated and appear in the Applications window under the owning view object:
-
Service data object interface
-
Service data object class
-
Service data object schema file
-
Service data object result class and Interface, generated when Support Warnings is enabled in the Select Java Options dialog
Do not modify the files generated for service-enabled view objects. The generated files implement required methods of the view object SDO interface.
Property Accessors Generated in the SDO Interface
The view object SDO interface contains strongly typed accessors for the SDO properties, as shown in the following example.
package oracle.summit.model.amservice.common; public interface OrdersViewSDO extends java.io.Serializable { public java.math.Integer getId(); public void setId(java.lang.Integer value); ...}
View Object Interface Implemented by SDO Class
The view object SDO class implements the view object SDO interface and extends the SDODataObject
class, which is Oracle's implementation of the SDO specification.
At runtime an instance of an SDO object represents a row in memory.
The SDO class is similar to the view row class, as shown in the following example.
package oracle.summit.model.amservice.common; import org.eclipse.persistence.sdo.SDODataObject; public class OrdersViewSDOImpl extends SDODataObject implements OrdersViewSDO { ... }
View Object Schema Generated in the SDO Schema File
The view object SDO schema file, as shown in Figure 15-16, is an XML Schema file which represents the SDO schema.
Container Object Implemented by SDO Result Class and Interface
The view object SDO result class is a container object that allows a service operation to return a list of view rows (wrapped in service data objects) and a list of warnings associated with these view rows. Specifically, the service get operation returns the original object, while the create/update/merge/find/process operations return a wrapper object that contains a list of the original object and a list of information messages, and the delete operation returns only the informational message. If you have enabled the Support Warnings option for the service-enabled view object, you can use the generated method result interface to extract warnings.
The view object SDO result class, as shown in the following example, is similar to the view row class.
package oracle.summit.model.amservice.common; import oracle.sdo.SDODataObject; public class OrdersViewSDOResultImpl extends oracle.jbo.common.service.types.MethodResultImpl implements OrdersViewResult { public static final int START_PROPERTY_INDEX = oracle.jbo.common.service.types.MethodResultImpl.END_PROPERTY_INDEX + 1; public static final int END_PROPERTY_INDEX = START_PROPERTY_INDEX + 0; public OrdersViewResultImpl() {} public java.util.List getValue() { return getList(START_PROPERTY_INDEX + 0); } public void setValue(java.util.List value) { set(START_PROPERTY_INDEX + 0 , value); } }
How to Expose a Declarative Find Operation Filtered By a Required Bind Variable
The ADF service interface framework allows you to expose declarative find operations to execute the query define by a view object you select. However, when that query uses a bind variable to filter the query results, the bind variable must not be specified as Required and Updatable. Because the service interface does not expose required, updatable bind variables, a find operation that you execute for such a view object would fail to return any result.
When you want to filter a query result using bind parameters, use the view criteria and expose it as a find operation on the service interface. A service interface find operation based on a view criteria that you create can specify required bind variables.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to have an understanding of how to filter view object queries using bind variables. For more information, see Working with Bind Variables.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete these tasks:
-
Create the desired application module, as described in How to Create an Application Module.
-
Create the view criteria, as described in How to Create Named View Criteria Declaratively. In the Edit View Criteria dialog, set the criteria item as a bind variable and set the Validation field to Required. This selection ensures that the query will not execute without a valid value.
To expose a find operation for a view criteria with required bind variable:
How to Expose a Custom Find Method Filtered By a Required Bind Variable
As an alternative to exposing a declarative find operation that relies on a view criteria, you can define a service method in your data model project's application module implementation class. The class you create for this purpose allows you to encapsulate business service functionality into a single method that you implement. For details about the purpose of the custom application module implementation class, see Customizing an Application Module with Service Methods.
The following example shows a custom find method implemented in the AppModuleName
Impl.java
file to set the bind variable and execute the view object instance query. It uses setNamedWhereClauseParam()
on the view object instance to set the bind variable. Before executing the query, the find method sets the view object in forward-only mode to prevent caching the view rows that the find method iterates over.
public class AppModuleImpl extends ApplicationModuleImpl { public List<ViewRowImpl> findProducts(String location) { List<ViewRowImpl> result = new ArrayList<ViewRowImpl>(); ViewObjectImpl vo = getProductsView1(); vo.setNamedWhereClauseParam("TheLocation", location); vo.setForwardOnly(true); vo.executeQuery(); while (vo.hasNext()) { result.add((ViewRowImpl)vo.next()); } return result; } }
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to have an understanding of how to filter view object queries using bind variables. For more information, see Working with Bind Variables.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete these tasks:
-
Create the custom application module class, as described in How to Generate a Custom Class for an Application Module.
-
Create the custom find method to programmatically filter a query result and set the required bind variable, as described in How to Add a WHERE Clause with Named Bind Variables at Runtime.
To expose a find method that sets a required bind variable:
How to Generate Asynchronous ADF Web Service Methods
By default, the web service supports synchronous service methods. This forces the invoking client application to wait for the response to return before it can continue with its work. In cases where the response returns immediately, this method of invoking the web service is common. However, because request processing can be delayed, it is often useful for the client application to continue its work and to handle the response later on.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to have an understanding of invoking web services using asynchronous request-response. For more information, see the "Overview of Asynchronous Web Services" section of the "Developing Asynchronous Web Services" chapter in Developing Oracle Infrastructure Web Services.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete this task:
- Before you can deploy an asynchronous web service, you must configure the queues used to store the request and response. For information about configuring the request and response queues, see the "Creating the Request and Response Queues" section of the "Developing Asynchronous Web Services" chapter in Developing Oracle Infrastructure Web Services.
To expose asynchronous web service methods:
- In the Applications window, double-click the application module.
- In the overview editor, click the Service Interface navigation tab and then click the Edit attributes of Service Interface icon.
- In the Edit Service Interface dialog, in the Service Interface page, select Generate Asynchronous Web Service Methods.
- Click OK.
What Happens When You Generate Asynchronous ADF Web Service Methods
JDeveloper generates the service interface for the web service and enables the asynchronous service operation. As shown in the following example, the class annotation @AsyncWebService
declares the EmpService
service interface asynchronous and for each synchronous method in the interface, the service exposes an asynchronous method with the same method name and "Async
" appended.
Exposing both synchronous and asynchronous methods in the same interface allows the web service client developer to decide how to invoke the operation through a web service proxy: by calling the appropriately named method. Note that developers must not invoke asynchronous methods through the ADF Business Components service proxy that is returned from oracle.jbo.client.svc.ServiceFactory.getServiceProxy()
method.
In this example, because the EmpService
service is enabled for asynchronous operation, the interface exposes the getEmployeeAsync()
method and declares the getEmployee()
method synchronous using the method annotation @CallbackMethod(exclude=true)
to override the default operation (it is the exclude=true
part that declares a method in the asynchronous service as synchronous). No annotation is required to declare the asynchronous service methods when the class annotation @AsyncWebService
is present.
import javax.xml.ws.Action; ... import oracle.webservices.annotations.async.AsyncWebService; import oracle.webservices.annotations.async.CallbackMethod; @SOAPBinding(parameterStyle=SOAPBinding.ParameterStyle.WRAPPED, style=SOAPBinding.Style.DOCUMENT) @PortableWebService(targetNamespace="http://xmlns.example.com/apps/service/", name="EmpService", wsdlLocation="oracle/apps/service/EmpService.wsdl") @SDODatabinding(schemaLocation="oracle/apps/service/EmpService.xsd") @AsyncWebService public interface EmpService { ... @WebMethod(action="http://xmlns.example.com/apps/service/getEmployee", operationName="getEmployee") @RequestWrapper(targetNamespace="http://xmlns.example.com/apps/service/types/", localName="getEmployee") @ResponseWrapper(targetNamespace="http://xmlns.example.com/apps/service/types/", localName="getEmployeeResponse") @WebResult(name="result") @CallbackMethod(exclude=true) Emp getEmployee(@WebParam(mode = WebParam.Mode.IN, name="empno") Integer empno) throws ServiceException; @WebMethod(action="http://xmlns.example.com/apps/service/getEmployeeAsync", operationName="getEmployeeAsync") @RequestWrapper(targetNamespace="http://xmlns.example.com/apps/service/types/", localName="getEmployeeAsync") @ResponseWrapper(targetNamespace="http://xmlns.example.com/apps/service/types/", localName="getEmployeeAsyncResponse") @WebResult(name="result") @Action(input="http://xmlns.example.com/apps/service/getEmployeeAsync", output="http://xmlns.example.com/apps/service/getEmployeeAsyncResponse") Emp getEmployeeAsync(@WebParam(mode = WebParam.Mode.IN, name="empno") Integer empno); }
The duplicate asynchronous methods delegate to the synchronous methods in the service implementation, as shown in the following example. This ensures that the underlying business logic is the same for operations declared as either synchronous or asynchronous.
... import oracle.webservices.annotations.async.AsyncWebService; @Stateless(name="oracle.apps.service.EmpServiceBean", mappedName="EmpServiceBean") @Remote(EmpService.class) @PortableWebService(targetNamespace="http://xmlns.oracle.com/apps/service/", serviceName="EmpService", portName="EmpServiceSoapHttpPort", endpointInterface="oracle.apps.service.EmpService") @Interceptors(ServiceContextInterceptor.class) @AsyncWebService public class EmpServiceImpl extends ServiceImpl implements EmpService { ... /** * getEmployee: generated method. Do not modify. */ public Emp getEmployee(Integer empno) throws ServiceException { return (Emp) get(new Object[] { empno }, "Employee", Emp.class); } /** * getEmployeeAsync: generated method. Do not modify. */ public Emp getEmployeeAsync(Integer empno) throws ServiceException { return getEmployee(empno); } }
What Happens at Runtime: How the Asynchronous Call Is Made
From the client's point of view, an asynchronous call consists of two one-way message exchanges. The sequence diagram in Figure 15-12 depicts the following flow:
-
The client calls for the asynchronous operation. (In the figure, Step 1.)
-
The asynchronous service receives the request and returns the HTTP acknowledgement back to the client without actually processing the request. (In the figure, Step 2)
-
Eventually the asynchronous operation will complete and the module on the server side will send the response to the client side. (In the figure, Step 3.)
To receive the response at the client side, the client must have some kind of HTTP listener, for example, a servlet or a web service.
-
The client side-generated web service (the Callback Service) receives the asynchronous responses. (In the figure, Step 4.)
The module in Step 3 on the server side acts like a client to the callback service and so is referred as the callback client.
Figure 15-12 Asynchronous Call Sequence

How to Set Preferences for Generating the ADF Web Service Interface
You have additional control of the service generated by JDeveloper. You can set JDeveloper preferences to perform the following tasks:
-
Specify a default suffix for the names of generated SDO classes
-
Modify the default subpackage where the service interface and classes reside
-
Shape the URI of the generated SDO schema and web service target namespace by setting a default namespace prefix and by specifying the names of packages that you want to exclude from the URI.
To set the SDO class name suffix:
-
In the main menu, choose Tools and then Preferences.
-
In the Preferences dialog, expand ADF Business Components and choose Class Naming.
-
In the View Object suffix list, enter a suffix for SDO, for example,
SDO
.
To set the default subpackage for the generated service interface:
-
In the main menu, choose Tools and then Preferences.
-
In the Preferences dialog, expand ADF Business Components and choose Packages.
-
In the Relative Package Specification for Classes list, specify the default package names:
-
To set the Service Interface package name, enter a value for the Client Interface. (The Service Interface displays the same package name you specify for the client interface). The default package name is
common
. -
Enter a value for the Service Interface Subpackage of the Service Interface. The default subpackage name is
serviceinterface
.
For example, if you enter
common
for Service Interface andserviceinterface
for Service Interface Subpackage (the defaults), service interfaces for data model components in the data model packageoracle.summit.model.amservice
will be placed in the subpackageoracle.summit.model.amservice.common.serviceinterface
. -
To shape the URI of the generated SDO schema and service interface target namespace:
How to Set Display Names for Service View Instances and Attributes
Display names are labels that support the web service consuming application to programmatically generate a user interface and to display the service view instance and its attributes with the correct identifying labels. To enable access to these display names at runtime by the consuming application, you use the Create Service Interface wizard to add the built-in method getDfltObjAttrHints()
to the remote client service interface. This method lets the consuming application developer programmatically retrieve the Display Name UI hint associated with the service view instance and its attributes. You define the UI hints in the Property window for the view object, where you can define a singular label and a plural label for each view instance name and attribute name. For example, as Figure 15-13 shows, you may define UI hints for the OrdersVO
view object with the labels Order
and Orders
.
Figure 15-13 Display Name UI Hints for View Objects

Description of "Figure 15-13 Display Name UI Hints for View Objects"
Before you begin:
You will need to complete this task:
- Define the built-in method
getDfltObjAttrHints()
in the remote client service interface, as described in How to Enable the Application Module Service Interface.
To set UI Hint labels for the view instance and its attributes:
- In the Applications window, double-click the application module that defines the view instance for the SDO.
- In the Data Model list, select the view instance name and, below the list, click the View Definition link.
- In the overview editor for the view object, click the General navigation tab.
- In the main menu, choose View and then Property Inspector.
- In the Property Inspector, to set the label for the view object instance, expand UI Hints and enter the labels for the Display Name and Display Name (Plural).
- In the overview editor for the view object, click the Attributes navigation tab and select the attribute that you want to label.
- In the Property Inspector, to set the label for the view object attribute, expand UI Hints and enter the labels for the Label and Display Name (Plural).
How to Secure the ADF Web Service for Access By SOAP Clients
At runtime, the web service client will invoke the service-enable methods of the application module through the SOAP protocol. You can configure an Oracle Web Service Manager (OWSM) security policy to enable authentication and authorization on the service. The security policy that you select will require the SOAP client call to provide credential information (or SAML token) as part of the SOAP header. You can also configure other policies to enable message protection (integrity and confidentiality) for inbound SOAP requests, for instance.
To secure the web service for SOAP clients:
-
Configure an OWSM authentication policy.
-
Configure an OWSM authorization policy.
You can enable authentication to require users to supply credentials before they have access to the service methods on the service interface. The type of authentication required is configured on the service implementation class using an OWSM authentication policy annotation.
You can enable permission checking to enable only users with sufficient privileges to invoke a service method on the service interface. Permission checking is configured on the service implementation class using this OWSM authorization annotation:
-
binding_permission_authorization_policy
This policy provides simple permission-based authorization for the request based on the authenticated Subject at the SOAP binding level. This policy ensures that the Subject has permission to perform the operation. This policy should follow an authentication policy where the Subject is established and can be attached to any SOAP-based endpoint.
As an alternative to the permission checking policy, you can configure one of these role-based OWSM security policies:
-
binding_authorization_denyall_policy
This policy provides simple role-based authorization for the request based on the authenticated Subject at the SOAP binding level. This policy denies all users with any roles. It should follow an authentication policy where the Subject is established and can be attached to any SOAP-based endpoint.
-
binding_authorization_permitall_policy
This policy provides a simple role-based authorization for the request based on the authenticated Subject at the SOAP binding level. This policy permits all users with any roles. It should follow an authentication policy where the Subject is established and can be attached to any SOAP-based endpoint.
For further details about the authorization policies, see Security Policies—Authorization Only in Securing Web Services and Managing Policies with Oracle Web Services Manager.
ADF service interface framework also provides an EJB interceptor ServicePermissionCheckInterceptor
which does the same permission check as oracle/binding_permission_authorization_policy
, and additionally covers RMI invocation to services. If your services will always be invoked through SOAP, you should attach the OWSM oracle/binding_permission_authorization_policy
authorization policy. If your services will also be invoked through RMI, you should attach the EJB interceptor ServicePermissionCheckInterceptor
.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to have an understanding of the predefined authentication policies supported by OWSM. For more information, see Security Policies-Authentication Only in Securing Web Services and Managing Policies with Oracle Web Services Manager.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete this task:
- Grant users access to the service, as described in How to Grant Test Users Access to the Service.
To configure an authentication and authorization:
-
In the Applications window, expand the application module, expand the serviceinterface node, and then double-click the service implementation class (
AppModule
ServiceImpl.java
) node.In the web service generated from the
ServiceAppModule
application module in theoracle.summit.model.amservice
package in theSummitADF_Examples
workspace, the service implementation class isServiceAppModuleServiceImpl.java
. -
If your services will always be invoked exclusively through SOAP (and not RMI), you should use an OWSM authorization policy as follows:
-
In the source for the service implementation class, place your cursor on the
@PortableWebService
annotation.For example,
ServiceAppModuleServiceImpl.java
shows the annotation for the service as follows:... @PortableWebService( targetNamespace="/oracle/summit/model/amservice/common/", serviceName="ServiceAppModuleService", portName="ServiceAppModuleServiceSoapHttpPort", endpointInterface= "oracle.summit.model...common.serviceinterface.ServiceAppModuleService")
-
In the Properties window, expand the Policies section, and click the button next to the Multiple Policies field.
-
In the Edit Property: Multiple Policies dialog, select the desired security policy and click OK.
For details about the security policies supported by OWSM, see Security Policies—Authorization Only in Securing Web Services and Managing Policies with Oracle Web Services Manager.
-
Return to the source file and note that annotation
@PolicySet
is configured.The
@PolicySet
annotation that you define for the service implementation class specifies the security requirements to potential clients. In this example, the annotation shows both the permission-checking authorization policy (oracle/binding_permission_authorization_policy
) and an authentication policy:... @PortableWebService( targetNamespace="/oracle/summit/model/amservice/common/", serviceName="ServiceAppModuleService", portName="ServiceAppModuleServiceSoapHttpPort", endpointInterface= "oracle.summit.model...common.serviceinterface.ServiceAppModuleService") @PolicySet(references = { @PolicyReference(value = "oracle/wss_username_token_service_policy"), @PolicyReference(value = "oracle/binding_permission_authorization_policy") })
-
-
If your services will be invoked through SOAP and RMI, you should use
ServicePermissionCheckInterceptor
only (there is no need to use an OWSM authorization policy) as follows.In the source editor, place your cursor in the
@Interceptors
annotation and addServicePermissionCheckInterceptor.class
to enable permission checking at runtime.... @Interceptors({ ServiceContextInterceptor.class, ServicePermissionCheckInterceptor.class }) @Stateless(name= "oracle.summit.model.amservice.common.ServiceAppModuleServiceBean", mappedName="ServiceAppModuleServiceBean")
-
Save the service implementation class file.
How to Secure the ADF Web Service for Access By RMI Clients
Because the ADF web service is implemented as an EJB and deployed on Oracle WebLogic Server as Oracle Web Service's PortableWebService
, the client application can invoke the service-enable methods of the application module through the RMI protocol.
To secure the web service for RMI clients:
-
Configure JNDI context properties to enable authentication.
-
Enable permission checking to configure an authorization policy.
Before you begin:
It may be helpful to have an understanding of the predefined authorization policies supported by OWSM. For more information, see Security Policies—Authorization Only in Securing Web Services and Managing Policies with Oracle Web Services Manager.
Enabling Authentication for RMI Clients
When the ADF web service is invoked through RMI, authentication is handled with the common JAAS login module. The login module can be passed the principal and credential as part of the JNDI initial context for the EJB in the calling application. If you do not define the JNDI context properties, the login module will attempt to obtain the caller's current security context.
When you choose to define remote JNDI context information, then these four JNDI context properties need to be added to the connections.xml
file.
Note:
When you intend to test the service in JDeveloper using Integrated WebLogic Server, before deploying the service you can edit the JNDI context properties in the connections.xml
file directly. However, when you deploy the service to standalone Oracle WebLogic Server, you will use Oracle Enterprise Manager to configure the JNDI context properties.
-
jndiFactoryInitial
should be set toweblogic.jndi.WLInitialContextFactory
. -
jndiProviderURL
is the JNDI provider URL that indicates the location of the JNDI server. The URL should be composed ast3://
<hostname>
:
<server port>
.When you test the service in JDeveloper, and your service is deployed to Integrated WebLogic Server, specify the JNDI provider URL of Integrated WebLogic Server:
t3://
<hostname>
:7101.When you deploy the service to remote Oracle WebLogic Server, specify a URL like:
t3://localhost:8888
, wheret3
is the Oracle WebLogic protocol,localhost
is the host name that the remote Oracle WebLogic Server instance runs in,8888
is the port number. -
jndiSecurityPrincipal
specifies the principal (user name) with permission to access the remote JNDI.When you test the service in JDeveloper Integrated WebLogic Server, you should omit this context property since no security is configured for the JNDI server on Integrated WebLogic Server.
When you deploy the service to standalone Oracle WebLogic Server, the user name can be read from the file.
-
jndiSecurityCredentials
specifies the credentials (password) to be used for the security principal.When you test the service in JDeveloper Integrated WebLogic Server, you should omit this context property since no security is configured for the JNDI server on Integrated WebLogic Server.
When you deploy the service to standalone Oracle WebLogic Server in a test environment, you can specify credentials in plain text for the JNDI provider. For example, you can specify
weblogic
/weblogic1
, which are the default administrator user name/password credentials with sufficient privileges to access JNDI provider for Oracle WebLogic Server.When you deploy the service to a production environment, you must remove the plain text password to avoid creating a security vulnerability, and the
connections.xml
file must contain<SecureRefAddr addrType="jndiSecurityCredentials"/>
with no password. To configure the service password for standalone Oracle WebLogic Server, you must use Oracle Enterprise Manager, which will store the encrypted password in Oracle's credential store.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
To configure JNDI context properties to handle authentication:
Configuring Authorization for RMI Clients
You can enable permission checking to allow only users with sufficient privileges to invoke a service method on the service interface. In order to enable permission checking, the ADF service interface framework provides an EJB interceptor named ServicePermissionCheckInterceptor
. This EJB interceptor ensures permission checking is enforced at runtime. Currently, the interceptor is coded with the same logic that OWSM implements for the authorization policy binding_permission_authorization_policy
.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete these tasks:
-
Configure the authentication policy for the service in the
connections.xml
file of the client application (the one invoking the service), as described in Enabling Authentication for RMI Clients. -
Grant users access to the service, as described in How to Grant Test Users Access to the Service.
To configure a permission-based authorization policy:
How to Grant Test Users Access to the Service
After you have configured the authorization policy for the service, you must configure the Oracle Platform Security Services (OPSS) security provider to specify which users can invoke method on the service. At design time, you perform this task by editing the jazn-data.xml
configuration file to create application roles and make an invoke permission grant to the desired application roles. Then when you deploy the service, the administrator for the target Oracle WebLogic Server will associate enterprise users with the application roles you specify. This allows you to confer the right to invoke a service method to any user who is a member of that application role. Users who are members of a role that has not been granted the invoke permission, will denied access to the service method.
The invoke permission for Oracle Web Services is defined by the oracle.wsm.security.WSFunctionPermission
class. You can grant the invoke permission to the application roles you define for all the methods of the service or just to individual methods.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to have an understanding of application roles and the OPSS security provides. For more information, see the "Introduction to Oracle Platform Security Services" chapter in Securing Applications with Oracle Platform Security Services.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete these tasks:
-
Configure authentication and authorization policies for your service, as described in How to Secure the ADF Web Service for Access By SOAP Clients, or How to Secure the ADF Web Service for Access By RMI Clients.
-
Add the OPSS security provider configuration file to your project by creating a
jazn-data.xml
deployment descriptor. For more information about deployment descriptors, see the "Deploying Applications" chapter in Developing Applications with Oracle JDeveloper.Note that in JDeveloper you open the New Gallery, expand General, select Deployment Descriptors and then Oracle Deployment Descriptors, and click OK.
-
Create the desired application roles that you want to make grants to, as described in Creating Application Roles.
-
For the purpose of testing your web service in JDeveloper using Integrated WebLogic Server, you can populate the application roles with test users, as described in Creating Test Users.
To grant the web service permission to application roles in the jazn-data.xml file:
How to Enable Support for Binary Attachments for SOAP Clients
The ADF service interface framework supports using Message Transmission Optimization Mechanism (MTOM) to handle sending binary data in any service method that operates on a ViewRow
with a BlobDomain
/ClobDomain
attribute. This permits binary data to accompany XML messages, for example when images are required to document an insurance claim. The SDO data objects of the service-enabled application module maps BlobDomain
/ClobDomain
to javax.activation.DataHandler
. These DataHandler
properties could be passed as attachments during SDO data object marshalling/unmarshalling when the web service is called using the SOAP protocol.
To enable MTOM support for your SOAP protocol, you must add the @MTOM
annotation to the service implementation class (for example, ServiceAppModuleServiceImpl.java
) and your method must operate on a view row with BlobDomain
/ClobDomain
attribute.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete this task:
- Configure a character encoding format that the ADF service interface framework can use to convert data defined by the view object as ClobDomain attribute, as described in How to Specify Character Encoding for ClobDomain Type Attributes.
To enable support for sending binary data attachments:
How to Specify Character Encoding for ClobDomain Type Attributes
A consequence of working with large string data, defined in the database as CLOB type, is the character encoding used when converting string data to and from binary data. When you work with ClobDomain
attributes in your service data objects, the ADF service interface framework streams the data by mapping the attribute value to a base64-encoded SDO property. This mapping to base64 binary stream does not include the character set of the original data.
To support converting string data to and from binary data, the ADF service interface framework allows you to configure the encoding character set for individual ClobDomain
attributes of the view object. Alternatively, you can configure the encoding character set at the level of the view object definition, when you want all ClobDomain
attributes to be converted using the same character encoding scheme.
When the framework needs to convert the binary stream to and from characters for ClobDomain
attributes, it can apply the character encoding specified as a value for either of these custom properties that you have defined on the view object:
-
SERVICE_USE_SERVER_DEFAULT_CHARSET
-
SERVICE_CLOB_CONVERSION_CHARSET
The custom property SERVICE_USE_SERVER_DEFAULT_CHARSET
is useful when you do not know the specific character encoding used by the database. Since the character set of the server JVM will be locale dependent, you should take that into account when defaulting to the server's encoding character set.
The ideal configuration for ClobDomain
attributes relies on the custom property SERVICE_CLOB_CONVERSION_CHARSET
and the character encoding that you specify. This configuration assumes that you can verify the character encoding of the target data to ensure that the ADF service interface framework does not convert using a different encoding character set.
Note:
When no custom property is defined on the view object to configure character encoding, at runtime, the ADF service interface framework will default to the UTF-8 character encoding scheme to handle conversion of ClobDomain
data. UTF-8 is a Unicode encoding that provides multilingual support for CLOB data that is supported by Oracle Database.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete this task:
- Enable MTOM support by adding the
@MTOM
annotation to the service implementation class to allow service methods to operate on a view row withClobDomain
attributes, as described in How to Enable Support for Binary Attachments for SOAP Clients.
To configure character encoding for individual ClobDomain attributes of the view object:
-
In the Applications window, double-click the view object that contains ClobDomain attributes.
-
In the overview editor, click the Attributes navigation tab.
-
In the Attributes page, select the attribute with Clob displayed in the Type column.
-
Click the Custom Properties tab, click the Add icon and choose Non-Translatable Property from the dropdown list and then enter one of the following predefined custom properties in the Property name field:
SERVICE_USE_SERVER_DEFAULT_CHARSET
- when you want the character encoding of the JVM to be used to convert the data. Entertrue
for the Value.SERVICE_CLOB_CONVERSION_CHARSET
- when you want to specify a known character encoding that corresponds to the character encoding of the data. Enter the desired character encoding for the Value. For example, you might enterUTF-16
. Note, when no value is supplied, the default UTF-8 will be used.
To configure character encoding for all ClobDomain attributes of the view object:
How to Test the Web Service Using Integrated WebLogic Server
You can run the web service in JDeveloper using Integrated WebLogic Server. You can also deploy the web service to Oracle WebLogic Server to test the service.
To run and test using Integrated WebLogic Server:
How to Prevent Custom Service Methods from Timing Out
When you test the web service you may find that some of your custom methods exceed the established timeout limitation established by the Java Transaction API (JTA). The JTA timeout setting establishes an execution boundary for service methods that by default may not exceed 30 seconds. You can use the Administration Console for Oracle WebLogic Server to increase the JTA timeout setting. If you still receive a timeout exception or you anticipate that the custom methods of the service interface may be long running, you can specify an EJB transaction attribute for the stateless session bean to prevent the EJB from executing those methods in a JTA transaction.
For example, calls to theafterCommit()
method to execute JDBC SQL statements from view objects or entity objects can result in the following SQLException
:
java.sql.SQLException: The transaction is no longer active - status: 'Committed'. No further JDBC access is allowed within this transaction
To perform custom operations in the case of the afterCommit() method, the service-enabled method annotation TransactionAttribute
must be configured as NOT_SUPPORTED
. To make a custom method exempt from timing out, you set TransactionAttributeType.NOT_SUPPORTED
in the Properties window specifically for that method. As the following example shows, JDeveloper updates the method by adding the annotation @TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED)
.
@TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED) public void updateCustomerInterests(List<String> pCategoryIds) throws ServiceException { invokeCustom((Method) _map.get("updateCustomerInterests"), new Object[] { pCategoryIds }, new String[] { null }, false); }
Because a method with this transaction attribute setting will not be executed in the JTA transaction, it is your responsibility to enforce control over the transaction using the ADF Business Components methods of the oracle.jbo.ApplicationModule
and oracle.jbo.Transaction
interfaces. For instance, as the following example shows, the methods of the implementation class of the application module that you service-enabled, will need to call am.getDBTransaction().commit()
or rollback()
in order to complete the transaction.
public void updateCustomerInterests(List pCategoryIds) { try { if (pCategoryIds != null && pCategoryIds.size() > 0) { List<Integer> copyOfCategoryIds = (List<Integer>) this.cloneList(pCategoryIds); ViewObject selectedCategories = this.getSelectedCategoriesShuttleList(); RowSetIterator rsi = selectedCategories.createRowSetIterator(null); // remove rows for the current user not in the list of product keys while (rsi.hasNext()) { Row r = rsi.next(); Number interestId = (Number)r.getAttribute("CategoryId"); // existing row is in the list, we're ok, so remove from list. if (copyOfCategoryIds.contains(interestId)) { copyOfCategoryIds.remove(interestId); } // if the existing row is in not list, remove it. else { r.remove(); } } rsi.closeRowSetIterator(); // at this point, add new rows for the keys that are left for (int i =0 ;i < copyOfCategoryIds.size(); i++ ) { Row newRow = selectedCategories.createRow(); selectedCategories.insertRow(newRow); newRow.setAttribute("CategoryId", (String) copyOfCategoryIds.get(i).toString()); } this.getTransaction().commit(); } } catch (JboException e) { this.getTransaction().rollback(); throw e; } }
You should not change the default transaction attribute setting for the standard service methods generated for the service interface (see Table 15-1). The standard methods will execute within the default execution boundary set for the JTA transaction.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
To prevent custom methods from executing in a JTA transaction:
How to Deploy Web Services to Oracle WebLogic Server
You can deploy the web service to Oracle WebLogic Server, for example to perform a second stage of testing the service.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete these tasks:
-
If your project contains a standard web service (a Java class or interface with the
@WebService
annotation), you must remove the@WebService
annotation from the Java class before you can deploy the Business Components web service. If you attempt to deploy the Business Components web service from the same project as the standard web service, deployment will fail with an Oracle WebLogic Server exception error. It is therefore necessary to create standard web services in a separate project from your ADF Business Components service. -
If you created an asynchronous web service, before you can deploy the service you must configure the queues used to store the request and response. For information about configuring the request and response queues, see the "Creating the Request and Response Queues" section of the "Developing Asynchronous Web Services" chapter in Developing Oracle Infrastructure Web Services.
-
If you configured authorization for the web service, as described in How to Secure the ADF Web Service for Access By SOAP Clients, edit the
weblogic-application.xml
file to define application ID parameters. This file appears in the Applications window in the Application Resources panel, under the Descriptors and META-INF nodes.Add the following
<application-param>
definition as the first element:<weblogic-application xmlns="http://www.bea.com/ns/weblogic/weblogic-application" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation= "http://www.bea.com/ns/weblogic/weblogic-application.xsd"> <application-param> <param-name>jps.policystore.applicationid</param-name> <param-value>ApplicationName</param-value> </application-param> ... </weblogic-application>
Note that the
ApplicationName
that you enter must match the name identified in thejazn-data.xml
policy store definition:<jazn-data> <policy-store> <applications> <application> <name>ApplicationName</name> <app-roles> ... </app-roles> <jazn-policy> ... </jazn-policy> </application> </applications> </policy-store> </jazn-data>
-
Edit the
ejb-jar.xml
file to add the followingJpsInterceptor
definition required by the EJB for application roles evaluation. This file appears in the Applications window under the META-INF node of the web service project.<?xml version = '1.0' encoding = 'windows-1252'?> <ejb-jar xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/j2ee/ejb-jar_3_0.xsd" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"> <enterprise-beans> ... </enterprise-beans> <interceptors> <interceptor> <interceptor-class> oracle.security.jps.ee.ejb.JpsInterceptor </interceptor-class> <env-entry> <env-entry-name>application.name</env-entry-name> <env-entry-type>java.lang.String</env-entry-type> <env-entry-value>ApplicationName</env-entry-value> <injection-target> <injection-target-class> oracle.security.jps.ee.ejb.JpsInterceptor </injection-target-class> <injection-target-name> application_name </injection-target-name> </injection-target> </env-entry> </interceptor> ... <interceptors> <assembly-descriptor> <interceptor-binding> <ejb-name>*</ejb-name> <interceptor-class> oracle.security.jps.ee.ejb.JpsInterceptor </interceptor-class> </interceptor-binding> </assembly-descriptor> </ejb-jar>
Note that
ApplicationName
must also match the application name identified in thejazn-data.xml
policy store definition.
To deploy to Oracle WebLogic Server:
-
Create an application server connection to Oracle WebLogic Server:
-
In the main menu, choose Window and then Application Servers.
-
In the Application Servers window, right-click the Application Servers node and choose New Application Server, and complete the Create Application Server Connection wizard.
-
-
Create a service deployment profile:
-
In the Applications window, right-click the project that contains the web service and choose Project Properties.
-
In the Project Properties dialog, open the Deployment page and click New.
-
In the Create Deployment Profile dialog, choose Business Components Service Interface as the archive type, as shown in Figure 15-14.
Figure 15-14 Dialog for Creating a Business Components Service Deployment Profile
-
-
In the main menu, choose Application > Deploy > deployment profile for the deployment profile you created.
-
In the Deploy wizard, on the Deployment Action page, select Deploy to Application Server and click Next.
-
On the Select Server page, select the application server connection.
-
Click OK.
Accessing Remote Data Over the Service-Enabled Application Module
ADF Application Modules publish Service Data Objects (SDOs). You can create service-backed entity objects to utilize SDOs to expose business services in SOAP services.
ADF Business Components application modules offer built-in support for web services and for publishing rows of view object data as service data objects (SDOs). Entity objects that you create in your local data model project can utilize the SDO services that the service-enabled application module exposes on its service interface. By creating service-backed entity objects in your local project, you avoid having to work directly with the service proxy and SDOs programmatically for all common web service data access tasks.
The Create Entity Object wizard makes it easy for you to choose between a local database and the ADF Business Components web service when you create the entity object, as described in How to Use Service-Enabled Entity Objects and View Objects. In this way, service-enabled application modules provide an alternative way to access data that is not available locally in the database.
Once you create the service-backed entity object, you will be able to create view objects, view links, and view criteria to filter the data at runtime. You will also be able to utilize these view objects in your data model as though you were working with locally available data accessed from database tables.
The following sections describe how to augment your data model project using a service-enabled ADF application module.
How to Use Service-Enabled Entity Objects and View Objects
You will want to use the service-backed components as part of your application design strategy when one of the following conditions is true:
-
The client data model project needs to work with data from a service-enabled application that is part of a separate business process.
-
The client data model project needs to work with data from a pluggable, external service.
In the first case, you provide both sides of the service. In the second case, you may not know what the external service looks like and you may need to perform the following:
-
Even though you might not need a Fusion implementation of the service, since the service-enabled application module's service interface is the supported unit of pluggability and the supported way of creating service-backed entity objects and view objects, you create an application module with a service interface that describes the shape you want your "canonical" pluggable service to have.
-
After generating the service-enabled application module, as described in How to Enable the Application Module Service Interface, you then build service-back entity objects and view objects.
-
Finally, you can create an EJB session bean (or an SCA composite) that supports the same service interface as the "canonical" service-enabled application module that you created in Step 2 and configure the
connections.xml
file of the client project containing the service-enabled business components based on this service interface to use this "plugged" version instead.
For details about how to expose an application module as a web service, see Publishing Service-Enabled Application Modules.
Creating Entity Objects Backed by SDO Services
You create the service-backed entity object using the Create Entity Object wizard by supplying the URL for the WSDL document that describes the deployed service already running on an application server. You may locate the WSDL either from a UDDI registry or, when the URL endpoint is not accessible, from the WSDL document file that you have downloaded. The wizard uses the WSDL service description to display the list of available service view instances. In the wizard, you select among the displayed view instances to specify the entity object's data source. At the time you run the wizard, the service endpoint must be accessible in order to locate the WSDL document.
Only unsecured (HTTP) service endpoints may be used to create the service-backed entity object; the Create Entity Object wizard displays an error message when you attempt to access a secured (HTTPS) service endpoint.
Before you begin:
It may be helpful to have an understanding of how to access ADF Business Components services in the client Fusion web application. For more information, see Accessing Remote Data Over the Service-Enabled Application Module.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete these tasks:
-
Obtain the URL for the WSDL document that describes the deployed service. If the unsecured HTTP URL is not accessible, download the WSDL file for the service and use the downloaded WSDL to obtain the service from the local file system.
-
Expose an application module as a web service, as described in How to Enable the Application Module Service Interface.
-
Service-enable specific view object as needed, as described in How to Service-Enable Individual View Objects.
-
Define a complex type (one that includes currency codes or a unit of measure) for attributes of the service-enabled view object as needed, as described in Associating Related SDO Properties Using Complex Data Types.
To create the entity object that uses a service view instance as its data source:
-
In the Applications window, right-click the project in which you want to create the entity object and choose New and then Entity Object.
-
On the Name page of the Create Entity Object wizard, do the following to create the entity object:
-
Enter the package name in which the entity object will be created and enter the entity object name.
-
Select Service Interface as the data source for which you want to create the entity object.
-
Enter the WSDL document URL for the published web service, or click Browse and choose UDDI Registry to use the Find Web Services wizard to locate the web service from a UDDI registry. If the URL endpoint is not accessible, copy the WSDL file to the local file system and then click Browse and choose File System to navigate to the file.
JDeveloper will attempt to connect with the service endpoint and populate the list of service view instances from the WSDL service description. If the endpoint is unavailable, the list will remain empty.
-
From the Service View Instance dropdown, choose the appropriate service view instance as the data source, as shown in Figure 15-15.
Figure 15-15 Service Interface as Data Source in the Create Entity Object Wizard
Description of "Figure 15-15 Service Interface as Data Source in the Create Entity Object Wizard"
-
-
Click Next and modify the attributes settings of the entity object before you complete the wizard.
For example, on the Attributes Settings page, you can enable the Refresh After Insert and Refresh After Update options for attributes that you anticipate will be modified whenever the entity is modified. Typical candidates include a version number column or an updated date column in the row.
-
Click Finish.
Using Complex Data Types with Service-Backed Entity Object Attributes
As a result of creating a service-backed entity object, JDeveloper automatically exposes attributes that were defined by the SDO properties of the base service-enabled view object. When your entity object contains attributes with complex types, you will need to select the complex type's related attribute from the entity object. For example, suppose that your service-backed entity object defines the OrderTotal
attribute and a CurrencyCode
attribute to specify the currency code of allowed countries. You will need to map the related attribute CurrencyCode
to the SDO property type specified by the service-enabled view object. Complex types support these service types:
-
AmountType
service type, for use with any property that defines a currency code -
MeasureType
service type, for use with any property that defines a unit of measure
You use the Attributes page of the overview editor to select the entity object attribute defined as a complex type. You use the Details tab that you display from the Attributes page of the overview editor to map the complex type of the selected attribute to a related attribute of the appropriate type.
Before you begin:
It may be helpful to have an understanding of how to access ADF Business Components services in the client Fusion web application. For more information, see Accessing Remote Data Over the Service-Enabled Application Module.
It may be helpful to have an understanding of complex types and SDO properties. For more information, see Associating Related SDO Properties Using Complex Data Types.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete these tasks:
-
Expose an application module as a web service, as described in How to Enable the Application Module Service Interface.
-
Service-enable the desired view object, as described in How to Service-Enable Individual View Objects.
-
Specify a complex type for individual attributes of the service-enabled view object, as described in Associating Related SDO Properties Using Complex Data Types.
-
Create the service-backed entity object from the service-enabled view object, as described in Creating Entity Objects Backed by SDO Services.
To associate attributes using a complex type in the service-backed entity object:
Creating View Objects Backed by SDO Services
After you add the service-backed entity object to your project, you can create service-backed view objects to query and optionally filter the data from the web service for use in the user interface. A service-backed view object is a view object whose single entity usage references an entity object that is backed an SDO service. You cannot make existing view objects service-backed. Instead, when you create the view object, the new view object will automatically be service-backed if its entity usage is a service-backed entity object.
Before you begin:
It may be helpful to have an understanding of how to access ADF Business Components services in the client Fusion web application. For more information, see Accessing Remote Data Over the Service-Enabled Application Module.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete this task:
- Create the service-backed entity object, as described in Creating Entity Objects Backed by SDO Services.
To create a view object from the service-backed entity object:
What Happens When You Create Service-Backed Business Components
The service-backed entity object is an entity object that encapsulates the details of accessing and, if necessary, modifying a row of data from an ADF Business Components web service. After you use the Create Entity Object wizard to create the service-backed entity object, JDeveloper saves additional service-related metadata in the <Datasource>
element of the entity component definition. The entity component definition includes all the attributes that you selected from the service-enabled view object instance, including attributes with a complex type definition, as shown in the following example.
The service-backed view object references the single, service-backed entity object in its metadata just as any entity-based view object does. You can use the service-backed view object just as you would use any other view object. For details about working with view objects, see Defining SQL Queries Using View Objects. The ADF runtime handles the interaction with the ADF Business Components web service.
<Entity xmlns="http://xmlns.example.com/bc4j" Name="Customer_ServiceBasedEO" InheritPersnalization="true" AliasName="CustomerSEO" BindingStyle="OracleName" UseGlueCode="false"> <DataSource DataSourceClass="oracle.jbo.datasource.svc.SIEODataSourceImpl" Type="ServiceInterface"> <ServiceInterface ServiceName="{http://www.globalcompany.com/oesvc/}OrderEntryService" SDOName="{http://www.globalcompany.com/oesvc/}CustomersSVO" SVIName="{http://www.globalcompany.com/oesvc/}CustomersSVO" CreateOpName="createCustomer" UpdateOpName="updateCustomer" DeleteOpName="deleteCustomer" GetOpName="getCustomer" FindOpName="findCustomers" ProcessOpName="processCustomers"/> </DataSource> <Attribute Name="CustomerId" ColumnName="CustomerId" SQLType="NUMERIC" Type="oracle.jbo.domain.Number" ColumnType="NUMBER" PrimaryKey="true"/> <!-- ... Attribute that is associated with complex type attribute ... --> <Attribute Name="CurrencyCode" Precision="255" ColumnName="CurrencyCode" SQLType="VARCHAR" Type="java.lang.String" ColumnType="VARCHAR2"/> <!-- ... Attribute with complex type mapping ... --> <Attribute Name="OrderTotal" ColumnName="OrdTotal" SQLType="NUMERIC" Type="java.math.BigDecimal" ColumnType="NUMBER" <Properties> <SchemaBasedProperties> <DomainAttrMappings> <DomainAttrMapping MappedAttrName="CurrencyCode" Name="currencyCode"/> </DomainAttrMappings> </SchemaBasedProperties> </Properties> </Attribute> <!-- ... Other Attribute elements here ... --> </Entity>
How to Update the Data Model for Service-Backed Business Components
Because the service interface exposes individual view instances, you are responsible for defining hierarchical relationships between service-backed entity objects (through associations) and service-backed view objects (through view links) in your consuming project. View links and associations are not automatically created when you create the service-backed business component. For example, if the application module of the published ADF Business Components service defines a master-detail relationship that you want to utilize, then you must define a view link for the corresponding view objects in your own project to preserve this hierarchy.
Furthermore, while you can create view links between view objects that query their data locally and service-backed view objects (and the other way around), once you define the view link, you will not be able to create entity-based view objects with the following entity object usages:
-
The view object will not be able to reference a secondary entity usage that is a service-backed entity object.
-
The view object will not be able to reference a primary entity usage that is a service-backed entity object with secondary entity usages.
The same restrictions apply to associations in the client project between regular entity objects and service-backed entity objects: while you can create the associations, you will not be able to create view objects.
You use the Create View Link wizard to specify relationships between the view objects that your project defines, as shown in Figure 15-17. For details about creating view links, see How to Create a Master-Detail Hierarchy Based on Entity Associations.
Figure 15-17 One to Many Relationship Defined in Create View Link Wizard

Description of "Figure 15-17 One to Many Relationship Defined in Create View Link Wizard "
View links you create may define relationships between service-backed view objects and view objects that query locally accessed database tables. For example, you might choose to drive a database-derived detail view object with a service-backed master view object. You can create view links with the combinations shown in Table 15-3.
Table 15-3 Supported View Link Combinations Involving Service-Backed View Objects
Use Case | Master View Object Type | View Linked Detail View Object Type | View Link Cardinality |
---|---|---|---|
Local master rows with remote details |
Query-based |
Service-backed |
One-to-many |
Remote master rows with local details |
Service-backed |
Query-based |
One-to-many |
Local master rows with remote reference information |
Query-based |
Service-backed |
Many-to-one |
Remote master rows with local reference information |
Service-backed |
Query-based |
Many-to-one |
Once you have defined the desired view hierarchy, using the Create View Link wizard, you use the overview editor for your project's application module to define new view instances on the data model, as shown in Figure 15-18. The updated data model allows you to expose the view objects as ADF data controls that enable databinding with the user interface components of the Fusion web application. For details about updating the data model, see Adding Master-Detail View Object Instances to an Application Module.
Figure 15-18 Data Model Contains Service View Instances

Description of "Figure 15-18 Data Model Contains Service View Instances"
How to Configure the Service-Backed Business Components Runtime
Before you can run your application and interact with the published service-enabled ADF application module to invoke service operations, you need to describe the published service, including the service's endpoint provider type and other configuration information. The ADF Business Components ServiceFactory
class (oracle.jbo.client.svc.ServiceFactory
) returns a proxy for the service, then uses the service proxy to invoke the service operations. The service factory can return proxies for three different service endpoint providers, to support these transport protocols:
-
When the service endpoint provider is ADF Business Component, the transport protocol is EJB RMI.
-
When the service endpoint provider is SOA Fabric, the transport protocol is SOA Fabric SDO binding.
-
When the service endpoint provider is SOAP (for JAX-WS clients), the transport protocol is SOAP.
To configure the consuming application to invoke published service operations:
-
Add the
bcProfileName
_Common.jar
file for the SDO's generated classes to the client project's classpath. -
Update the
connections.xml
file in the client project's.adf/META-INF
folder to describe the published ADF Business Components service.The updates you make to the file will depend on the transport protocol your application uses: EJB RMI protocol, SOA Fabric SDO binding, or SOAP protocol (for JAX-WS clients).
Adding the SDO Client Library to the Classpath
Before your application can access the published service, the service consuming project must have access to the generated SDO classes and their schema definitions. These files are packaged in the bcProfileName
_Common.jar
file generated by the development team responsible for publishing the service.
To make the SDO classes and their schema definitions available to your application, obtain the bcProfileName
_Common.jar
file from the service-provider team and place this JAR file in a folder of your local project. For example, you may copy the JAR file into your project's deploy
folder. You can then use JDeveloper to add the JAR file to your project's classpath with a SDO client library you create. For steps to generate the SDO classes JAR file, see How to Deploy Web Services to Oracle WebLogic Server.
Before you begin:
It may be helpful to have an understanding of how to access ADF Business Components services in the client Fusion web application. For more information, see Accessing Remote Data Over the Service-Enabled Application Module.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
To add the SDO client library to the classpath:
Registering the ADF Business Components Service in the Consuming Application's connections.xml for the EJB RMI Protocol
When the service endpoint provider is ADF Business Components, the service factory will return an EJB object proxy bound to a stateless session bean running in the EJB container. You must provide the JNDI context information to allow the consuming application to look up the published service.
Lookup information that you provide to register the published ADF Business Components service appears in the consuming Fusion web application's connections.xml
file, located in the .adf/META-INF
folder relative to the application. The ADF connection architecture uses this file to encapsulate the details of the service endpoint provider.
The JNDI lookup information you provide will depend on whether the published service runs locally (in the same JVM) with the consuming application or runs remotely on a separate server from the consuming application. Typically, the ADF Business Components service is in a different application from the consuming application and is therefore run remotely.
To register the published service with your client application, update the connections.xml
file, as shown in the following example. When the ADF Business Components service runs local to the consuming application (as occurs when you run within JDeveloper), the service factory needs only the JNDI name to look up the service.
Note:
When you deploy the calling application to standalone Oracle WebLogic Server, you will use Oracle Enterprise Manager to configure the JNDI context properties instead of editing the connections.xml
file. For instructions, refer to the online documentation in Oracle Enterprise Manager.
<References xmlns="http://xmlns.oracle.com/adf/jndi"> <Reference name="{www.globalcompany.com}ServiceAppModuleService" className="oracle.jbo.client.svc.Service" xmlns=""> <Factory className="oracle.jbo.client.svc.ServiceFactory"/> <RefAddresses> <StringRefAddr addrType="serviceInterfaceName"> <Contents>oracle.summit.model.amservice.common. serviceinterface.ServiceAppModuleService</Contents> </StringRefAddr> <StringRefAddr addrType="serviceEndpointProvider"> <Contents>ADFBC</Contents> </StringRefAddr> <StringRefAddr addrType="jndiName"> <Contents>ServiceAppModuleServiceBean#oracle.summit.model.amservice.common. serviceinterface.ServiceAppModuleService</Contents> </StringRefAddr> <StringRefAddr addrType="serviceSchemaName"> <Contents>ServiceAppModuleService.xsd</Contents> </StringRefAddr> <StringRefAddr addrType="serviceSchemaLocation"> <Contents>oracle/summit/model/amservice/common/serviceinterface/</Contents> </StringRefAddr> </RefAddresses> </Reference> ... </References>
When the ADF Business Components service runs remotely to the calling client, then remote JNDI context information needs to be added to the connections.xml
file. You can edit these JNDI context properties in the connections.xml
file, as shown the example:
-
jndiFactoryInitial
should be set toweblogic.jndi.WLInitialContextFactory
. -
jndiProviderURL
is the JNDI provider URL that indicates the location of the JNDI server. The URL should be composed ast3://
<hostname>
:
<server port>
.For example, specify a URL like:
t3://localhost:8888
, wheret3
is the Oracle WebLogic protocol,localhost
is the host name that the remote Oracle WebLogic Server instance runs in,8888
is the port number. -
jndiSecurityPrincipal
specifies the principal (user name) with permission to access the remote JNDI.When you deploy the service to standalone Oracle WebLogic Server, the user name can be read from the file.
-
jndiSecurityCredentials
specifies the credentials (password) to be used for the security principal.When you deploy the service to standalone Oracle WebLogic Server in a test environment, you can specify credentials in plain text for the JNDI provider. For example, you can specify
weblogic
/weblogic1
, which are the default administrator user name/password credentials with sufficient privileges to access JNDI provider for Oracle WebLogic Server.When you deploy the service to a production environment, you must remove the plain text password to avoid creating a security vulnerability. As the following example shows, the
connections.xml
file must contain<SecureRefAddr addrType="jndiSecurityCredentials"/>
with no password. To configure the service password for standalone Oracle WebLogic Server, you must use Oracle Enterprise Manager, which will store the encrypted password in Oracle's credential store.
<References xmlns="http://xmlns.oracle.com/adf/jndi"> <Reference name="{www.globalcompany.com}ServiceAppModuleService" className="oracle.jbo.client.svc.Service" xmlns=""> <Factory className="oracle.jbo.client.svc.ServiceFactory"/> <RefAddresses> <StringRefAddr addrType="serviceInterfaceName"> <Contents>oracle.summit.model.amservice.common. serviceinterface.ServiceAppModuleService</Contents> </StringRefAddr> <StringRefAddr addrType="serviceEndpointProvider"> <Contents>ADFBC</Contents> </StringRefAddr> <StringRefAddr addrType="jndiName"> <Contents>ServiceAppModuleServiceBean#oracle.summit.model.amservice.common. serviceinterface.ServiceAppModuleService</Contents> </StringRefAddr> <StringRefAddr addrType="jndiFactoryInitial"> <Contents>weblogic.jndi.WLInitialContextFactory</Contents> </StringRefAddr> <StringRefAddr addrType="jndiProviderURL"> <Contents>t3://localhost:8888</Contents> </StringRefAddr> <StringRefAddr addrType="jndiSecurityPrincipal"> <Contents>a_username</Contents> </StringRefAddr> <SecureRefAddr addrType="jndiSecurityCredentials"/> <StringRefAddr addrType="serviceSchemaName"> <Contents>ServiceAppModuleService.xsd</Contents> </StringRefAddr> <StringRefAddr addrType="serviceSchemaLocation"> <Contents>oracle/summit/model/amservice/common/serviceinterface/</Contents> </StringRefAddr> </RefAddresses> </Reference> ... </References>
Registering the ADF Business Components Service in the Consuming Application's connections.xml for the SOAP Protocol
When the service endpoint provider is SOAP, the service factory will create a dynamic JAX-WS client proxy. You must provide the WSDL URL and port name to allow the consuming application to look up the published service. Additionally, for the SOAP client, OWSM client security policy can be attached as part of the SOAP header.
Lookup information that you provide to register the published ADF Business Components service appears in the consuming Fusion web application's connections.xml
file, located in the .adf/META-INF
folder relative to the application. The ADF connection architecture uses this file to encapsulate the details of the service endpoint provider.
Note:
When you deploy the calling application to standalone Oracle WebLogic Server, you will use Oracle Enterprise Manager to configure the JNDI context properties instead of editing the connections.xml
file. For instructions, refer to the online documentation in Oracle Enterprise Manager.
To register the published service with your client application for the SOAP protocol, depending on whether your application uses identity propagation or identity switching, update the connections.xml
file following the examples below. Identity propagation and switching are similar in that each process involves propagating an identity. In Fusion web applications, identity propagation involves propagating the identity that is currently executing code. Identity switching, on the other hand, involves propagating an application identity that is different from that currently executing code.
To register the published service with your client application so the user identity will be switched based on the credential key, specify the clientside policy oracle/wss11_username_token_with_message_protection_client_policy
in the connections.xml
file as the following example illustrates.
Note:
The connections.xml
file supports OWSM security policy client overrides. When the security policy is oracle/wss11_username_token_with_message_protection_client_policy
, the csf-key
property can be overridden to specify the consuming application's credentials.
<Reference name="{http://xmlns.oracle.com/apps/sample/hrService/}HrService" className="oracle.jbo.client.svc.Service" xmlns=""> <Factory className="oracle.jbo.client.svc.ServiceFactory"/> <RefAddresses> <StringRefAddr addrType="serviceInterfaceName"> <Contents>oracle.apps.sample.hrService.HrService</Contents> </StringRefAddr> <StringRefAddr addrType="serviceEndpointProvider"> <Contents>SOAP</Contents> </StringRefAddr> <StringRefAddr addrType="webServiceConnectionName"> <Contents>HrServiceConnection</Contents> </StringRefAddr> <StringRefAddr addrType="serviceSchemaName"> <Contents>HrService.xsd</Contents> </StringRefAddr> <StringRefAddr addrType="serviceSchemaLocation"> <Contents>oracle/apps/sample/hrService/</Contents> </StringRefAddr> </RefAddresses> </Reference> <Reference name="HrServiceConnection" className="oracle.adf.model.connection.webservice.impl.WebServiceConnectionImpl" xmlns=""> <Factory className="oracle.adf.model.connection.webservice.api.WebServiceConnectionFactory"/> <RefAddresses> <XmlRefAddr addrType="WebServiceConnection"> <Contents> <wsconnection description="http://rws65094fwks:7202/MySampleSvc/HrService?WSDL" service="{http://xmlns.oracle.com/apps/sample/hrService/}HrService"> <model name="{http://xmlns.oracle.com/apps/sample/hrService/}HrService" xmlns="http://oracle.com/ws/model"> <service name="{http://xmlns.oracle.com/apps/sample/hrService/}HrService"> <port name="HrServiceSoapHttpPort" binding="{http://xmlns.oracle.com/apps/sample/hrService/}HrServiceSoapHttp" portType="http://xmlns.oracle.com/apps/sample/hrService/}HrService"> <call-properties xmlns="http://oracle.com/adf"> <call-property id="csf-key" xmlns=""> <name>csf-key</name> <value>meuser.credentials</value> </call-property> </call-properties> <policy-references xmlns="http://oracle.com/adf"> <policy-reference category="security" uri="oracle/wss11_username_token_with_message_protection_client_policy" enabled="true" id="oracle/wss11_username_token_with_message_protection_client_policy" xmlns=""/> </policy-references> <soapaddressUrl="http://rws65094fwks:7202/MySampleSvc/HrService" xmlns="http://schemas.xmlsoap.org/wsdl/soap/"/> </port> </service> </model> </wsconnection> </Contents> </XmlRefAddr> </RefAddresses> </Reference>
To register the published service with your client application so the user identity will be propagated to the caller, specify the clientside policy oracle/wss11_saml_token_with_message_protection_client_policy
in the connections.xml
file, as the following example illustrates.
<Reference name="{http://xmlns.oracle.com/apps/sample/hrService/}HrService" className="oracle.jbo.client.svc.Service" xmlns=""> <Factory className="oracle.jbo.client.svc.ServiceFactory"/> <RefAddresses> <StringRefAddr addrType="serviceInterfaceName"> <Contents>oracle.apps.sample.hrService.HrService</Contents> </StringRefAddr> <StringRefAddr addrType="serviceEndpointProvider"> <Contents>SOAP</Contents> </StringRefAddr> <StringRefAddr addrType="webServiceConnectionName"> <Contents>HrServiceConnection</Contents> </StringRefAddr> <StringRefAddr addrType="serviceSchemaName"> <Contents>HrService.xsd</Contents> </StringRefAddr> <StringRefAddr addrType="serviceSchemaLocation"> <Contents>oracle/apps/sample/hrService/</Contents> </StringRefAddr> </RefAddresses> </Reference> <Reference name="HrServiceConnection" className="oracle.adf.model.connection.webservice.impl.WebServiceConnectionImpl" xmlns=""> <Factory className="oracle.adf.model.connection.webservice.api.WebServiceConnectionFactory"/> <RefAddresses> <XmlRefAddr addrType="WebServiceConnection"> <Contents> <wsconnection description="http://rws65094fwks:7202/MySampleSvc/HrService?WSDL" service="{http://xmlns.oracle.com/apps/sample/hrService/}HrService"> <model name="{http://xmlns.oracle.com/apps/sample/hrService/}HrService" xmlns="http://oracle.com/ws/model"> <service name="{http://xmlns.oracle.com/apps/sample/hrService/}HrService"> <port name="HrServiceSoapHttpPort" binding="{http://xmlns.oracle.com/apps/sample/hrService/}HrServiceSoapHttp" portType="http://xmlns.oracle.com/apps/sample/hrService/}HrService"> <policy-references xmlns="http://oracle.com/adf"> <policy-reference category="security" uri="oracle/wss11_saml_token_with_message_protection_client_policy" enabled="true" id="oracle/wss11_saml_token_with_message_protection_client_policy" xmlns=""/> </policy-references> <soap addressUrl="http://rws65094fwks:7202/MySampleSvc/HrService" xmlns="http://schemas.xmlsoap.org/wsdl/soap/"/> </port> </service> </model> </wsconnection> </Contents> </XmlRefAddr> </RefAddresses> </Reference>
Registering the ADF Business Components Service in the Consuming Application's connections.xml for Fabric SDO Binding
When the service endpoint provider is Fabric, the service factory will return a SOA Fabric composite proxy and call the service running inside a Fabric composite through Fabric's SDO binding. You must provide the name of the Fabric composite to allow the consuming application to look up the published service.
Lookup information that you provide to register the published ADF Business Components service appears in the consuming Fusion web application's connections.xml
file, located in the .adf/META-INF
folder relative to the application. The ADF connection architecture uses this file to encapsulate the details of the service endpoint provider.
Note:
When you deploy the calling application to standalone Oracle WebLogic Server, you will use Oracle Enterprise Manager to configure the JNDI context properties instead of editing the connections.xml
file. For instructions, refer to the online documentation in Oracle Enterprise Manager.
To register the published service with your client application for the Fabric protocol, update the connections.xml
file, as the following example shows, where fabricAddress
is the name of the Fabric composite for the published service.
<References xmlns="http://xmlns.oracle.com/adf/jndi"> <Reference name="{www.globalcompany.com}ServiceAppModuleService" className="oracle.jbo.client.svc.Service" xmlns=""> <Factory className="oracle.jbo.client.svc.ServiceFactory"/> <RefAddresses> <StringRefAddr addrType="serviceInterfaceName"> <Contents>oracle.summit.model.amservice.common. serviceinterface.ServiceAppModuleService</Contents> </StringRefAddr> <StringRefAddr addrType="serviceEndpointProvider"> <Contents>Fabric</Contents> </StringRefAddr> <StringRefAddr addrType="fabricAddress"> <Contents>fabric_ServiceAppModuleService</Contents> <StringRefAddr addrType="serviceSchemaName"> <Contents>ServiceAppModuleService.xsd</Contents> </StringRefAddr> <StringRefAddr addrType="serviceSchemaLocation"> <Contents>oracle/summit/model/amservice/common/serviceinterface/</Contents> </StringRefAddr> </RefAddresses> </Reference> ... </References>
How to Test the Service-Backed Components in the Oracle ADF Model Tester
Before you can launch the Oracle ADF Model Tester, your project must meet the runtime requirements, as described in How to Configure the Service-Backed Business Components Runtime. The Oracle ADF Model Tester will display the view objects you create from the remote web service and allow you to interact with the service to perform standard CRUD operations.
Because the application module that you run can access locally queried data and remotely queried data together, service-backed view objects and database-derived view objects will display in the same tester. If the endpoint is unavailable at the time you select the service-backed view object in the Oracle ADF Model Tester, you will get a runtime exception.
For details about running the Oracle ADF Model Tester, see How to Run the Oracle ADF Model Tester Using Configurations.
How to Invoke Operations of the Service-Backed Components in the Consuming Application
The ADF Business Components service interface requires that you return a service proxy to ensure that operations you invoke use the transport protocol specified by the published service.
Before you begin:
It may be helpful to have an understanding of how to access ADF Business Components services in the client Fusion web application. For more information, see Accessing Remote Data Over the Service-Enabled Application Module.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete this task:
-
Ensure that the consuming application has the correct libraries on the classpath. In the Applications window, double-click the project and in the Project Properties dialog, select Libraries and Classpath and confirm the following libraries appear:
-
Java EE 1.5
-
Oracle XML Parser v2
-
BC4J Service Client
-
JAX-WS Client
-
The service's common JAR file
-
As the following example shows, when you invoke the operation, you perform the following tasks:
import commonj.sdo.DataObject; import commonj.sdo.helper.DataFactory; import commonj.sdo.helper.XMLHelper; import hr.common.Dept; import hr.common.serviceinterface.HRAppService; import oracle.jbo.client.svc.ServiceFactory; ... { HRAppService proxy = (HRAppService) ServiceFactory.getServiceProxy(HRAppService.NAME); Dept dept = (Dept) ServiceFactory.getDataFactory(proxy).create("http://example.com/hr/common/" "Dept"); dept.setDname("ENGINEERING"); ... dept = proxy.createDept(dept); String xml = ServiceFactory.getXMLHelper(proxy).save((DataObject) dept, "http://example.com/hr/common/", "dept"); out.print(xml); }
What You May Need to Know About Creating Service Data Objects in the Consuming Application
The ADF service interface framework defines a set of common data objects, such as oracle.jbo.common.service.types.FindCriteria
, oracle.jbo.common.service.types.FindControl
, oracle.jbo.common.service.types.ProcessControl
, and so on. Those data objects are used in standard findXxx()
method and processXxx()
method calls. You can create these data objects in the consuming application and pass them to the standard service methods. As the following example shows, you can need to call the data factory class' create()
method to construct those data objects before passing them into the findXxx()
or processXxx()
methods.
FindCriteria fc = (FindCriteria) ServiceFactory.getDataFactory(proxy).create ("http://xmlns.oracle.com/adf/svc/types/", "FindCriteria");
What You May Need to Know About Invoking Built-In Service Methods in the Consuming Application
The ADF service interface framework defines several built-in SOAP service methods that may be optionally enabled for the service view instances, including getDftlObjAttrHints()
, getServiceLastUpdateTime()
, and getEntityList()
, as described in Table 15-2. These methods primarily support programmatic interaction with the service endpoint by the consuming application and are not supported at design time by data controls.
What Happens at Runtime: How the Application Accesses the Published Application Module
The ADF runtime obtains the data source information from the service-backed entity object XML definition to automate interactions with the service interface methods as needed. By using the service-backed entity object, you avoid having to work directly with the service proxy and service data objects programmatically for all common web service data access tasks. The ADF service factory looks up the service and then uses the service interface you specified in the connections.xml
to invoke the service methods.
When your application accesses an ADF Business Components web service, each remote call is stateless, and the remote service will not participate in the same transaction as the business component that uses a service-enabled application module's service interface.
In the majority of the cases, calls to remote services will be informational in nature and will not make changes to remote objects. However, if you must use a remote service to make changes, then keep these points in mind:
-
An exception thrown by the remote service will cause the local transaction to fail.
-
If you successfully call a remote service that results in modifying data, and then subsequently your local transaction fails for any reason, then it is the responsibility of your error handling code to perform a compensating transaction against the remote service to "undo" the previous change made.
What You May Need to Know About Service-Backed Entity Objects and View Objects
You will use some web services to access reference information. However, other services you call may modify data. This data modification might be in your own company's database if the service was written by a member of your own or another team in your company. If the web service is outside your firewall, of course the database being modified will be managed by another company. In either of these situations, it is important to understand that any data modifications performed by a web service you invoke will occur in its own distinct transaction unrelated to the service-enabled application module's current unit of work. For example, if you have invoked a web service that modifies data and then you later call rollback()
to cancel the pending changes in the application module's current unit of work, rolling back the changes has no effect on the changes performed by the web service you called in the process. You may need to invoke a corresponding web service method to perform a compensating change to account for your rollback of the application module's transaction.
At runtime, ADF handles the interaction with the ADF Business Components web service. However, you should be aware that service-backed business components have the following design time restrictions that may restrict your application's runtime behavior.
-
View objects that you create cannot reference a service-backed entity object as a secondary entity object usage.
-
View objects that you create cannot produce a flattened join from two or more related entity objects when at least one of those entity objects is a service-backed entity object.
-
Service-backed view objects that you create from service-backed entity objects will not reference secondary entity usages.
For more details about how these restrictions apply at design time, see How to Update the Data Model for Service-Backed Business Components.
Accessing Polymorphic Collections in the Consuming Application
ADF Business Components allows Service Data Objects (SDOs) as an alternative approach to invoke polymorphic sub-type view object instances in the application module.
The ADF Model project may contain base view objects that define one or more subtype view objects derived from a common base view object. When the business components developer wants to expose the polymorphic usage of the base view object instance, they add the subtype to the ADF data model. However, when the developer creates the SDO service interface from application module view instances, the subtype SDO for the polymorphic subtype view objects are not directly referenced in the SDO service interface.
After generating the SDO interface from a ADF Model project that defines base view objects and subtype view objects, the generated XML schema (.xsd
) will be strongly-typed for the base view object, but not for the polymorphic subtype. Therefore, web service clients that need to access polymorphic subtype view objects use an alternative approach to invoke exposed operations of the SDO interface.
Note:
The example in this section refers to the custom project PolymorphicVO_WSClient
in the SummitADF_Examples
application workspace. The client project access the SDO service interface created in the oracle.summit.model.polymorphicvo
package in the Model project of the same workspace.
How to Generate Web Service Client Proxy Classes From the Service-Enabled Application Module
In JDeveloper, you can generate Java classes that act as a proxy to the remote service-enabled application module web service that you add to your web service client project. To accomplish this, you use the Create Web Service Client and Proxy wizard and supply a WSDL URL to the deployed service. The wizard creates a client file which uses the proxy classes and allows you to make Java method calls to access the web service.
Before you begin:
It may be helpful to have an understanding of how the SDO framework supports service-enabled ADF view objects and enables web service clients to access rows of data and perform service operations. For more information, see Publishing Service-Enabled Application Modules.
It may be helpful to understand how JDeveloper supports accessing web services in a Java applications by creating JAX-WS web service client and proxy classes. For more information, see the "Creating JAX-WS Web Services and Clients" section in Developing Applications with Oracle JDeveloper.
You may also find it helpful to understand functionality that can be added using other Oracle ADF features. For more information, see Additional Functionality for Service-Enabled Application Modules.
You will need to complete these tasks:
-
Create the desired subtype view objects and configure the polymorphic usages on the application module view instance using the subtypes, as described in Defining Polymorphic View Objects.
-
Enable the service interface for the application module, as described in How to Enable the Application Module Service Interface.
-
Create the client project that will contain the web service proxy classes that you will use to invoke service methods.
Tip: If you have not already created a Java client project in JDeveloper, you create a custom project to contain the web service proxy classes, as described the "Creating Applications and Projects" section in Developing Applications with Oracle JDeveloper.
-
Run the web service in JDeveloper to obtain the service endpoint URL that you will use to specify the location of the WSDL document.
Tip: You can run the service in Integrated WebLogic Server and obtain the service endpoint URL from the Log window, as described in How to Test the Web Service Using Integrated WebLogic Server.
To generate the service client and proxy files:
How to Invoke Operations of Polymorphic View Object Using Generated Proxy Classes
In JDeveloper, you can create a Java client that accesses web services through JAXB (Java Architecture for XML Binding), using generated classes from the web service schemas. To generate JAXB packages, proxy classes, and interfaces, the client developer runs a JAXB binding compiler against the ADF Business Components service schema (WSDL). The developer requires no knowledge of the service XML to work with the proxy classes.
Using the generated proxy classes, developers can access and manipulate polymorphic collections in method calls that you make in the Java class files of your client project. A sample of such a file is the generated SOAP service client Java class file. The generated client file is named for the deployed ADF web service that you supplied with the WSDL document URL. For example, if the name of the ADF web service you deploy is ADFModuleService
, the SOAP service client Java class is named AppModuleServiceSoapHttpPortClient.java
.
Before you begin:
It may be helpful to have an understanding of why polymorphic collections cannot be accessed as a remote service. For more information, see Accessing Polymorphic Collections in the Consuming Application.
You will need to complete these tasks:
-
Create the Java client project that contains Java proxy classes for the service-enabled application module web service. For details, see How to Generate Web Service Client Proxy Classes From the Service-Enabled Application Module.
-
In the Applications window, expand the client project and locate the SOAP service client file. As Figure 15-17 shows, the
AppModuleServiceSoapHttpPortClient.java
file is located in thecom.oracle.xmlns
package of the client project.
Figure 15-20 JAXB Generated SOAP Service Client File

You may proceed to edit the SOAP service client file to invoke the exposed operations of the base and subtype view objects. As the following example shows, factory objects are created for the subtype view object:
package com.oracle.xmlns.apps.hr.service; ... import oracle.summit.model.polymorphicvo.views.common.ObjectFactory; import oracle.summit.model.polymorphicvo.views.common.SEmpViewSDO; import oracle.summit.model.polymorphicvo.views.common.SalespersonViewExSDO; ... public class AppModuleServiceSoapHttpPortClient { public static void main(String[] args) { AppModuleService_Service appModuleService_Service = new AppModuleService_Service(); AppModuleService appModuleService = appModuleService_Service.getAppModuleServiceSoapHttpPort(); ... // Add your code to call the desired methods. try { SEmpViewSDO emp = testCreate(appModuleService); testFind(appModuleService); testDelete(appModuleService, emp); testFind(appModuleService); } catch (ServiceException e) { } } ... // 1. Create an employee of subtype Salesperson private static SEmpViewSDO testCreate(AppModuleService deptService) throws ServiceException { oracle.summit.model.polymorphicvo.views.common.ObjectFactory factory = new oracle.summit.model.polymorphicvo.views.common.ObjectFactory(); System.out.println("\n*** Testing createEmp ***\n"); SalespersonViewExSDO salesperson = factory.createSalespersonViewExSDO(); // 2. Set the attrs of the base SEmpView view object salesperson.setId(8001); salesperson.setFirstName(factory.createSEmpViewSDOFirstName("Lynn")); salesperson.setLastName("Munsinger"); salesperson.setEmail(factory.createSEmpViewSDOEmail ("lmunsing@summit.com")); salesperson.setTitleId(factory.createSEmpViewSDOTitleId (new BigDecimal(2))); salesperson.setSalary(factory.createSEmpViewSDOSalary (new BigDecimal(2000))); // 3. Set the attrs of the subtype SalespersonView view object salesperson.setCommissionPct (factory.createSalespersonViewExSDOCommissionPct (new BigDecimal(20))); salesperson.setDeptId(factory.createSEmpViewSDODeptId(31)); return printEmp(deptService.createSEmpView1(salesperson)); } // 4. Delete the employee of type Salesperson private static void testDelete(AppModuleService deptService, SEmpViewSDO emp) throws ServiceException { System.out.println("\n*** Testing deleteEmp ***\n"); deptService.deleteSEmpView1(emp); } // 5. Print private static SEmpViewSDO printEmp(SEmpViewSDO emp) { System.out.print(emp.getId() + "\t" + emp.getEmail().getValue() + "\t" + emp.getTitle().getValue() + "\t" + "\t" + emp.getSalary().getValue()); if (emp instanceof SalespersonViewExSDO) { System.out.print("\t" + ((SalespersonViewExSDO) emp).getCommissionPct().getValue()); } System.out.println(); return emp; } // 6. Find employees by department private static void testFind(AppModuleService deptService) throws ServiceException { com.oracle.xmlns.adf.svc.types.ObjectFactory factory = new com.oracle.xmlns.adf.svc.types.ObjectFactory(); System.out.println("\n*** Testing findEmpsByDept ***\n"); FindCriteria fc = factory.createFindCriteria(); fc.setFetchStart(0); fc.setFetchSize(-1); List<SEmpViewSDO> empList = deptService.findSEmpView1ByDept(fc, "SALES", null); for (SEmpViewSDO emp : empList) { printEmp(emp); } } }
Running AppModuleServiceSoapHttpPortClient.java
client in JDeveloper produces the following output to the Log window. The createEmp
method creates an employee in the sales department as a Salesperson
subtype of the EmpView
collection. The attribute value 20
is the Commission
attribute of the new polymorphic view row. The findEmpsByDept
method displays a mix of EmpView
base view rows and SalespersonView
subtype rows. The remaining methods delete the created salesperson from the EmpView
collection and print the result.
*** Testing createEmp *** 8001 lmunsing@summit.com Sales Representative 2000 20 *** Testing findEmpsByDept *** 3 mnagayam@summit.com VP, Operations 1400 11 cmagee@summit.com Sales Representative 1400 10 13 ysedeghi@summit.com Sales Representative 1515 10 14 mnguyen@summit.com Sales Representative 1525 15 15 adumas@summit.com Sales Representative 1450 17.5 23 rpatel@summit.com Stock Clerk 795 8001 lmunsing@summit.com Sales Representative 2000 20 *** Testing deleteEmp *** *** Testing findEmpsByDept *** 3 mnagayam@summit.com VP, Operations 400 11 cmagee@summit.com Sales Representative 1400 10 13 ysedeghi@summit.com Sales Representative 1515 10 14 mnguyen@summit.com Sales Representative 1525 15 15 adumas@summit.com Sales Representative 1450 17.5 23 rpatel@summit.com Stock Clerk 795
What Happens When You Generate Java Proxy Classes With the SDO Schema
The JAXB binding compiler generates Java proxy classes for the application module service and object factory classes for the various SDO view instances exposed by the service interface WSDL. Because the polymorphic view object is defined in the type hierarchy of the base view object, it also has a strongly-typed proxy class. As Figure 15-21 shows, the SalespersonViewSDO.java
proxy class appears along with the proxy class SEmpViewSDO.java
for the base view object SEmpView
.
Figure 15-21 JAXB Generated SOAP Service Client Proxy Classes

As the following example shows, when the EmployeeView
view object has a subtype SalespersonView
view object defined, the generated web service client contains the proxy class SalespersonViewSDO.java
which extends the base proxy class (SEmpViewSDO
) and defines the accessor methods for the commissionPct
attribute.
@XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SalespersonViewExSDO", propOrder = { "commissionPct" }) public class SalespersonViewExSDO extends SEmpViewSDO { @XmlElementRef(name = "CommissionPct", namespace = "/oracle/summit/model/polymorphicvo/views/common/", type = JAXBElement.class, required = false) protected JAXBElement<BigDecimal> commissionPct; /** * Gets the value of the commissionPct property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link BigDecimal }{@code >} * */ public JAXBElement<BigDecimal> getCommissionPct() { return commissionPct; } /** * Sets the value of the commissionPct property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link BigDecimal }{@code >} * */ public void setCommissionPct(JAXBElement<BigDecimal> value) { this.commissionPct = value; } }
What You May Need to Know About Invoking Service Methods in the Client Application
The generated service factory classes of the ADF Business Components service interface define the builtin methods that may be optionally enabled to create the service view instances. For example, for the polymorphic view object, the createSalespersonView()
is enabled to create an instance of the polymorphic view object. When you use the create factory method to define the attributes of the view instance, the method signature for required attributes of the view object differs from attributes that may be optionally defined.
For example, when the SalepersonViewSDO.java
defines setters for the required attributes of the view object, your client code can use a Java primitive value for the required attribute. However, setters for optional attributes must use a special type that indicates the XML element is missing and is not just an empty value. The factory object method supports the special type for optional view object attributes. As the following example shows, the method signature for setFirstName
invokes factory.createSEmpViewSDOFirstName
, whereas, the method signature for required attributes, like setId
and setLastName
, take an integer and String value.
private static SEmpViewSDO testCreate(AppModuleService deptService) throws
ServiceException
{
oracle.summit.model.polymorphicvo.views.common.ObjectFactory factory = new
oracle.summit.model.polymorphicvo.views.common.ObjectFactory();
System.out.println("\n*** Testing createEmp ***\n");
SalespersonViewExSDO salesperson = factory.createSalespersonViewExSDO();
salesperson.setId(8001);
salesperson.setFirstName(factory.createSEmpViewSDOFirstName("Lynn"));
salesperson.setLastName("Munsinger");
salesperson.setEmail
(factory.createSEmpViewSDOEmail("lmunsing@summit.com"));
salesperson.setTitleId
(factory.createSEmpViewSDOTitleId(new BigDecimal(2)));
salesperson.setSalary
(factory.createSEmpViewSDOSalary(new BigDecimal(2000)));
salesperson.setCommissionPct
(factory.createSalespersonViewExSDOCommissionPct(new BigDecimal(20)));
salesperson.setDeptId(factory.createSEmpViewSDODeptId(31));
return printEmp(deptService.createSEmpView1(salesperson));
}
Working with the Find Method Filter Model in the Consuming Application
ADF Business Components defines a hierarchical filter model for the FindCriteria
object that allows SOAP clients to control the behavior of find methods invoked as a SOAP request or in client code, programmatically.
filter —>group—>item
The filter contains all runtime conditions and corresponds to a view criteria in ADF. View criteria restrict returned data to those rows matching the defined filters. At runtime, the filters will be converted to SQL WHERE clauses for the purpose of providing a data filter to a view object. Within the filter, the group contains a set of runtime filter conditions for one or more attributes of the SDO.
Note:
Attributes that participate in find method queries must be defined as queriable by the backing view object. The item defines one filter condition for a specific attribute.
The XSD diagram for the FindCriteria object shows in detail how the arguments for the find method are constructed.
Conjunctions (And, Or, Not, AndNot, OrNot) may be specified to define multiple items in a group and define filter conditions are evaluated in relation to each other. For example, an And conjunction specifies that the query results meet both joined conditions. An Or conjunction specifies that the query results meet either or both joined conditions. When a conjunction is omitted, And behavior is assumed.
The following block diagram is another way to represent the containment model of the FindCriteria object.
Figure 15-23 FindCriteria Containment Hierarchy

Description of "Figure 15-23 FindCriteria Containment Hierarchy"
To specify the filter item
for the FindCriteria, the client must define the following:
-
Attribute
is a case-sensitive attribute name to be filtered by the filter condition. -
Operator
is applied to the filter condition. Operators are appropriate to the attribute type and are defined byoracle.jbo.common.JboCompOper
. See note below for exceptions. -
Value
specifies the attribute filter criteria, which can include non-leading%
wildcard.
Note:
SOAP services clients may specify conditions using all operators defined by oracle.jbo.common.JboCompOper
, with the exception of LIKE (use CONTAINS instead), IN, and NOTIN. The operators IN and NOTIN have runtime support and may therefore be applied programmatically. The operators CONTAINSALL and CONTAINSDELIMITEDID are supported for multi-select attributes.
Additionally, the client may specify the following FindCriteria elements to format the result set response:
-
FetchStart
(required) specifies the zero-based row index to start with. The default is 0 (first row). -
FetchSize
(required) specifies the maximum number of rows to retrieve. -
SortOrder
(optional) contains directive for sorting the result set in ascending or descending order. -
FindAttribute
(optional) specifies the subset of attributes to retrieve when the filter criteria is satisfied. When none is satisfied, all attributes are fetched. -
ExcludeAttribute
(optional) a boolean flag that when set toTrue
, attributes specified byFindAttribute
are not returned.
When attributes of a child object need to be conditionally evaluated and/or returned in the payload, a childFindCriteria
structure may be added within the FindCriteria structure. The elements of the childFindCriteria
are the same as used in the FindCriteria structure, with one addition: childAttrName
specifies which child object to apply the filter criteria to, as the following block diagram illustrates for a single child object.
Figure 15-24 FindCriteria Containment Hierarchy with Child Find Criteria

Description of "Figure 15-24 FindCriteria Containment Hierarchy with Child Find Criteria"
How to Control Find Method Behavior Using a SOAP Request
To construct a find request payload for a SDO, it is necessary to understand the containment hierarchy of the find method filter model. Payload building blocks are derived from the elements defined by the find method XSD. For details about the containment hierarchy, see Working with the Find Method Filter Model in the Consuming Application.
- Specify the number of rows in the result set, and on which row to start (required).
- Define the filter condition on the parent object, specifying one or more view criteria items (required).
- Specify the sort order for the result, if desired (optional). Default is descending order.
- Specify one or more attributes to retrieve when the filter criteria is satisfied (optional).
- Specify filter conditions on child objects, if any (optional). See Figure 15-25.
Find up to 50 Locations where the Country attribute value is US or IE. Return only the Country, State, Province, and City attributes. Sort the result set in descending Country order. Do not return any translated values.
Figure 15-25 Find Request on Parent Object

Description of "Figure 15-25 Find Request on Parent Object"
The following request is designed to return a result set for a filtered child object matching this description:
For each row in the result set (each qualifying object instance), include the LocationProfile: including the FloorNumber, Building, City, State, Province, Country and EffectiveStartDate attributes, if the EffectiveStartDate is on or after the date specified.
Figure 15-26 Find Request on Parent and Child Objects

Description of "Figure 15-26 Find Request on Parent and Child Objects"
How to Control Find Method Behavior Using a Java Client
The standard find method API provides control over the query behavior. To work with the API, it is necessary to understand the object containment hierarchy of the find method filter model. For details about the containment hierarchy, see Working with the Find Method Filter Model in the Consuming Application,
The following sample illustrates the process for programmatically creating a FindCriteria
object:
-
Create a new
FindCriteria
(the Filter). -
Create a new
ViewCriteriaItem
(the Item). -
Create a new
ViewCriteriaRow
(the Group). -
Add the created items and groups to the
FindCriteria
.
//1. Create FindCriteria final FindCriteria findCriteria = (FindCriteria)DataFactory.INSTANCE.create(FindCriteria.class); findCriteria.setFetchStart(0); findCriteria.setFetchSize(-1); findCriteria.setExcludeAttribute(false); //2. Create ViewCriteriaItem final ViewCriteriaItem viewCriteriaItem = (ViewCriteriaItem)DataFactory.INSTANCE.create(ViewCriteriaItem.class); viewCriteriaItem.setConjunction("AND"); //Can also be OR viewCriteriaItem.setUpperCaseCompare(true); viewCriteriaItem.setAttribute("EmpName"); viewCriteriaItem.setOperator("LIKE"); //LIKE used for WILDCARD comparison final List<Object> item_values = new ArrayList<Object>(5); item_values.add(viewCriteriaItem); viewCriteriaItem.setValue(item_values); //3. Create ViewCriteriaRow. //4. Further add ViewCriteriaItem into ViewCriteriaRow and ViewCriteriaRow into FindCriteria. final ViewCriteriaRow viewCriteriaRow = (ViewCriteriaRow)DataFactory.INSTANCE.create(ViewCriteriaRow.class); viewCriteriaRow.setConjunction("AND"); viewCriteriaRow.setUpperCaseCompare(true); final List<Object> item = new ArrayList<Object>(5); item.add(viewCriteriaItem); viewCriteriaRow.setItem(item); findCriteria.getFilter().getGroup().add(viewCriteriaRow);
When you want to query with a list of partial attributes list
By default, the find operation returns all the attributes including all details. When you only need some attributes, you should set the partial attributes on the FindCriteria
parameter of the find method. Do this in the following situations:
-
SDO contains LOB, which can be very expensive to retrieve and transfer.
-
SDO contains details that are not needed, such as translations. Querying detail is also expensive.
Note: The standard getXXX
function does not take a FindCriteria
, so this function always returns everything. You should use findXXX
to trim your return attributes.
The following example shows how to set the partial attributes to include only Dname
, Loc
from Dept
, and exclude Empno
from Emp
.
FindCriteria fc = (FindCriteria)datafactory.create(FindCriteria.class); List l = new ArrayList(); l.add("Dname"); l.add("Loc"); l.add("Emp"); fc.setFindAttribute(l); List cfcl = new ArrayList(); ChildFindCriteria cfc = (ChildFindCriteria)datafactory.create(ChildFindCriteria.class); cfc.setChildAttrName("Emp"); List cl = new ArrayList(); cl.add("Empno"); cfc.setFindAttribute(cl); cfc.setExcludeAttribute(true); cfcl.add(cfc); fc.setChildFindCriteria(cfcl); DeptResult res = svc.findDept(fc, null);
The following example shows how to set the partial attributes to exclude PurchaseOrderLine
from PurchaseOrder
.
FindCriteria fc = (FindCriteria)datafactory.create(FindCriteria.class); List l = new ArrayList(); fc.setExcludeAttribute(true); l.add("PurchaseOrderLine"); fc.setFindAttribute(l); PchaseOrderResult res = svc.findPurchaseOrder(fc, null);
When you want to filter the result using a view criteria
The find API allows you to specify the WHERE clause of your query. The WHERE clause can be set on any level of the SDO.
The following example shows how to retrieve only the departments with a department number greater than 10 and child employees whose names start with "A".
FindCriteria fc = (FindCriteria)datafactory.create(FindCriteria.class); //create the view criteria item List value = new ArrayList(); value.add(new Integer(10)); ViewCriteriaItem vci = (ViewCriteriaItem)datafactory.create(ViewCriteriaItem.class); vci.setValue(value); vci.setAttribute("Deptno"); List<ViewCriteriaItem> items = new ArrayList(1); items.add(vci); //create view criteria row ViewCriteriaRow vcr = (ViewCriteriaRow) datafactory.create(ViewCriteriaRow.class); vcr.setItem(items); //create the view criteria List group = new ArrayList(); group.add(vcr); ViewCriteria vc = (ViewCriteria)datafactory.create(ViewCriteria.class); vc.setGroup(group); //set filter fc.setFilter(vc); List cfcl = new ArrayList(); //create the child find criteria ChildFindCriteria cfc = (ChildFindCriteria)datafactory.create(ChildFindCriteria.class); cfc.setChildAttrName("Emp"); //create the child view criteira ViewCriteria cvc = (ViewCriteria)datafactory.create(ViewCriteria.class); cfc.setFilter(cvc); //create the view criteria item List cvalue = new ArrayList(); cvalue.add("A%"); ViewCriteriaItem cvci = (ViewCriteriaItem)datafactory.create(ViewCriteriaItem.class); cvci.setValue(value); cvci.setAttribute("Dname"); cvci.setOperator("LIKE"); List<ViewCriteriaItem> citems = new ArrayList(1); citems.add(cvci); //create child view criteria row ViewCriteriaRow cvcr = (ViewCriteriaRow) datafactory.create(ViewCriteriaRow.class); cvcr.setItem(citems); List cgroup = new ArrayList(); cgroup.add(cvcr); cvc.setGroup(cgroup); DeptResult dres = svc.findDept(fc, null);
You can also query the parents with the children that satisfy certain criteria. For example, the following sample retrieves the departments with employees whose salary is greater than $10,000.
//create the view criteria item on the employees List nvalue = new ArrayList(); nvalue.add(new BigDecimal(10000)); ViewCriteriaItem nvci = (ViewCriteriaItem)datafactory.create(ViewCriteriaItem.class); nvci.setValue(nvalue); nvci.setAttribute("Salary"); nvci.setOperation(">"); List<ViewCriteriaItem> nitems = new ArrayList(1); nitems.add(nvci); //create view criteria row ViewCriteriaRow nvcr = (ViewCriteriaRow) datafactory.create(ViewCriteriaRow.class); nvcr.setItem(nitems); //create the nested view criteria List ngroup = new ArrayList(); ngroup.add(nvcr); ViewCriteria nvc = (ViewCriteria)datafactory.create(ViewCriteria.class); nvc.setGroup(ngroup); //create the view criteria item on the department ViewCriteriaItem vci = (ViewCriteriaItem)datafactory.create(ViewCriteriaItem.class); vci.setAttribute("Emp"); vci.setNested(nvc); List<ViewCriteriaItem> items = new ArrayList(1); items.add(vci); //create view criteria row ViewCriteriaRow vcr = (ViewCriteriaRow) datafactory.create(ViewCriteriaRow.class); vcr.setItem(items); //create view criteria on department ViewCriteria vc = (ViewCriteria)datafactory.create(ViewCriteria.class); List group = new ArrayList(); group.add(vcr); vc.setGroup(group); //set filter FindCriteria fc = (FindCriteria)datafactory.create(FindCriteria.class); fc.setFilter(vc); DeptResult dres = svc.findDept(fc, null);
When you want to page the result
If you know that your query might return a large amount of data, you should make multiple service invocations, and use setFetchStart
and setFetchSize
to control the amount of the data that you want to retrieve.
The following sample shows how to retrieve only the second employee and the employee's department.
FindCriteria fc = (FindCriteria)datafactory.create(FindCriteria.class); List cfcl = new ArrayList(); ChildFindCriteria cfc = (ChildFindCriteria)datafactory.create(ChildFindCriteria.class); cfc.setChildAttrName("Emp"); cfc.setFetchStart(1); cfc.setFetchSize(1); cfcl.add(cfc); fc.setChildFindCriteria(cfcl); DeptResult dres = svc.findDept(fc, null);