UltraLite User's Guide
UltraLite Reference
Synchronization parameters
Sets a new MobiLink password associated with the user_name.
The parameter is optional, and is a string.
Set the parameter as follows:
ul_synch_info info; // ... info.password = UL_TEXT( "myoldpassword" ); info.new_password = UL_TEXT( "mynewpassword" );
The Java access methods are getNewPassword and setNewPassword.
Set the parameter as follows:
UlSynchOptions opts = new UlSynchOptions; opts.setUserName( "50" ); opts.setPassword( "mypassword" ); opts.setNewPassword( "mynewpassword" ); // set other options here conn.synchronize( opts );
Authenticating MobiLink Users.