views:

369

answers:

1

I'm interested in connecting to the Evernote Service API, which uses Thrift, from a Delphi Win32 app I am developing. I have done very little work with web services in Delphi, and nothing at all with Thrift. Where would be the best place to get up to speed w/using Thrift from Delphi?

+2  A: 

Thrift has generators for C++, C#, Erlang, Haskell, Java, Objective C/Cocoa, OCaml, Perl, PHP, Python, Ruby, and Squeakr

But it does not currently support Delphi.

The generators for Thrift can be found in SVN Here so you can see what would involved in writing a generator for Delphi.

Another option if you have Rad Studio, would be to generate for C++ then write a wrapper around the desired functionality in C and import it back into Delphi as a .lib file.

Robert Love