Sync Joomla Scheduler and mobile client

Hello. I am building an iPhone app that includes a calendar that should draw calendar data from a website.

I have already setup my Joomla with Sheduler extension and have succesfully implement the calendar in me iphone app. However I cannot find how I can sync data between the two. I only want the client to be able to display events that are stored on the server. I do not want to be able to add or edit events from the mobile client.

Could I somehow export a json feed?

Hi,
all events are stored in events_rec table.
You may use xml-feed:
yourwebsite.com/index.php?option … shift=-120

If you want to get exactly json-feed then it requires some customization:
-adding new task in controller (components/com_scheduler/controller.php)
-adding method in scheduler configurator which will take events in json-format (components/com_scheduler/codebase/dhtmlxSchedulerConfigurator.php similar to getEventsRec method).