Introduction
The following items are available for download:
C Client Library
Created Dec 19, 2011 3:23:49 PM.
Introduction
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.
REST XML Example
#include <setlistfm.c>
//...
xmlTextReaderPtr reader = ...; //set up the reader to the url.
setlistfm_ns0_setlist *response_element = ...;
response_element = xml_read_setlistfm_ns0_setlist(reader);
//handle the response as needed...
//free the setlistfm_ns0_setlist
free_setlistfm_ns0_setlist(response_element);
| file | size |
|---|---|
| setlistfm.c | 287.27K |
.NET Client Library
Created Dec 19, 2011 3:23:53 PM for .NET 2.0.
Introduction
The .NET client-side library defines the classes that can be (de)serialized to/from XML. This is useful for accessing the REST endpoints that are published by this application.
REST Example
//read a resource from a REST url
Uri uri = new Uri(...);
XmlSerializer s = new XmlSerializer(
typeof( Setlist )
);
//Create the request object
WebRequest req = WebRequest.Create(uri);
WebResponse resp = req.GetResponse();
Stream stream = resp.GetResponseStream();
TextReader r = new StreamReader( stream );
Setlist order = (Setlist) s.Deserialize( r );
//handle the result as needed...
This bundle contains C# source code.
| file | size |
|---|---|
| setlistfm-dotnet.zip | 4.79K |
Java Client Library (Java 5+)
Created Dec 19, 2011 3:23:53 PM for Java (Version 5+).
Introduction
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 REST endpoints that are published by this application.
REST Example (Raw JAXB)
java.net.URL url = new java.net.URL(baseURL + "/0.1/setlist/{setlistId}");
JAXBContext context = JAXBContext.newInstance( Setlist.class );
java.net.URLConnection connection = url.openConnection();
connection.connect();
Unmarshaller unmarshaller = context.createUnmarshaller();
Setlist result = (Setlist) unmarshaller.unmarshal( connection.getInputStream() );
//handle the result as needed...
REST Example (Jersey client)
com.sun.jersey.api.client.Client client = com.sun.jersey.api.client.Client.create();
Setlist result = client.resource(baseUrl + "/0.1/setlist/{setlistId}")
.get(Setlist.class);
//handle the result as needed...
Files
| file | size | description |
|---|---|---|
| setlistfm-client.jar | 15.67K | The binaries for the Java client library. |
| setlistfm-client-sources.jar | 10.89K | The sources for the Java client library. |
Objective C Client Library
Created Dec 19, 2011 3:23:50 PM.
Introduction
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.
REST XML Example
#include <setlistfm.h>
//...
SETLISTFMNS0Setlist *responseElement;
NSData *responseData; //data holding the XML from the response.
NSURL *baseURL = ...; //the base url including the host and subpath.
NSURL *url = [NSURL URLWithString: @"/0.1/setlist/{setlistId}" relativeToURL: baseURL];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:url];
NSURLResponse *response = nil;
NSError *error = NULL;
[request setHTTPMethod: @"GET"];
//this example uses a synchronous request,
//but you'll probably want to use an asynchronous call
responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
SETLISTFMNS0Setlist *responseElement = [SETLISTFMNS0Setlist readFromXML: responseData];
[responseElement retain];
//handle the response as needed...
Files
| file | size | description |
|---|---|---|
| setlistfm.h | 21.76K | |
| setlistfm.m | 221.54K |
Ruby Client Library
Created Dec 19, 2011 3:23:50 PM for Ruby.
Introduction
The Ruby 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.
JSON REST Example
require 'net/https'
require 'uri'
//...
//read a resource from a REST url
url = URI.parse("...")
request = Net::HTTP::Get.new(url.request_uri)
http = Net::HTTP.new(url.host, url.port)
//set up additional http stuff...
res = http.start do |ht|
ht.request(request)
end
result = Setlist.from_json(JSON.parse(res.body))
//handle the result as needed...
| file | size |
|---|---|
| setlistfm.rb | 25.21K |