D API and Other Configuration Changes
This appendix outlines various API issues related to upgrading ASAP from ASAP 4.5 to later versions.
OSS through Java service activation API
The OSS through Java service activation API used in ASAP 4.5 was JSR 89 v0.8. The new Java service activation API is: JSR 89 v1.0
JVT API changes
Following list outlines the interface changes between the JSR 89 v0.8 and v1.0 API.
Table D-1 JVT API changes
- | ASAP 4.5 | ASAP 4.6.x and later |
---|---|---|
REQUESTED_COMPLETION_DATE |
- |
javax.oss.order.OrderValue defines an attribute called REQUESTED_COMPLETION_DATE. If it is populated when the order is created, ASAP uses this attribute as the work order due date. If a client invokes JVTActivationSession.startOrderByKey(OrderKey key), the order is started immediately. In this situation it resets the REQUESTED_COMPLETION_DATE to be the current date time regardless of whether it was previously set or not. |
JVTActivationSessionOptionOps |
javax.oss.order.JVTActivationOption |
javax.oss.order.JVTActivationSessionOptionOps. |
JNDI Naming |
System.<EnvironmentID>.ApplicationType.Activation.Application.1-0-4_5-ASAP.Comp.<ComponentName> |
System.<EnvironmentID>.ApplicationType.ServiceActivation.Application.1-0; 4-6;ASAP.Comp.<Component Name> System/<EnvironmentID>/ApplicationType/ServiceActivation/Application/1-0;4-6;ASAP/Comp/MessageQueue JVTEventTopic, to which the Java SRP sends events if clients make requests through JVT interface System/<EnvironmentID>/ApplicationType/ServiceActivation/Application/1-0;4-6;ASAP/Comp/JVTEventTopic XVTEventTopic, to which the Java SRP sends events if clients make requests through XML/JMS interface System/<EnvironmentID>/ApplicationType/ServiceActivation/Application/1-0;4-6;ASAP/Comp/XVTEventTopic |
com.mslv.oss.activation.JVTXAcvtivationSession |
queryAudit(QueryValue, String[]), queryServiceHistory(QueryValue, String[]), queryAsdlHistory(QueryValue, String[]) removed |
Same functionality can be performed by queryManagedEntities(QueryValue, String[]) in JVTActivationSession interface |
JMS Message Headers |
OSS_APPLICATION_DN -identifying the OSS application that has published the message. OSS_ORDER_TYPE - describing the type of order that has changed. OSS_EVENT_TYPE - describing what kind of event has been sent. OSS_API_CLIENT_ID -identifying the client that owns the order entity. |
OSS_APPLICATION_DN, identifying the OSS application that has published the message. OSS_EVENT_TYPE, describing what kind of event has been sent. OSS_ORDER_TYPE, describing the type of order that has changed. OSS_API_CLIENT_ID, identifying the client that owns the order entity. Java SRP defines additional properties specific to ASAP: OSS_ORDER_PRIMARY_KEY, identifies an order's primary key, same as orderKey.getPrimaryKey(). This property applies to all messages sent by Java SRP, except the messages that contain multiple orders, in which case, the property will be set empty. OSS_ORDER_EXCEPTION, indicates the work order was completed with exceptions. Used by OrderCompleteEvent. Such exceptions are generally the result of a “Fail but Continue" status being returned to the SARM for one of the ASDLs on the work order. This field is set by the SARM and communicated to the relevant SRP, which then requests the exception details. The possible values include:
|
IllegalStateException |
javax.oss.order.IllegalStateException |
javax.oss.IllegalStateException. |
javax.oss.order.JVTActivationSession |
createOrder(OrderValue) startOrder(OrderKey) suspendOrder(OrderKey) resumeOrder(OrderKey) abortOrder(OrderKey) removeOrder(OrderKey) setOrder(OrderValue, boolean) tryCreateOrders(OrderValue[]) tryStartOrders(OrderKey[]) tryAbortOrders(OrderKey[]) tryRemoveOrders(OrderKey[]) trySetOrders(OrderValue[]) getOrder(OrderKey) getOrders(OrderKey[], String[]) getOrders(OrderValue[], String[]) |
queryManagedEntities(QueryValue, String[]) added createOrderByValue(OrderValue) startOrderByKey(OrderKey) suspendOrderByKey(OrderKey) resumeOrderByKey(OrderKey) abortOrderByKey(OrderKey) removeOrderByKey(OrderKey) setOrderByValue(OrderValue, boolean) tryCreateOrdersByValues(OrderValue[]) tryStartOrdersByKeys(OrderKey[]) tryAbortOrdersByKeys(OrderKey[]) tryRemoveOrdersByKeys(OrderKey[]) trySetOrdersByValues(OrderValue[], boolean) getOrderByKeyAllAttr(OrderKey) getOrdersByKeys(OrderKey[], String[]) getOrdersByTemplates(OrderValue[], String[]) |
javax.oss.order.OrderValue |
- |
In this implementation two attributes are optional:
|
javax.oss.AttributeAccess |
- |
New: getSupportedOptionalAttributeNames() New exception
|
javax.oss.ManagedEntityValue |
- |
Added setLastUpdateVersionNumber(long) |
javax.oss.ManagedEntityKey |
- |
New methods
|
javax.oss.ManagedEntityKeyResult |
- |
New methods:
|
javax.oss.ApplicationContext |
- |
Add the following methods:
|
Java provisioning API changes
The following table provides a comparison between the Java Provisioning APIs used in ASAP 4.5 and ASAP 4.6.x.
Table D-2 Java provisioning API changes
ASAP 4.5 | ASAP 4.6.x and later |
---|---|
Packages:
|
Packages:
|
Configure connection handler in tbl_comm_param |
Configure connection handler in tbl_nep_asdl_prog |
Specify 'J' device type in tbl_comm_param |
Specify interpreter type in tbl_nep_asdl_prog |
Configure directly into database using SQL |
Configure using XML and apply using JMX MBeans |
Class Diagnosis deprecated |
Class Diagnostic added |
set/getExitType deprecated |
set/getASDLExitType added |
set/getExitType deprecated from class NEConnection |
- |