Local Business Object

Defined in Unwired WorkSpace, local business objects are not bound to EIS data sources, so cannot be synchronized. Instead, they are objects that are used as local data store on device. Local business objects do not call submitPending, or perform a replay or import from the Unwired Server

An example of a local business object:
LoginStatus status= new LoginStatus ();
   status.Id = 123;
   status.Time = DateTime.Now;
   status.Success = true;
   status.Create();

   long savedId = 123;
   LoginStatus status = LoginStatus.Find(savedId);
   status.Success = false;
   status.Update();

      
   long savedId = 123;
   LoginStatus status = LoginStatus.Find(savedId);
   status.Delete();
Related concepts
Connection APIs
Synchronization APIs
Related tasks
Installing X.509 Certificates on Windows Mobile Devices and Emulators
Related reference
Query APIs
Operations APIs
Personalization APIs
Object State APIs
Security APIs
Utility APIs
Single Sign-On With X.509 Certificate Related Object API
Exceptions
MetaData and Object Manager API
Replication-Based Synchronization APIs