wiki:LEGACY - CaTissueClientAPI

Version 3 (modified by jeff.lusted, 14 years ago) ( diff )

--

caTissue Client API

The client API is a way of extending the caTissue application. Jeff suspects the aim is to achieve more functionality within caTissue with less effort from the official development team.

The client API allows you to use caTissue's domain objects (like Participant or Specimen) within another application (the client). All of the domain objects are serializable Java classes. The modus operandi is for the client to create or retrieve one of these and pass back the object to caTissue. The object gets serialized over the network for this to work.

Here is some pseudo code what a client must do to register a new participant, with comments:

  1. Locate caTissue application service.
  2. Start a session within caTissue. This is just like any other interaction. There is the possibility of time out with inactivity.
  3. Use application service to retrieve local copy of CollectionProtocol.
  4. Create local copy of Participant and initialize according to the CollectionProtocol requirements. This is quite an involved process requiring knowledge of the caTissue business model.
  5. Use application service to pass Participant to caTissue. After this action, the Participant exists in the database.

Attachments (1)

Download all attachments as: .zip

Note: See TracWiki for help on using the wiki.