4 Configuring Java Service Request Processors and Web Services

This chapter describes the Java service request processor (JSRP) and a web service interface to the JSRP.

About Java Service Request Processor Servers

A JSRP is an Oracle Communications ASAP server that controls service request reception and translation from an upstream system and service activation notifications from ASAP back to the upstream system.

With a JSRP, you can:

  • Generate and submit work orders

  • Subscribe and manage work order events

  • Query work order information

The JSRP accepts and translates native service requests (work orders) into Common Service Description Layer (CSDL) commands. Using information from the work order, the SRP determines the parameters that are associated with the CSDL command and sends them to the Service Activation Request Manager (SARM) for provisioning.

You can implement the following types of JSRPs, depending on the upstream technology being employed.

  • JSRP and web service: Provides a standardized OSS through Java interface and web service interface into ASAP's provisioning functionality within an Oracle WebLogic Server instance.

    For more information about the JSRP and web service, see "About JSRP, Web Service, and OCA SRP Components."

  • Custom Java SRP: You can create a custom JSRP not based on a WebLogic server instance using the information provided in ASAP Java Online Reference. For more information about configuring a custom JSRP, see "Configuring a Custom Java SRP client."

  • OCA SRP: Used internally by the ASAP Order Control Application (OCA) client. OCA SRP co-exists with Java SRP in WebLogic Server and shares some of the Java-based APIs used in JSRP.

    For more information on the OCA SRP, see "Configuring a OCA SRP."

About JSRP, Web Service, and OCA SRP Components

The JSRP is an upstream component into ASAP that provides a standardized OSS through Java (OSSJ) interface into the ASAP provisioning functionality and also a web services API implementation.

Figure 4-1 displays a system-level view of the JSRP. The JSRP receives requests from an upstream system, potentially an order manager: for example, Oracle Communications Order and Service Management (OSM) or a customer care system. Requests are translated into ASAP commands, which are then submitted to the SARM for processing.

Figure 4-1 JSRP, System Level View

Description of Figure 4-1 follows
Description of "Figure 4-1 JSRP, System Level View"

The JSRP provides two types of interfaces: XML over JMS and Java value types (JVT) over RMI/IIOP. The JSRP is fully compliant with the OSSJ Service Activation API version 1.0.

In addition to the JSRP, web service provides an interface for SOAP/JMS messages. The web service implementation translates these SOAP/JMS messages into JVT work orders and sends them to the JSRP's JVT interface.

For more information about these interfaces, see "About the JSRP Server and Web Service Interfaces."

The JSRP and web service implementation are situated between the SARM and clients designed to send messages to either web service, JVT, or JMS interfaces. These clients are located on a remote application, such as OSM.

Oracle recommends that you create a Store and Forward (SAF) agent for requests and responses to and from the JMS or web service interfaces and the JMS or web service clients and a JMS bridge for work order state changes from ASAP to the JMS or web service clients. For more information about SAF and the JMS bridge, see "About Connecting JSRP JMS and Web Service Interfaces to a Remote Application."

The JVT interface does not require SAF or the JMS bridge.

The following list summarizes the components required for the two JSRP interfaces and the web service interface to a remote application (for example, OSM):

  • JSRP JMS Interface to and from SAF and JMS Bridge to and from JSRP JMS Client (OSM)

  • ASAP Web Service interface to and from SAF and JMS Bridge to and from JSRP Web Service Client (OSM)

  • JSRP JVT Interface (RMI) to and from JSRP JVT Client (OSM)

For more information about creating a JVT or JMS Client, see the discussion about developing Java SRP client applications in ASAP Java Online Reference available from the Oracle software delivery website along with the ASAP installation files. ASAP Java Online Reference also provides a Java library for the JVT interface and lists the XML schemas used for constructing XML-based work order messages.

For more information about the web service API and the Web Services Description Language (WSDL) file, see ASAP Developer's Guide.

For information about sample JVT and JMS clients and source files that you can use to test the Java SRP, go to ASAP_Home/samples/jsrp/README.txt.

The JMS, JVT, and web services JMS modules, connection pools, and JDBC stores are automatically configured when you install ASAP. For information about these components, see "About the JSRP Server and Web Service Interfaces."

The configuration of the Java SRP deployment descriptors are automatically completed when you install ASAP. If you must fine-tune the deployment descriptor attributes of the Java SRP, see "Modifying JSRP Parameters (Deployment Descriptors) in WebLogic Server."

The implementation of the Java SRP and the web services API does not affect any provisioning logic in the existing ASAP product. Support for OSSJ and web services is implemented as translations to and from existing types and structures in ASAP, to OSSJ and web services conferment types and structures.

As with the other types of SRPs, the Java SRP and web services API allows the client to generate and submit work orders, manage work order events, and retrieve work order information.

Note:

The implementation of the Java SRP and the web services API does not affect any provisioning logic in the existing product and is consistent with other upstream interfaces (OCA SRP).

About the JSRP Server and Web Service Interfaces

The configuration of the WebLogic Server involves defining server resources such as connection pools, JDBC stores, and JMS modules such as connection factories, queues, and topics that are required for the Java SRP and the web services implementation. When you install ASAP, the Java SRP and web service configuration are automatically created. You can verify the Java SRP and web service configuration using the WebLogic Server Administration Console.

Table 4-1 lists and describes the JMS modules used by the JSRP interfaces and web service.

Table 4-1 Java SRP, OCA SRP, and Web Services JMS Modules

JMS Module Name Description

CMWSAdapterQueue

The publisher to the CMSW queue is Design Studio. It publishes ASAP Cartridges. The subscriber to this queue is the CMSW Adapter located in WebLogic Server.

ErrorQueue

The publisher for the ErrorQueue is WebLogic Server. If any error happens within any WebLogic Server queue, this message is published to the ErrorQueue. This is an internal WebLogic Server queue and does not affect ASAP components. For more information about this queue, see the WebLogic Server documentation.

JVTEventTopic

The publisher for the JVTEventTopic is the JSRP. Work order events get published to this topic. Subscribers are JSRP and web service clients that wish to receive notification of JSPR Events published to the JVTEventTopic in the form of Java object responses.

MessageQueue

The JSRP client (for example OSM) publishes JMS requests to this queue in the form of JSRP work orders. The subscriber to this queue is the JSRP server.

OCAEventTopic

The publisher for the OCAEventTopic is the OCA SRP. Work order events get published to this topic. Subscribers are OCA clients that wish to receive notification of OCA events published to the OCAEventTopic in the form of Java object responses.

OCAMessageQueue

The OCA client publishes JMS requests to this queue in the form of OCA work orders. The subscriber to this queue is the OCAJ server.

TopicConnectionFactory

The JSRP server, and OCA server uses this TopicConnectionFactory to create a topic publisher that sends ASAP events to XVTEventTopic, JVTEventTopic, and OCAEventTopic.

WebServiceQueue

The web services client (for example OSM) publishes SOAP requests to this queue in the form of web service work orders. The subscriber to this queue is the web services server. It decomposes the SOAP Work order, creates a JVT work order, and submits the work order via the JSRP RMI interface. This interface is shared with JVT.

XVTEventTopic

The publisher for the XVTEventTopic is the JSRP. Work order events get published to this topic. Subscribers are JSRP clients that wish to receive notification of JSPR Events published to the XVTEventTopic in the form of xml responses.

About Connecting JSRP JMS and Web Service Interfaces to a Remote Application

Oracle recommends that you create a SAF agent and JMS bridge between the ASAP WebLogic server and the remote application WebLogic server. Oracle recommends this SAF agent and JMS bridge for the JMS or web service interfaces to ensure reliable communication.

Figure 4-2 illustrates an example SAF and JMS bridge configuration between the web service interface on ASAP and a web service client on a remote application, in this case, OSM.

Figure 4-2 SAF and JMS Bridge Between OSM and ASAP

Description of Figure 4-2 follows
Description of "Figure 4-2 SAF and JMS Bridge Between OSM and ASAP"

In this example, an OSM SAF agent sends requests to the ASAP request queue, and ASAP returns responses through the ASAP SAF agent to the OSM reply-to queue. In addition, ASAP sends work order state changes from the JSRP XVTEventTopic through a JMS bridge with a SAF agent to the OSM event queue.

For detailed instructions for creating SAF and JMS bridges between ASAP and OSM, see Configuring WebLogic Resources for OSM Integration With ASAP And UIM On Different Domains (Doc ID 1431235.1) knowledge article on the Oracle Support website. This article is applicable to any remote application that uses a WebLogic Server JMS server to send and receive web service or JMS messages.

Modifying JSRP Parameters (Deployment Descriptors) in WebLogic Server

This section provides information about how to modify JSRP parameters or deployment descriptors in WebLogic Server. You can update the JSRP parameters described in Table 4-2 by using WebLogic Workshop (Eclipse component) or by editing the ejb-jar.xml file manually.

Table 4-2 JSRP Configuration Parameters (Deployment Descriptors)

Parameter Name Type Description

SERVICE_TYPE

java.lang.String

Do not change this parameter.

This parameter differentiates between JSRP and OCA instances, and can be either JSRP or OCA.

UnidFormat

java.lang.String

This parameter defines the work order (WO) format template. If the JSRP does not provide the WO_ID, the WO_ID is generated based on the format template.

APPLICATION_DN

java.lang.String

Do not change this parameter.

OCA_ATTEMPTS

java.lang.Integer

This parameter configures the number of times that the OCA Server tries to submit a WO to SARM.

VALIDATION_ENABLED

java.lang.Boolean

This parameter, when enabled, validates the JSRP WO requests against the XML Schema. Enabling this attribute can provide additional security. For more information, see "Configuring Validation of Received Data."

BACKWARD_COMPATIBLE_SCHEMA

java.lang.Boolean

This flag indicates whether the schema is backward compatible with the previous format.

INCLUDE_SERVICE_ACTION_DETAIL

java.lang.Boolean

Includes service action details in events.

USE_ORIGINAL_INSTANCE_NUMBER

java.lang.Boolean

If this is set to false (the default) the name of the Service Action/CSDL should be included in the primaryKey element of the work order. If this is set to false, the Service Action/CSDL name should be sent in the co:type parameter.

if (useOriginalServiceInstanceNumbers()) {
    typeElement.appendChild( pKeyText );
    idElement.appendChild( typeText );
} else {
    typeElement.appendChild( typeText );
    idElement.appendChild( pKeyText );
}

The value of this parameter must be the same as the value of the corresponding parameter in the SRT.ear file. Since both are set to false by default, if you change the value of the parameter here, you must also change the value of the parameter for the SRT.

NO_LISTENING_THREAD

java.lang.Boolean

Disables the SARM listening port for the JSRP. Set this parameter to false.

NO_WAIT_START_ORDER

java.lang.Boolean

Disables the JSRP functionality that waits for a start order messages from the SARM. Set this parameter to false.

ASCII_VALIDATION_ENABLED

java.lang.Boolean

This parameter, when enabled, validates that the work order ID (primary key) in JSRP WO creation requests contain printable ASCII characters (0x20 - 0x7E). The default value is 'false'.

JMS_EVENT_QUEUE

java.lang.String

The JNDI name of the queue where JSRP sends events. If this parameter is enabled, events are sent to the specified queue. If filtering is enabled, then only those events that match the filter are sent to the queue.

JMS_API_CLIENT_ID_FILTER

java.lang.String

Specifies which upstream systems (as identified by API Client ID values) need to receive events via the event queue. Multiple ID's can be specified in a comma-separated list.

This filter is needed in cases where multiple upstream systems are submitting orders to ASAP. It allows a subset of the upstream systems to use the event queue, while the other upstream systems can continue to use the traditional event topic.

Note: Unlike the other filters, this filter does not require an exact match. So, if the incoming orders use API Client ID's that share a common substring (For example, 'OSM-Cart1', 'OSM-Cart2', and so on.), you only need to specify the common substring ('OSM' in this case). This reduces the number of entries required in the filter.

JMS_EVENT_STATE_FILTER

java.lang.String

Specifies which event states are required by the upstream system. Multiple event states can be provided in a comma-separated list.

For example, in cases where the upstream system is only interested in 'complete' and 'fail' events, this value can be specified as follows:

JMS_EVENT_STATE_FILTER=closed.completed,open.running.suspended.failed

JMS_RESPONSE_TYPE_FILTER

java.lang.String

Specifies which response types are required by the upstream system. Multiple response types can be provided in a comma-separated list.

For example, in cases where the upstream system is only interested in 'create' and 'get' responses, this value can be specified as follows:

JMS_RESPONSE_TYPE_FILTER=sa:createOrderByValueResponse,sa:getOrderByKeyResponse

Note: If this parameter is set, then JMS_API_CLIENT_ID_FILTER must also be set. This will ensure that response filtering only applies to upstream systems that can handle cases where certain responses are filtered out.

To edit the JSRP parameter file manually:

  1. Go to domain_home/servers/server_name/upload/asapENV_ID/app (where domain_home is the directory that contains the configuration for the domain into which ASAP is installed, server_name is the name of the (administration or managed) server into which ASAP is installed, and ENV_ID is the ASAP environment ID.)

  2. Do the following:

    jar xvf asapENV_ID.ear srp.jar 
    jar xvf srp.jar META-INF/ejb-jar.xml
  3. Edit ejb-jar.xml to modify JSRP parameters. For example:

        <env-entry>        <env-entry-name>APPLICATION_DN</env-entry-name>        <env-entry-type>java.lang.String</env-entry-type>        <env-entry-value>System/dc2/ApplicationType/ServiceActivation/Application/1-0;7-2;ASAP/Comp/</env-entry-value>      </env-entry>      <env-entry>        <env-entry-name>SRP</env-entry-name>        <env-entry-type>java.lang.String</env-entry-type>        <env-entry-value>JSRPdc2</env-entry-value>      </env-entry>      <env-entry>        <env-entry-name>SRP_BACKWARD_COMPATIBLE</env-entry-name>        <env-entry-type>java.lang.Boolean</env-entry-type>        <env-entry-value>true</env-entry-value>      </env-entry>      <env-entry>        <env-entry-name>DEFAULT_JMS_REPLY_TO</env-entry-name>        <env-entry-type>java.lang.String</env-entry-type>        <env-entry-value>System/dc2/ApplicationType/ServiceActivation/Application/1-0;7-2;ASAP/Comp/XVTEventTopic</env-entry-value>      </env-entry>      <env-entry>        <env-entry-name>VALIDATION_ENABLED</env-entry-name>        <env-entry-type>java.lang.Boolean</env-entry-type>        <env-entry-value>false</env-entry-value>      </env-entry>      <env-entry>        <env-entry-name>BACKWARD_COMPATIBLE_SCHEMA</env-entry-name>        <env-entry-type>java.lang.Boolean</env-entry-type>        <env-entry-value>false</env-entry-value>      </env-entry>      <env-entry>        <env-entry-name>INCLUDE_SERVICE_ACTION_DETAIL</env-entry-name>        <env-entry-type>java.lang.Boolean</env-entry-type>        <env-entry-value>false</env-entry-value>      </env-entry>      <env-entry>        <env-entry-name>USE_ORIGINAL_INSTANCE_NUMBER</env-entry-name> 
          <env-entry-type>java.lang.Boolean</env-entry-type>        <env-entry-value>false</env-entry-value>      </env-entry>      <env-entry>        <env-entry-name>NO_LISTENING_THREAD</env-entry-name>        <env-entry-type>java.lang.Boolean</env-entry-type>        <!-- changed to false to activate ASAP behavour -->        <env-entry-value>false</env-entry-value>      </env-entry>     ...
  4. Do the following:

    jar uvf srp.jar META-INF/ejb-jar.xml 
    jar uvf asapENV_ID.ear srp.jar
  5. Redeploy the asapENV_ID.ear file.

Configuring Validation of Received Data

You can configure the JSRP to validate any ASAP RPC parameters of "char" type if VALIDATION_ENABLED in the JSRP deployment descriptor is set to "true". If the maximum lengths are exceeded, the JSRP throws an exception. For example, in the XML/JMS interface, if specifying <mslv-sa:organizationUnit>POTS12345678</mslv-sa:organizationUnit> in createOrderByValueRequest (which exceeds the maximum length), the following exception is thrown:

<sa:createOrderByValueException
xmlns:co="http://java.sun.com/products/oss/xml/Common"
xmlns:mslv-sa="http://www.metasolv.com/oss/ServiceActivation/2003"
xmlns:sa="http://java.sun.com/products/oss/xml/ServiceActivation" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<sa:illegalAttributeValueException>
<co:message>String attribute value[POTS12345678] exceeding its maximum length[8]</co:message>
</sa:illegalAttributeValueException>
</sa:createOrderByValueException>

Exceptions also will be thrown in the JVT interface.

Setting Log Levels

You can configure the Java SRP to filter log messages that are being written into the WebLogic Server log file by changing the level of message severity.

There are three levels of severity for the Java SRP:

  • info

  • warning

  • error

By default, the asapSeverityLevel is error.

See ASAP System Administrator's Guide for details on configuring the logging levels.

Uninstalling the Java SRP

For more information on uninstalling the Java SRP, see the procedure for uninstalling WebLogic Server in ASAP Installation Guide.

Configuring a Custom Java SRP client

If you have a custom JSRP client that is not based in WebLogic Server, you can use the Control server to manage (start, stop, auto-restart) it like any other ASAP component.

To configure a Java SRP Client:

  1. Write a custom Java SRP client by extending the ASCAppl class (see the sample code below).

  2. Implement applMain() method, which is the main function of the Java SRP client (see "Sample Code for a Custom JSRP Client").

  3. Implement the initialize() method instead of providing a specialized constructor, if necessary (see "Sample Code for a Custom JSRP Client").

  4. Using SACT, populate the Control database and ASAP Environment (tbl_appl_proc and tbl_component) for the new Java SRP client.

    <activationConfig xmlns="http://www.metasolv.com/ServiceActivation/2003/ActivationConfig" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.metasolv.com/ServiceActivation/2003/ActivationConfig 
    M:\hlam_view\ASAP_base\ASAP\jmx\xsd\ActivationConfig.xsd">
    
    <nonControlManagedServer name="JSRPenvid" xsi:type="JSRPServerType">
            <description>Java SRP</description>
            <system>envid</system>
            <territory>envid</territory>
            <diagnosticFilename>JSRPenvid.diag</diagnosticFilename>
            <diagnosticLevel>LOW_LEVEL</diagnosticLevel>
            <SARMListenPort>40070</SARMListenPort>
            <SRPListenHostname>
                    <IPaddress>10.156.53.74</IPaddress>
            </SRPListenHostname>
            <SRPListenPort>40077</SRPListenPort>
    </nonControlManagedServer>
     
    </activationConfig>
    
  5. Write the script to run the Java SRP client (see "Sample Script to Run the Custom JSRP Client").

Sample Code for a Custom JSRP Client

package com.metasolv.activation;

import java.util.*;
import java.io.*;
import java.sql.SQLException;
import java.text.*;
import com.mslv.activation.server.*;

public class SampleJSrpClient extends ASCAppl
{
 public void initialize()
 {
        super.initialize();
        // Do additional initialization
……..
 }

..
.
 public void applMain()
 {
    for(;;) {
        try {
            // Do actual process for JSRP client
………………
        } catch(Exception ex ) {  
        }
    }
  }

}

Sample Script to Run the Custom JSRP Client

#!/bin/ksh

#
# =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
#
# (c) 2008 Oracle. 
# The CLASSPATH variable is used by the primordial class loader in the java virtual

Configuring a OCA SRP

The OCA SRP is similar to the Java SRP and resides in WebLogic Server. The OCA SRP shares some of the Java-based APIs used in JSRP. The OCA system includes a GUI based client for configuring the OCA SRP and integrates the work order related main functionality in this single program.

Setting OCA SRP Configuration Parameters

In addition to the parameters contained in the previous table, the following parameters in ASAP_Home/config/OCA.cfg were used by the deprecated CORBA SRP emulator. Now, they are required by the new OCA SRP.

Table 4-3 describes the configuration parameters that must be set in the ASAP_Home/config/OCA.cfg configuration file. For more information about configuring the OCA client, see ASAP Order Control Application User's Guide.

Table 4-3 Session Configuration Parameters

Configuration Variable Required Default Value Description

HOST

Yes

localhost

Name of host machine where the WebLogic Server instance associated with the OCA SRP server is running.

PORT

No

2345

Port number on which WebLogic Server is listening.

SSL_PORT

Yes

7002

SSL Port number on which WebLogic is listening.

Note: Only one of SSL_PORT or PORT is required in the OCA.cfg. Oracle recommends using SSL_PORT so that communication between OCA and the server is encrypted. When both SSL_PORT and PORT are specified, the OCA Thick Client connects to WebLogic Server using the specified SSL port and ignores the non-SSL port. For special cases (e.g. in test environment) where you might want to use the non-SSL port, you can remove the SSL_PORT setting.

ENV_ID

Yes

S123

Environment ID of ASAP instance. The session associated OCA SRP server is a component of this ASAP system.

SYSTEM_NAME

Yes

OCA_S123

Name of the OCA Server to which the OCA client connects. Used to support multiple ASAP systems from a single client.

Table 4-4 Global Configuration Parameters

Configuration Variable Required Default Value Description

SYSTEM_NAME

Yes

OCA_S255

Name of the ASAP system to which the OCA client connects. Used to support multiple ASAP systems from a single client.

LANGCODE

No

USA

Language code for the language in which translatable information is returned to and displayed by the client. If applied, all translatable fields are shown in the OCA client native language, as specified by the LANGUAGE variable. A language other than the default language (USA) must be configured in ASAP.

IDLETIMEOUT

No

0

Maximum idle time, in minutes, after which the OCA SRP server terminates the OCA client connection. Set to zero (0) to disable this feature.

DATE_FORMAT

-

-

dd/MM/yyyy or MM/dd/yyyy

TIME_FORMAT

-

-

AM_PM (12-hour clock with an AM or PM designation) or NON_AM_PM (a 24-hour clock).

OCA_EVENTS_SUPPORTED

Yes

True

The flag should be false when connecting to servers on the HP10.20 platform. Events are not supported for this platform.

MAXW_OPEN_DETAILS

No

3

The number of detail windows a user can have open at one time.