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?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.