Files and Libraries

accounting.wsdl

Created July 2, 2024

Files
name size description
accounting.wsdl 74.86K  

accounting.xsd

Created July 2, 2024

Files
name size description
accounting.xsd 70.55K  

airbank.wsdl

Created July 2, 2024

Files
name size description
airbank.wsdl 48.54K  

airbank.xsd

Created July 2, 2024

Files
name size description
airbank.xsd 47.65K  

airportal.wsdl

Created July 2, 2024

Files
name size description
airportal.wsdl 1.43M  

airportal.xsd

Created July 2, 2024

Files
name size description
airportal.xsd 1.36M  

analytics.wsdl

Created July 2, 2024

Files
name size description
analytics.wsdl 33.17K  

analytics.xsd

Created July 2, 2024

Files
name size description
analytics.xsd 28.57K  

external.wsdl

Created July 2, 2024

Files
name size description
external.wsdl 140.17K  

external.xsd

Created July 2, 2024

Files
name size description
external.xsd 118.67K  

gdsclient.wsdl

Created July 2, 2024

Files
name size description
gdsclient.wsdl 2.83K  

gdsclient.xsd

Created July 2, 2024

Files
name size description
gdsclient.xsd 1.67K  

GWT JSON Overlay

Created July 2, 2024

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...
      Ticket data = Ticket.fromJson(response.getText());
      //handle the Ticket...
    }
    else {
      //handle the error...
    }
  }

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

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

helpdesk.wsdl

Created July 2, 2024

Files
name size description
helpdesk.wsdl 4.92K  

helpdesk.xsd

Created July 2, 2024

Files
name size description
helpdesk.xsd 3.56K  

hpl.wsdl

Created July 2, 2024

Files
name size description
hpl.wsdl 56.75K  

hpl.xsd

Created July 2, 2024

Files
name size description
hpl.xsd 59.70K  

inside.wsdl

Created July 2, 2024

Files
name size description
inside.wsdl 108.26K  

inside.xsd

Created July 2, 2024

Files
name size description
inside.xsd 104.98K  

Java JSON Client Library

Created July 2, 2024

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 + "/airbankDao/updateAirBankTicket");
ObjectMapper mapper = new ObjectMapper();
java.net.URLConnection connection = url.openConnection();
connection.setDoOutput(true);
connection.connect();

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

Ticket result = client.target(baseUrl + "/airbankDao/updateAirBankTicket")
  .post(javax.ws.rs.client.Entity.entity(ticket, "application/json"), Ticket.class);

//handle the result as needed...
    

Files
name size description
cbtwebservices-json-client.jar 573.56K The binaries for the Java JSON client library.
cbtwebservices-json-client-json-sources.jar 488.16K The sources for the Java JSON client library.

Java XML Client Library

Created July 2, 2024

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

The Java client-side library uses JAX-WS to access the SOAP API for this application.

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.

JAX-WS Example
// instantiate a new service with an impl
// (or through dependency injection, or whatever)...
InvoiceEmailProvider service = new InvoiceEmailProvider();

//make the remote call to read the result...
result = service.sendUninvoicedEmailsToAgents();

//handle the result as needed...
    
Resources Example (Raw JAXB)
java.net.URL url = new java.net.URL(baseURL + "/airbankDao/updateAirBankTicket");
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(ticket, connection.getOutputStream());
Ticket result = (Ticket) 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();

Ticket result = client.target(baseUrl + "/airbankDao/updateAirBankTicket")
  .post(javax.ws.rs.client.Entity.entity(ticket, "application/xml"), Ticket.class);

//handle the result as needed...
    

Files
name size description
cbtwebservices-xml-client.jar 6.48M The binaries for the Java XML client library.
cbtwebservices-xml-client-xml-sources.jar 4.72M The sources for the Java XML client library.

JavaScript Client Library

Created July 2, 2024

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
cbtwebservices-javascript-client-js.zip 268.44K

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);
    

ns0.xsd

Created July 2, 2024

Files
name size description
ns0.xsd 1.05M  

ns1.wsdl

Created July 2, 2024

Files
name size description
ns1.wsdl 2.96K  

ns1.xsd

Created July 2, 2024

Files
name size description
ns1.xsd 1.35K  

ns2.wsdl

Created July 2, 2024

Files
name size description
ns2.wsdl 3.88K  

ns2.xsd

Created July 2, 2024

Files
name size description
ns2.xsd 2.03K  

ns3.wsdl

Created July 2, 2024

Files
name size description
ns3.wsdl 3.65K  

ns3.xsd

Created July 2, 2024

Files
name size description
ns3.xsd 2.89K  

PHP JSON Client Library

Created July 2, 2024

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
cbtwebservices-php-json-client-php.zip 321.06K

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();
    

PHP XML Client Library

Created July 2, 2024

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
cbtwebservices-php-xml-client-php.zip 373.76K

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();
    

Ruby JSON Client Library

Created July 2, 2024

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
cbtwebservices.rb 3.94M

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...
    

sap.wsdl

Created July 2, 2024

Files
name size description
sap.wsdl 17.67K  

sap.xsd

Created July 2, 2024

Files
name size description
sap.xsd 16.27K  

valuelogic.wsdl

Created July 2, 2024

Files
name size description
valuelogic.wsdl 51.58K  

valuelogic.xsd

Created July 2, 2024

Files
name size description
valuelogic.xsd 48.23K  

vpay.wsdl

Created July 2, 2024

Files
name size description
vpay.wsdl 24.05K  

vpay.xsd

Created July 2, 2024

Files
name size description
vpay.xsd 21.86K