Does anyone have an example to share explaining how to access a Notes Database with an Android OS Phone?
Subject: JSON
JSON, AJAX, HMTL5 seems to work fine.
Subject: You use AJAX to access the data
For PIM use Traveler for your own data use an agent to return JSON (or XML) formatted data or use the view url to return JSON (JSON is faster and easier to parse then XML).
You will have to code you android app using the android sdk or you can use phonegap (uses javascript) to build an app. I’, working on an app to access the notes.ini db at www.kalechi.com/notesini and will be posting how it’s done in feb.
Bruce
Subject: Actually it’s a little tricky
There is no AJAX support in Android platform (the XMLHttpRequest object it’s not implemented since 2.0 and even then it does not work).
The Notes/Domino API isn’t compatible with the android platform (see http://www-10.lotus.com/ldd/nd85forum.nsf/5f27803bba85d8e285256bf10054620d/41ac69ba9d84d622852576160042f74d?OpenDocument&Highlight=0,android)
For Lotus Quickr, you can try to use REST services (see http://www-10.lotus.com/ldd/lqwiki.nsf/dx/AccessingLotusQuickrFromGoogleAndroid)
For traditional Domino app, you could relay on DXL processing and java coding with no framework coming to rescue you. You will have to create a java code that uses HTTP, Connection , XML Parser, etc. to make the request and process the XML result. (see IBM Developer)