This chapter provides information about the Oracle Communications Network Integrity UIM Sample Web Service.
This section provides instructions for building the Oracle Communications Unified Inventory Management (UIM) Sample web service client JAR file. This file is used by the UIM Integration cartridge. This client JAR is available in the ora_ni_uim_webservice project.
Building the UIM Sample web service client JAR is required only when you want to modify the web service and have the UIM Integration cartridge use it. To use the web service in client software, you must generate the NI_UimClient.jar file.
To generate the JAR file:
Set up the host.properties file. See "Installing the UIM Sample Web Service" for instructions.
Execute the All target using the buildUimClient.xml ANT file.
Copy the NI_UimClient.jar file from the webarchive\ora_ni_uim_webservices_cartproj folder into the UIM Integration cartridge lib directory.
The NI_UimClient.jar file is generated, which can then be used in client software.
Example 6-1 shows the code that you can use to connect the NI UIM Client to UIM.
Example 6-1 Client UIM Connection Code
String userId = dis.getUsername(); String passWd = dis.getPassword(); if (userId == null || passWd == null) { logger.warning("Configuration error: Username/Password values are required for UIM Inventory System."); throw new ProcessorException( "Configuration error: Username/Password values are required for UIM Inventory System."); } try { logger.finest("invoke new NI_Uim_Impl"); NI_Uim service = new NI_Uim_Impl(); if (service == null) { logger.severe("UIM Web Service initialization error: NI_Uim == null"); throw new ProcessorException("UIM Web Service initialization error: NI_Uim == null"); } logger.finest("invoke service.getNI_UimHTTPPort"); NI_UimPort port = service.getNI_UimHTTPPort(userId.getBytes(), passWd.getBytes()); if (port == null) { logger.severe("UIM Web Service initialization error: NI_UimPort == null"); throw new ProcessorException("UIM Web Service initialization error: NI_UimPort == null"); } logger.finer("UIM WS Endpoint = " + dis.getAddress()); logger.finest("Setting endpoint on the WS port."); Stub stub = (Stub) port; stub._setProperty(Stub.ENDPOINT_ADDRESS_PROPERTY, dis.getAddress()); // Success. Save the connection objects. // uim_service = service; uim_port = port; }
When uim_port is established, the web service calls are available through uim_port.
Note:
For the full source code for this fragment, vieworacle.communications.integrity.mibiiuimcartridge.resolutionprocessors.resolutionframeworkinitializer.uimWebService
.This section provides information about web service operations for the UIM Sample web service provided in the ora_ni_uim_webservice project.
The web service assumes that all specifications comply with the Oracle Communications Information Model. The web service assumes that all specifications in UIM that the web service interacts with contain the characteristics listed in Table 6-1.
Table 6-1 UIM Sample Web Services Entity Characteristics Requirements
Entity | Characteristics |
---|---|
PhysicalDevice |
nativeEMSName |
Equipment |
physicalLocation nativeEMSName |
EquipmentHolder |
nativeEMSName physicalLocation |
PhysicalPort |
nativeEmsName physicalLocation physicalAddress serialNumber |
LogicalDevice |
nativeEMSName nativeEMSAdminServiceState nativeEMSServiceState physicalLocation |
DeviceInterface |
nativeEMSName nativeEMSAdminServiceState nativeEMSServiceState physicalLocation ifType minSpeed maxSpeed nominalSpeed |
MediaInterface |
nativeEMSName nativeEMSAdminServiceState nativeEMSServiceState physicalLocation ifType minSpeed maxSpeed nominalSpeed mtuCurrent mtuSupported nativeEMSConnectorPresent physicalAddress |
Before you install the UIM Sample Web Service, ensure that the following are installed:
Oracle Communications Design Studio for UIM. See Design Studio Installation Guide.
Oracle WebLogic Server and UIM, or UIM resources, in an environment accessible to Design Studio. See UIM Installation Guide for information about installing UIM. See UIM Developer's Guide for information about installing UIM resources.
To install the UIM Sample Web Service on UIM:
Rename the etc\COMPUTERNAME.properties file to host.properties, where host is the environment name of the computer.
Note:
Obtain the environment name for the computer by entering the hostname command at the prompt. The output from this command is the computer environment name.This enables the loaded Java project to reflect the environment.
Open the host.properties file and set the property fields to reference your WebLogic domain and UIM instance.
Save and close the file.
(Optional) If you wish to develop the web service in Design Studio, set the following Java Build Path Variables:
UIM_LIB: Example C:/wls1036/user_projects/domains/UIM/UIM/lib
POMS_LIB: Example C:/OracleCommunications/commsplatform/ws
POMS_PLIB: Example C:/OracleCommunications/POMSClient/lib
FMW_LIB: Example C:/wls1036/modules
In the build.xml file, run the following ANT targets to get the web service ready to build and deploy:
clean
extract.ear
Edit the META-INF\application.xml file and add the following code fragment:
<module> <web> <web-uri>NI_Uim.war</web-uri> <context-root>NI_Uim</context-root> </web> </module>
In the build.xml file, run the following ANT targets to build the web service and update the EAR file:
generate-from wsdl
build-service
update.ear
Redeploy custom.ear using the WebLogic console.
(Optional) If you are installing the Network Integrity UIM Sample Web Service on a UIM instance that is not located on the same server as Design Studio, do not run update.ear. For information about installing UIM on a remote server, see UIM Developer's Guide.
To configure the Network Integrity UI for the UIM Sample Web Service:
Log in to Network Integrity.
Click Manage Import System. The Import System Details page is displayed.
In the Name field, enter the name of the import system.
In the Address field, enter the following address:
http://UIM_IPAddress:UIM_Port/NI_Uim/NI_UimHTTP
If UIM is installed with SSL enabled, the UIM URL requires HTTPS.
In the User Name field, enter the UIM user name.
In the Password field, enter the password of UIM.
Note:
You must configure the WebLogic domain to accept UIM Sample Web Service connections using HTTPS. See UIM Installation Guide and UIM System Administrator's Guide for more information.The UIM Sample Web Service provides Create, Read, Update, and Delete (CRUD) operations on the following entities:
Logical Device Entity
Device Interface Entity
Media Interface Entity
Physical Device Entity
Equipment Entity
Equipment Holder Entity
Physical Port Entity
Channelized Connectivity Entity
The UIM Sample Web Service provides create-association operations between peer entities using:
linkLogicalPhysicalDeviceRequest: This operation supports horizontal associations. The operation provides associations between the logical device and the physical device.
linkLogicalPhysicalInterfaceRequest: This operation supports horizontal associations. The operation provides associations between the interface and the physical ports.
The UIM Sample Web Service provides create-parent-and-child associations between entities using link.
The UIM Sample Web Service provides delete associations between parent and child entities and delete associations between peer entities. For these operations, the UIM Sample Web Service uses unLink, which deletes vertical and horizontal associations.
The UIM Sample Web Service provides operations to retrieve an entire device tree using:
getPhysicalDeviceTree
getLogicalDeviceTree
The UIM Sample Web Service defaults to the following attribute values for find-entity operations (see findLogicalDeviceRequest and findPhysicalDeviceRequest) if these qualifiers are not already set:
id field: EQUALS
Name: BEGINS_WITH
Mgmt Ip Address: EQUALS
The <specType> element is commonly used throughout the UIM Sample Web Service examples (see Example 6-2). The <specType> element is used to identify the entity type. This stages the operations to be executed for a particular Oracle Communications Unified Inventory Management (UIM) API. Set the <name> element to the name of the specification you are using.
The <entityType> element supports the following values:
LOGICALDEVICE
DEVICEINTERFACE
MEDIAINTERFACE
PHYSICALDEVICE
EQUIPMENT
EQUIPMENTHOLDER
PHYSICALPORT
The following response messages can appear:
SUCCESS: This message appears with a return value and indicates that an operation has succeeded and is committed to UIM.
FAILURE: This error message indicates that the operation failed but the UIM rollback was successful.
Exception messages indicate that an operation failed and the UIM rollback failed. This throws exceptionsInventoryFaultType and ValidationFaultType.
Use the following code pattern to inspect a response and detect an operation FAILURE.
CreateLogicalDeviceRequestType createLogicalDeviceRequestType = new CreateLogicalDeviceRequestType(); createLogicalDeviceRequestType.setLogicalDevice(wsLogicalDevice); UIMWebService.checkResponse(uimPort.createLogicalDevice(createLogicalDeviceRequestType));
Table 6-2 describes the files included in the UIM Sample Web Service project.
Table 6-2 UIM Sample Web Service Project Files
File | Description |
---|---|
NI-Uim-soapui-project.xml |
SoapUI project file that contains sample requests and responses. |
WSDL-Documentation.html |
Generated WSDL documentation that shows all the available operations. A short description of each operation is provided. |
Table 6-3 shows how the UIM Sample Web Service processes various entities.
Table 6-3 Entity Operation Coding Patterns
Entity Operations | Signature Patterns |
---|---|
createLogicalDeviceRequest createDeviceInterfaceRequest createMediaInterfaceRequest createPhysicalDeviceRequest createEquipmentRequest createEquipmentHolderRequest createPhysicalPortRequest |
Web service:
|
updateLogicalDeviceRequest updateDeviceInterfaceRequest updateMediaInterfaceRequest updatePhysicalDeviceRequest updateEquipmentRequest updateEquipmentHolderRequest updatePhysicalPortRequest |
Web service:
|
findLogicalDeviceRequest findDeviceInterfaceRequest findMediaInterfaceRequest findPhysicalDeviceRequest findEquipmentRequest findEquipmentHolderRequest findPhysicalPortRequest |
Web service:
|
getLogicalDeviceRequest getDeviceInterfaceRequest getMediaInterfaceRequest getPhysicalDeviceRequest getEquipmentRequest getEquipmentHolderRequest getPhysicalPortRequest |
Web service:
|
link |
Web service:
|
unlink |
Web service:
|
getPhysicalDeviceTree getLogicalDeviceTree |
Web service:
|
Note:
Oracle Communications Network Integrity does not support delete operations on the PhysicalDevice, LogicalDevice, and Equipment entities. Log in to UIM as administrator to delete these entities.To enable debugging for the UIM Sample Web Service, which is displayed on the Oracle WebLogic Server console:
Open the domain\UIM\config\loggingconfig.xml file.
Add the following text to the file:
<logger name="oracle.communications.inventory.webservice.adapter.ni" additivity="false"> <level value="debug" /> <appender-ref ref="stdout"/> <appender-ref ref="rollingFile"/> </logger>
Example 6-3 shows a fragment of code used to update a logical device using the UIM Sample Web Service. The fragment shows how handling is accomplished for the UIM Sample Web Service.
Example 6-3 Update Logical Device Coding Fragment
String errorMessageTask = ""; try { if (connect() == null) { failAll(context, attributeValueMismatchList, UIM_CONNECTION_FAILURE); return; } errorMessageTask = "findLogicalDevice"; Range range = new Range(); range.setStartRange(0); range.setEndRange(2); FindLogicalDeviceRequestType findLogicalDeviceRequestType = new FindLogicalDeviceRequestType(); findLogicalDeviceRequestType.setId(importedLogicalDevice.getId()); findLogicalDeviceRequestType.setIdQualifier(SearchQualifier.equals); findLogicalDeviceRequestType.setRange(range); GetIdsResponseType uimLogicalDevices = uimPort.findLogicalDevice(findLogicalDeviceRequestType); if (uimLogicalDevices.getId() != null) { String[] Ids = uimLogicalDevices.getId(); if (Ids.length != 1) { String msg = "Found " + Ids.length + " logicalDevices matching importedLogicalDevice.getId()=" + importedLogicalDevice.getId() + ", expecting 1"; logger.log(Level.SEVERE, msg); failAll(context, attributeValueMismatchList, msg); return; } } errorMessageTask = "getLogicalDevice"; GetLogicalDeviceRequestType getLogicalDeviceRequestType = new GetLogicalDeviceRequestType(); getLogicalDeviceRequestType.setId(importedLogicalDevice.getId()); GetLogicalDeviceResponseType getLogicalDeviceResponseType = uimPort .getLogicalDevice(getLogicalDeviceRequestType); NILogicalDevice wsLogicalDevice = getLogicalDeviceResponseType.getLogicalDevice(); for (DisDiscrepancy discrepancy : attributeValueMismatchList) { String attrName = discrepancy.getAttributeOrRelationshipName(); if (attrName.equals(NAME)) { wsLogicalDevice.setName(discoveredLogicalDevice.getName()); } else if (attrName.equals(DESCRIPTION)) { wsLogicalDevice.setDescription(discoveredLogicalDevice.getDescription()); } else if (attrName.equals(LogicalDeviceHelper.MGMT_IP_ADDRESS)) { copyCharacteristic(discoveredLogicalDevice, wsLogicalDevice, LogicalDeviceHelper.MGMT_IP_ADDRESS); } else if (attrName.equals(LogicalDeviceHelper.NATIVE_EMS_ADMIN_SERVICE_STATE)) { wsLogicalDevice.setNativeEmsAdminServiceState(LogicalDeviceHelper .convertEmsServiceState(discoveredLogicalDevice.getNativeEmsAdminServiceState())); } else if (attrName.equals(LogicalDeviceHelper.NATIVE_EMS_SERVICE_STATE)) { wsLogicalDevice.setNativeEmsServiceState(LogicalDeviceHelper.convertEmsServiceState(discoveredLogicalDevice .getNativeEmsServiceState())); } else if (attrName.equals(LogicalDeviceHelper.SYS_OBJECT_ID)) { copyCharacteristic(discoveredLogicalDevice, wsLogicalDevice, LogicalDeviceHelper.SYS_OBJECT_ID); } else { copyCharacteristic(discoveredLogicalDevice, wsLogicalDevice, attrName); } } UpdateLogicalDeviceRequestType updateLogicalDeviceRequestType = new UpdateLogicalDeviceRequestType(); updateLogicalDeviceRequestType.setLogicalDevice(wsLogicalDevice); errorMessageTask = "updateLogicalDevice"; checkResponse(uimPort.updateLogicalDevice(updateLogicalDeviceRequestType)); passAll(context, attributeValueMismatchList); } catch (Exception e) { failAll(context, attributeValueMismatchList, errorMessageTask + LOCAL_ENTITY + discoveredLogicalDevice.getId(), e); } logger.exiting(LOG_MYCLASSNAME, "handleAttributeValueMismatch");