Thank You Gavin. Will try for alternatives as you suggested.
I have Web application and iPad App , which renders the same content from a site created using Alfresco Share. For content editors I have created a Node Template with aspects like Classifiable, Effectivity, Summarizable. Editors use that template for creating contents. I may not be able to add a new aspect (Exif) to it.
In the UI , I need to show an article with the image associated with the article. The page layout is designed like that. Layout Almost similar to the iOS application and Web application.
For the web application, I take image like , <#assign image=article.relatedAssets['ws : primaryImage'][0]>
Now in the iOS SDK , since it is not supported to get the ws : primaryImage for an article, I’m thinking to expose my own REST service (since I have a web application hosted in an appserver, i could create a service within that web app) which returns the primaryImage propertiey associated with the article.
But there will an overhead of extra service call from the iPad App.
Do you think that will be good approach ?
Thank You