Sample code for 30+ languages & platforms
Android™

Belgium eHealth Platform - checkConnection

See more Belgian eHealth Platform Examples

Demonstrates the first operation of PlatformIntegrationConsumerTest (checkConnection), which has no message-level security and therefore no wsse:Security block in the SOAP header. You test the SSL/TLS connection to the SOA platform.

Chilkat Android™ Downloads

Android™
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    boolean success = false;

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

    CkHttp http = new CkHttp();

    success = http.SetSslClientCertPfx("SSIN=12345678.acc.p12","p12_password");
    if (success == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    // Create the following XML
    // <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:be:fgov:ehealth:platformintegrationconsumertest:v1"
    // xmlns:urn1="urn:be:fgov:ehealth:platformintegrationconsumertest:types:v1">
    //     <soapenv:Header/>
    //     <soapenv:Body>
    //         <urn:CheckConnectionRequest>
    //             <urn1:Message>Hello World</urn1:Message>
    //             <urn1:Timestamp>2014-12-30T15:29:03.157+01:00</urn1:Timestamp>
    //         </urn:CheckConnectionRequest>
    //     </soapenv:Body>
    // </soapenv:Envelope>

    CkXml xml = new CkXml();
    xml.put_Tag("soapenv:Envelope");
    xml.AddAttribute("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/");
    xml.AddAttribute("xmlns:urn","urn:be:fgov:ehealth:platformintegrationconsumertest:v1");
    xml.AddAttribute("xmlns:urn1","urn:be:fgov:ehealth:platformintegrationconsumertest:types:v1");
    xml.UpdateChildContent("soapenv:Header","");
    xml.UpdateChildContent("soapenv:Body|urn:CheckConnectionRequest|urn1:Message","Hello World");

    // Create a timestamp with the current date/time in the following format: 2014-12-30T15:29:03.157+01:00
    CkDateTime dt = new CkDateTime();
    dt.SetFromCurrentSystemTime();

    xml.UpdateChildContent("soapenv:Body|urn:CheckConnectionRequest|urn1:Timestamp",dt.getAsTimestamp(true));

    http.SetRequestHeader("Content-Type","text/xml");

    CkHttpResponse resp = new CkHttpResponse();
    success = http.HttpStr("POST","https://services-acpt.ehealth.fgov.be/PlatformIntegrationConsumerTest/v1",xml.getXml(),"utf-8","application/xml",resp);
    if (success == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    Log.i(TAG, resp.bodyStr());
    Log.i(TAG, "response status code = " + String.valueOf(resp.get_StatusCode()));

    // A successful response is a 200 status code, with this sample response:
    // 
    // <?xml version="1.0"?>
    // <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    //    <soapenv:Header xmlns:v1="urn:be:fgov:ehealth:platformintegrationconsumertest:v1" xmlns:v11="urn:be:fgov:ehealth:platformintegrationconsumertest:types:v1"/>
    //    <soapenv:Body xmlns:v1="urn:be:fgov:ehealth:platformintegrationconsumertest:v1" xmlns:v11="urn:be:fgov:ehealth:platformintegrationconsumertest:types:v1">
    //       <ic:CheckConnectionResponse xmlns:ic="urn:be:fgov:ehealth:platformintegrationconsumertest:v1" xmlns:type="urn:be:fgov:ehealth:platformintegrationconsumertest:types:v1">
    //          <type:Message>Hello World</type:Message>
    //          <type:Timestamp>2023-09-28T21:24:32.925+02:00</type:Timestamp>
    //          <type:AuthenticatedConsumer>anonymous</type:AuthenticatedConsumer>
    //       </ic:CheckConnectionResponse>
    //    </soapenv:Body>
    // </soapenv:Envelope>

  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}