Sample code for 30+ languages & platforms
Dart

Aruba Fatturazione Elettronica CreateTransmissionRequestList

See more Aruba Fatturazione Examples

Creation of "Financial Communications" transmission request in zip format.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  // This example assumes the Chilkat API to have been previously unlocked.
  // See Global Unlock Sample for sample code.

  final http = CkHttp();

  // Implements the following CURL command:

  // curl -X POST https://ws.fatturazioneelettronica.aruba.it/services/ClientRequest/CreateTransmissionRequestList \
  //   -H "Accept: application/json" \
  //   -H "Content-Type: application/json;charset=UTF-8" \
  //   -d '{
  //   "userName" : "ARUBA0000",
  //   "password" : "ArubaPwd",
  //   "userID" : "ARUBA0000",
  //   "comunicationType" : "LI",
  //   "dataFile" : "dGVzdA=="
  // }'

  // The dataFile must contain a Zip file, containing xml files which conform to the Revenue Agency specifications. 
  // The archive file must be Base64 codified and contain a CADES-based electronic signature.

  final zip = CkZip();

  // Initialize the zip object.  Because we will never actually write a zip file to the filesystem,
  // the filepath passed to NewZip does not matter.
  zip.newZip('x.zip');

  // Append references to XML files to the zip object in memory.
  final recurse = false;
  try {
    zip.appendFiles('qa_data/aruba/*.xml', recurse);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  // Write the zip archive into the bdZip object.
  final bdZip = CkBinData();
  try {
    zip.writeBd(bdZip);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  // Get the zip in base64 format.
  final zipAsBase64 = bdZip.getEncoded('base64');

  // Use the following online tool to generate HTTP code from a CURL command
  // Convert a cURL Command to HTTP Source Code

  // Use this online tool to generate code from sample JSON:
  // Generate Code to Create JSON

  // The following JSON is sent in the request body.

  // {
  //   "userName": "ARUBA0000",
  //   "password": "ArubaPwd",
  //   "userID": "ARUBA0000",
  //   "comunicationType": "LI",
  //   "dataFile": "dGVzdA=="
  // }

  final json = CkJsonObject();
  json.updateString('userName', 'ARUBA0000');
  json.updateString('password', 'ArubaPwd');
  json.updateString('userID', 'ARUBA0000');
  json.updateString('comunicationType', 'LI');
  json.updateString('dataFile', zipAsBase64);

  http.setRequestHeader('Content-Type', 'application/json;charset=UTF-8');
  http.setRequestHeader('Accept', 'application/json');

  final resp = CkHttpResponse();
  try {
    http.httpJson('POST', 'https://ws.fatturazioneelettronica.aruba.it/services/ClientRequest/CreateTransmissionRequestList', json, 'application/json', resp);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  final sbResponseBody = CkStringBuilder();
  resp.getBodySb(sbResponseBody);
  final jResp = CkJsonObject();
  jResp.loadSb(sbResponseBody);
  jResp.emitCompact = false;

  print('Response Body:');
  print(jResp.emit());

  final respStatusCode = resp.statusCode;
  print('Response Status Code = $respStatusCode');
  if (respStatusCode >= 400) {
    print('Response Header:');
    print(resp.header);
    print('Failed.');
    return;
  }

  // Sample JSON response:
  // (Sample code for parsing the JSON response is shown below)

  // {
  //   "errorCode": "",
  //   "errorDescription": "",
  //   "requestID": "C70WC0SIPQ1JISWQ",
  //   "requestIDList": [
  //     {
  //       "fileName": "ITADFSREETDSD_LI_0001.xml",
  //       "requestID": "TXZWQPVYVFJHRUKN"
  //     },
  //     {
  //       "fileName": "ITADFSREETDSD_LI_0002.xml",
  //       "requestID": "PRSGFITDHFPTJ8OO"
  //     },
  //     {
  //       "fileName": "ITADFSREETDSD_LI_0003.xml",
  //       "requestID": "QNJ9E2MWGYGSM22Q"
  //     }
  //   ]
  // }

  // Sample code for parsing the JSON response...
  // Use the following online tool to generate parsing code from sample JSON:
  // Generate Parsing Code from JSON

  var fileName = '';

  final errorCode = jResp.stringOf('errorCode');
  final errorDescription = jResp.stringOf('errorDescription');
  var requestID = jResp.stringOf('requestID');
  var i = 0;
  final countI = jResp.sizeOfArray('requestIDList');
  while (i < countI) {
    jResp.i = i;
    fileName = jResp.stringOf('requestIDList[i].fileName');
    requestID = jResp.stringOf('requestIDList[i].requestID');
    i++;
  }
}