I want to Read RMS Data created by one midlet from second midlet

Target devise are S60 is it possible??

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

It is possible. Open a record store associated with the named MIDlet suite. The MIDlet suite is identified by MIDlet vendor and MIDlet name. Access is granted only if the authorization mode of the RecordStore allows access by the current MIDlet suite.

Access is limited by the authorization mode set when the record store was created:

  • AUTHMODE_PRIVATE - Succeeds only if vendorName and suiteName identify the current MIDlet suite; this case behaves identically to openRecordStore(recordStoreName, createIfNecessary).

  • AUTHMODE_ANY - Always succeeds. Note that this makes your recordStore accessible by any other MIDlet on the device. This could have privacy and security issues depending on the data being shared. Please use carefully. Untrusted MIDlet suites are allowed to share data but this is not recommended. The authenticity of the origin of untrusted MIDlet suites cannot be verified so shared data may be used unscrupulously.

See this links for your reference.

  1. Sharing Data Between MIDlet Suites
  2. Advanced Programming
link|improve this answer
thanks for your help can you give me some example?? – Mihir Feb 23 '11 at 12:59
see my updates. – bharath Feb 23 '11 at 13:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.