Sybase MBO Concept and Creation


The design cornerstone of the Sybase’s MEAP the Sybase Unwired Platform is the Mobile Business Object (MBO). The MBO encapsulates the business process logic and data into a reusable unit that can be accessed from a variety of clients.
The development can take two approaches, firstly the Top-Down approach, which creates the MBO based upon how the client wants to use it… eventually binding to the data source. Secondly, the Bottom-UP approach which uses the data source to automatically bind and create the MBO. Both use the Unwired tooling and are easy to create, with similar steps listed below
  1. Connect to the back-end data sources that need to be mobilized, via the Unwired tooling
  2. Connect the Unwired tooling to the Unwired Server
  3. Create a Mobile Application Project
  4. Create the MBO from the data source via wizards or Create the MBO attributes and Create, Update, Delete Operations seperately
  5. Deploy the MBO’s to the Unwired Server
Diving a bit deeper the MBO is…
  • A metadata definition representing a “slice” of enterprise data and operations
  • A design-time element that manifests as a concrete runtime object
  • The building block for synchronization and transaction of multiple elements of an application
  • Personalization keys (device context) helps narrow data sets *see below
  • MBOs are the basis for concrete Objective-C, C# and Java device-side object interfaces
Mobile Business Objects
Development Paradigm
Attributes (synchronized data)
  • Define the scope of the device-side data store
  • Attributes and parameters in an MBO definition form the shape of the server-side cache
  • Server cache and device is populated by reading data from the enterprise, e.g., through an MBO definition operation like a SQL select statement
Operations (enterprise playback)
  • Backend tasks to be carried out within the enterprise or through an external service, typically with respect to the MBO attributes
Parameters
  • Can be passed to one or more operations
  • Linked to upstream parameters or attributes
  • Defined by personalization keys for a user or group *see below
Relationships
  • Form the basis of transactions by identifying the dependencies and state requirements of device-side entities
    Relationships are formed by mapping attributes and parameters similar to a primary-foreign keys
Design Deploy Test
How does SUP perform its functions?
  1. Design or Modify in the Designer Mode through the GUI interface to define/Edit “Mobile Business Objects”
    Use tooling set preferred (Eclipse or Visual Studio)‏
  2. In designer mode, the SUP tool generates the SQL and code operations for the devices and server side apps and any addition API, filtering and so forth occurs in this phase. Then package and deploy.
  3. In operation or runtime mode, SUP Runtime engine then performs the synchronization/loads and relationship management as specified by the MBO runtime parameters
Sybase Unwired Platform offers flexibility when creating mobile applications – catering to the needs/requirements of both novice and advanced mobile developers.
For iSurvey I used the Bottom-Up approach and the wizards in the Unwired Tooling to create a 1:1 representation of the tables that I wanted to synchronize onto Mobile Client.
iSurevey MBOs

Personalization keys helps narrow data sets… For iSurvey each user will be placing data (contacts and survey results) into their own remote database via the app and will not want to see the data from other users, likewise specific surveys may wish to be pushed out from the consolidated database to individual users. For this we use Personalization keys on the defined MBOs, for example Survey_contact
Personalization Key Definition
Personalization Key Usage
Looking to the next step… Developers have two choices when creating native applications in Sybase Unwired Platform…
  1. Create MBOs that connect to back-end data sources then use Sybase Unwired Platform to generate code warapper for the targeted device and code further using the native device SDK
  2. Create MBOs that connect to back-end data sources, use Sybase Unwired Platform to generate the default device GUI and then further customize the GUI for a device-specific user experience using the native device SDK.

Comments

Popular posts from this blog

How to draw an overlay on a SurfaceView used by Camera on Android?

Create EditText with dropdown in android

Android TCP Connection Chat application