The OSS client cannot communicate with the server
Introduction
The following XML API ping sample can be used to test whether the OSS application can access the NFM-P server. Information in the SOAP/XML request includes:
An exception response to a failed ping may result in many types of return messages, for example:
Steps
1 |
Run a ping command similar to the following in Figure C-1, Ping request example . Figure C-1: Ping request example<?xml version="1.0" encoding="UTF-8"?><SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP:Header> <header xmlns="xmlapi_1.0"> <security> <user>username</user> <password>password</password> </security> <requestID>XML_API_client@n</requestID> </header> </SOAP:Header> <SOAP:Body> <ping xmlns="xmlapi_1.0"/> </SOAP:Body></SOAP:Envelope> |
2 |
Review the three-digit HTTP response code.
|
3 |
Check the XML API response for any indication of other communication problems. Figure C-2, Ping response message is a successful response message to the ping. The response indicates the correct release 1.0 of XML on the server that responds to the ping. Figure C-2: Ping response message<?xml version="1.0" encoding="UTF-8"?><SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP:Header> <header xmlns="xmlapi_1.0"> <requestID>XML_API_client@n</requestID> </header> </SOAP:Header> <SOAP:Body> <pingResponse xmlns="xmlapi_1.0"/> </SOAP:Body></SOAP:Envelope> End of steps |