Error Situations
If any connection, certificate installation or transmission error occurs during GSurf communication, details of the error will be returned in the corresponding fields:
FieldType | Description |
---|---|
4091 | Error installing certificate |
4092 | Transmission or network error during communication |
On older versions of Android (4.x), it is necessary to load the gsurf_rsa library in the Java application before instantiating the CliSitef library. Here is the excerpt that must be inserted:
try {
System.loadLibrary ("gsurf_rsa");
} catch (Exception e) {
}
Clisitef = new CliSiTef (this.getApplicationContext());
configuraCliSiTef ();
Updated 15 days ago