Using the WOLA service provider
Follow these steps to use the WOLA service provider that is supplied with IBM® z/OS® Connect.
Before you begin
zosConnect-2.0 Applies to zosConnect-2.0.
The WebSphere® Optimized Local Adapter (WOLA) service
provider requires that both the zosConnect-2.0 and the
zosLocalAdapters-1.0 features are configured. The WOLA service provider is included
with z/OS Connect and uses the WOLA function that is
provided with the Liberty profile. The WOLA service provider can be used by both WOLA-enabled
applications and CICS® (to support z/OS Connect V2 configurations).
About this task
z/OS Connect provides a service implementation that
allows z/OS Connect requests to interact with z/OS assets through WOLA. The service is automatically enabled
when both zosConnect-2.0 and the
zosLocalAdapters-1.0 features are configured. Instances of this service can be
defined through the zosconnect_localAdaptersConnectService configuration element.
Procedure
zosconnect_localAdaptersConnectService configuration element in the
server.xml file.
For more information about all the supported attributes, see zosconnect_localAdaptersConnectService in the Reference section.
The only supported authentication mechanism on a WOLA
connection factory is container-managed authentication. The authentication credentials are defined
by using an authData element that is referenced on the
containerAuthDataRef attribute of the connectionFactory element.
WOLA uses a three part name to uniquely identify the WOLA server. This name is derived from
the wolaGroup, wolaName2 and wolaName3 attribute
values on the local adapter's configuration element zosLocalAdapters, and must be
unique per server in the same z/OS LPAR.
<!-- z/OS Connect service definitions -->
<zosconnect_zosConnectService id="zcs1"
serviceName="recordOpsCreate"
serviceRef="wolaOpsCreate"/>
<!-- Local adapters connection factory definition -->
<authData id="cauth1" user="user1" password="mypassword"/>
<connectionFactory id="wolaCF" jndiName="eis/ola"
containerAuthDataRef="cauth1" >
<properties.ola/>
</connectionFactory>
<!-- Local adapters config -->
<zosLocalAdapters wolaGroup="LIBERTY" wolaName2="LIBERTY"
wolaName3="LIBERTY" />
<!-- WOLA Connect service and z/OS Connect service definitions -->
<zosconnect_localAdaptersConnectService id="wolaOpsCreate"
registerName="BATCH01"
serviceName="COBLPGM1"
connectionFactoryRef="wolaCF"/>
The z/OS Connect service implementation that allows z/OS Connect requests to interact with z/OS assets through WOLA might require a data transformer. If a data transformer is configured, globally or at the service level, input and output payloads are converted by using the configured data transformer. If a data transformer is not configured, and the request contains a JSON payload, the service assumes that the backend program handles the data conversion. The service converts the JSON payload to a byte array by using the encoding specified in the request header or the default JSON encoding of UTF-8. Similarly, if the asset returns a payload and no data transformer is configured, the WOLA service implementation expects to receive a JSON payload in byte array form. This is converted to a JSON response payload following the same encoding rules used for transforming a JSON request payload to a byte array.
The WOLA service provider implementation allows for several other WOLA connection
factory attributes to be specified in its zosconnect_localAdaptersConnectService
configuration element.
You can specify the way for a WOLA CICS Link Server to propagate data to target CICS application programs by using the
useCICSContainer attribute in the localAdaptersConnectService
element. When the useCICSContainer attribute is set to
false, the payload is passed to the target CICS application program by using a COMMAREA; otherwise, the payload is passed to the target
CICS application program by using CICS containers.
- Use a
COMMAREA. - Use a channel name of
IBM-WAS-ADAPTERto flow a single payload container. - Use a channel name of your choice to flow a single payload container with the HTTP context containers. The context containers pass information about the HTTP request to the CICS application program. See Table 1 for more information.
| Name | Description |
|---|---|
ZCONReqURL |
Contains the URL of the HTTP request. For example, if an
invokeURI definition of /banking/deposit and a query parameter
country=USA are used, the URL is https//localhost:
port/banking/deposit?country=USA. |
ZCONReqQParms |
Contains the query parameters of the HTTP request. For example, if a request
URL is https//localhost:port//banking/deposit?country=USA, the query parameter
is country=USA. |
ZCONReqMethod |
Contains the method of the HTTP request, for example,
GET. |
ZCONHTTPHeaders |
Contains a JSON-formatted set of HTTP header name and value pairs that is
configured by using the linkTaskChanCtxContHttpHeaders attribute under the
zosconnect_localAdaptersConnectService element. |