2

I am wondering how I can go about using the Zimbra API. I have looked everywhere for an API, and I have found no good references/tutorials about it.

I have a web application that I have developed in Ruby on Rails that I would like to communicate to Zimbra in order to fetch the calendar items to put in my own Calendar interface from within my application.

Can I do this ? and where can I start ?

Andrew Cetinic
  • 2,805
  • 29
  • 44

3 Answers3

4

Zimbra provide the soap api to get the calender and you can sent that calender data to you application using the XmlRpc Request.

2

here are some doc :

SOAP API

SOAP Admin API

you can also download zimbra and look at ZimbraServer/docs/soap.txt

Sadegh
  • 6,654
  • 4
  • 34
  • 44
  • note that the copy on sourceforge seems to be rather out of date ... a current version is to be found in you zimbra installation unter /opt/zimbra/docs – Tobi Oetiker Aug 15 '10 at 05:39
0

There is a java version here which also has a WSDL file for Zimbra's admin api. You may be able to use this to generate a client for ROR.

Jeshurun
  • 22,940
  • 6
  • 79
  • 92