The following macros are not currently supported in the header:
- style
Ejemplo de cliente de llamada Get
A continuación, se muestra un ejemplo de un programa de cliente de Axis que convoca la operación getServiceRequest para consultar un extracto de los detalles primarios (información general) que pertenecen a la solicitud de servicio identificada por el identificador de ticket especificado, en el formato de salida XML.
public class ServiceRequestClient { public void main ( String [] args) { try { // Create the request ServiceRequestStub srqStub = new ServiceRequestStub(); ServiceRequestStub.Credentials credentials = new ServiceRequestStub.Credentials(); ServiceRequestStub.ExtendedSettings extParams = new ServiceRequestStub.ExtendedSettings(); // Initialize Credentials (User Name & User Password / Authorization Token & Slice Token) credentials.setUserName ( "wsuser"); credentials.setUserPassword ( "wsuser"); // Initialize Extended Settings such as Response Format (XML, JSON) extParams.setResponseFormat ( "XML"); // Invoke the GET service ServiceRequestStub.DefaultServiceResponse serviceResponse = srqStub.getServiceRequest (credentials, extParams, ticketIdentifier); // Inspect successful execution of service and retrieve the response text if (serviceResponse.getResponseStatus ().equals ( "OK")) { System.out.println( "XML Response : " + serviceResponse.getResponseText ()); } // Retrieve the status code, status message and error messages, in case of failures else { System.out.println( "Status Code : " + serviceResponse.getStatusCode ()); System.out.println( "Status Message : " + serviceResponse.getStatusMessage ()); System.out.println( "Errors : " + Arrays.asList (serviceResponse.getErrors ()).toString ()); } } catch (Exception e) { System.out.println ( "Exception: " + e.getMessage()); } } }
© 2017 ServiceAide 1-650-206-8988 http://www.serviceaide.com info@serviceaide.com