Files and Libraries

C Client Library

Created January 13, 2021

The C module generates the source code for the ANSI-C-compatible data structures and (de)serialization functions that can be used in conjunction with libxml2 to (de)serialize the REST resources as they are represented as XML data.

The generated C source code depends on the XML Reader API and the XML Writer API as well as the <time.h>, <string.h>, and <stdlib.h> C standard libraries.

C Example
#include <api.c>
//...

xmlTextWriterPtr writer = ...; //set up the writer to the url.
api_model_commandModel *request_element = ...;
xmlTextReaderPtr reader = ...; //set up the reader to the url.
api_model_genericResponseModel *response_element = ...;
//set up the api_model_commandModel...
xml_write_api_model_commandModel(writer, request_element);
response_element = xml_read_api_model_genericResponseModel(reader);

//handle the response as needed...

//free the api_model_commandModel
free_api_model_commandModel(request_element);
//free the api_model_genericResponseModel
free_api_model_genericResponseModel(response_element);
    

Files
name size description
api.c 2.34M  
enunciate-common.c 39.68K Common code needed for all projects.

C# Client Library

Created January 13, 2021

The C# client-side library defines the classes that can be (de)serialized to/from XML. This is useful for accessing the HTTP resources that are published by this application.

C# Resource Example
//read a resource from a REST url
Uri uri = new Uri(...);

XmlSerializer s = new XmlSerializer(
  typeof( byte[] )
);

  //Create the request object
WebRequest req = WebRequest.Create(uri);
WebResponse resp = req.GetResponse();
Stream stream = resp.GetResponseStream();
TextReader r = new StreamReader( stream );

byte[] result = (byte[]) s.Deserialize( r );

//handle the result as needed...
    

Files
name size description
api-dotnet.zip 38.03K The C# source code for the C# client library.

GWT JSON Overlay

Created January 13, 2021

The Google Web Toolkit JSON Overlay library provides the JSON Overlays that can be used to access the Web service API for this application.

JSON Overlay Example
String url = ...;
RequestBuilder request = new RequestBuilder(RequestBuilder.GET, url);
request.sendRequest(null, new RequestCallback() {
  public void onResponseReceived(Request request, Response response) {
    if (200 == response.getStatusCode()) {
      //handle the successful data...
      GenericResponseModel data = GenericResponseModel.fromJson(response.getText());
      //handle the GenericResponseModel...
    }
    else {
      //handle the error...
    }
  }

  public void onError(Request request, Throwable throwable) {
    //handle the error...
  }
});
    

Files
name size description
api-gwt-json-overlay.jar 77.60K The sources for the GWT JSON overlay.

Java JSON Client Library

Created January 13, 2021

The Java client-side library is used to provide the set of Java objects that can be serialized to/from JSON using Jackson. This is useful for accessing the JSON REST endpoints that are published by this application.

Resources Example (Raw JAXB)
java.net.URL url = new java.net.URL(baseURL + "/agent/command");
ObjectMapper mapper = new ObjectMapper();
java.net.URLConnection connection = url.openConnection();
connection.setDoOutput(true);
connection.connect();

mapper.writeValue(connection.getOutputStream(), commandModel);
GenericResponseModel result = (GenericResponseModel) mapper.readValue( connection.getInputStream(), GenericResponseModel.class );
//handle the result as needed...
    
Resources Example (Jersey client)
javax.ws.rs.client.Client client = javax.ws.rs.client.ClientBuilder.newClient();

GenericResponseModel result = client.target(baseUrl + "/agent/command")
  .post(javax.ws.rs.client.Entity.entity(commandModel, "application/json"), GenericResponseModel.class);

//handle the result as needed...
    

Files
name size description
api-json-client.jar 87.20K The binaries for the Java JSON client library.
api-json-client-json-sources.jar 77.34K The sources for the Java JSON client library.

Java XML Client Library

Created January 13, 2021

The Java client-side library is used to access the Web service API for this application using Java.

The Java client-side library is used to provide the set of Java objects that can be serialized to/from XML using JAXB. This is useful for accessing the resources that are published by this application.

Resources Example (Raw JAXB)
java.net.URL url = new java.net.URL(baseURL + "/agent/command");
JAXBContext context = JAXBContext.newInstance( byte[].class, byte[].class );
java.net.URLConnection connection = url.openConnection();
connection.setDoOutput(true);
connection.connect();

Unmarshaller unmarshaller = context.createUnmarshaller();
Marshaller marshaller = context.createMarshaller();
marshaller.marshal(commandModel, connection.getOutputStream());
GenericResponseModel result = (GenericResponseModel) unmarshaller.unmarshal( connection.getInputStream() );
//handle the result as needed...
    
Resources Example (Jersey client)
javax.ws.rs.client.Client client = javax.ws.rs.client.ClientBuilder.newClient();

GenericResponseModel result = client.target(baseUrl + "/agent/command")
  .post(javax.ws.rs.client.Entity.entity(commandModel, "application/xml"), GenericResponseModel.class);

//handle the result as needed...
    

Files
name size description
api-xml-client.jar 110.28K The binaries for the Java XML client library.
api-xml-client-xml-sources.jar 108.00K The sources for the Java XML client library.

JavaScript Client Library

Created January 13, 2021

The JavaScript client-side library defines classes that can be (de)serialized to/from JSON. This is useful for accessing the resources that are published by this application, but only those that produce a JSON representation of their resources (content type "application/json").

The library uses ES6 class syntax which has limited support. See MDN and the ES6 Compatibility Table for more details.

The library contains a UMD loader which supports AMD, CommonJS and browser globals. The browser global variable name for this library is "javascriptClient".

JavaScript Example
//read the resource in JSON:
var json = JSON.parse(jsonString);

//create an object
var object = new Object(json);

//retreive the json again
var newJson = object.toJSON();

//serialize the json
var newJsonString = JSON.stringify(newJson);
    

Files
name size description
api-js.zip 37.88K  

Objective C Client Library

Created January 13, 2021

The Objective C module generates the source code for the Objective C classes and (de)serialization functions that can be used in conjunction with libxml2 to (de)serialize the REST resources as they are represented as XML data.

The generated Objective C source code depends on the XML Reader API and the XML Writer API as well as the base OpenStep foundation classes.

Objective C Example
#import <api.h>
//...

APIMODELCommandModel *requestElement = [[APIMODELCommandModel alloc] init];
NSData *requestData; //data holding the XML for the request.
APIMODELGenericResponseModel *responseElement;
NSData *responseData; //data holding the XML from the response.
NSURL *baseURL = ...; //the base url including the host and subpath.
NSURL *url = [NSURL URLWithString: @"/agent/command" relativeToURL: baseURL];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:url];
NSURLResponse *response = nil;
NSError *error = NULL;
[request setHTTPMethod: @"POST"];
[request setValue:@"application/xml" forHTTPHeaderField:@"Content-Type"];  

//set up the APIMODELCommandModel...

requestData = [requestElement writeToXML];
[request setHTTPBody: requestData];

//this example uses a synchronous request,
//but you'll probably want to use an asynchronous call
responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
APIMODELGenericResponseModel *responseElement = [APIMODELGenericResponseModel readFromXML: responseData];
[responseElement retain];

//handle the response as needed...
    

Files
name size description
api.h 193.09K  
api.m 1.74M  
enunciate-common.h 12.83K Common header needed for all projects.
enunciate-common.m 42.34K Common implementation code needed for all projects.

PHP JSON Client Library

Created January 13, 2021

The PHP JSON client-side library defines the PHP classes that can be (de)serialized to/from JSON. This is useful for accessing the resources that are published by this application, but only those that produce a JSON representation of their resources (content type "application/json").

This library requires the json_encode function which was included in PHP versions 5.2.0+.

PHP JSON Example
//read the resource in JSON:
$json = ...;

//read the json as an array.
$parsed = json_decode($json, true);

//read the json array as the object
$result = new Object($parsed);

//open a writer for the json
$json = $result->toJson();
    

Files
name size description
api-php.zip 44.27K  

PHP XML Client Library

Created January 13, 2021

The PHP client-side library defines the PHP classes that can be (de)serialized to/from XML. This is useful for accessing the resources that are published by this application, but only those that produce a XML representation of their resources.

This library leverages the XMLReader and XMLWriter tools that were included in PHP versions 5.1.0+.

PHP XML Example
//read the resource in XML form:
$xml = ...;

$reader = new \XMLReader();

if (!$reader->open($xml)) {
  throw new \Exception('Unable to open ' . $xml);
}
$result = new Object($reader);

//open a writer for the xml
$out = ...;
$writer = new \XMLWriter();
$writer->openUri($out);
$writer->startDocument();
$writer->setIndent(4);
$result->toXml($writer);
$writer->flush();
    

Files
name size description
api-php.zip 64.49K  

Ruby JSON Client Library

Created January 13, 2021

The Ruby JSON client-side library defines the Ruby classes that can be (de)serialized to/from JSON. This is useful for accessing the REST endpoints that are published by this application, but only those that produce a JSON representation of their resources (content type "application/json").

This library leverages the Ruby JSON Implementation, which is required in order to use this library.

Ruby JSON Example
require 'net/https'
require 'uri'
//...

//read a resource from a REST url
url = URI.parse("...")
request = Net::HTTP::Post.new(url.request_uri)
input = Object.new
//set up the Object...
request.body = input.to_json
request['Content-Type'] = "application/json"

http = Net::HTTP.new(url.host, url.port)
//set up additional http stuff...
res = http.start do |ht|
  ht.request(request)
end

result = Object.from_json(JSON.parse(res.body))

//handle the result as needed...
    

Files
name size description
api.rb 465.01K