UltraLite User's Guide
UltraLite Reference
Synchronization parameters
Confirm communications between the UltraLite client and the MobiLink synchronization server. When this parameter is set to true, no synchronization takes place.
When the MobiLink synchronization server receives a ping request, it connects to the consolidated database, authenticates the user, and then sends the authenticating user status and value back to the client.
If the ping succeeds, the MobiLink server issues an information message. If the ping does not succeed, it issues an error message.
If the MobiLink user name cannot be found in the ml_user system table and the MobiLink server is running with the command line option -zu+, the MobiLink server adds the user to ml_user.
The MobiLink synchronization server may execute the following scripts, if they exist, for a ping request:
begin_connection
authenticate_user
authenticate_user_hashed
end_connection
The parameter is optional, and is a boolean.
Set the parameter as follows:
ul_synch_info info; // ... info.ping = ul_true;
The Java access method is setPing.
Set the parameter as follows:
UlSynchOptions opts = new UlSynchOptions; opts.setUserName( "50" ); opts.setPing( true ); // set other options here conn.synchronize( opts );
-pi option