After reading this article about SOAP versus REST I started to wonder what option Delphi developers have on choosing a good REST library to import REST-service functionality inside Delphi/WIN32 applications. And what options there are to create REST services in Delphi. So I have a few related questions:

  1. Is there any open-source REST library for creating Delphi clients?
  2. Is there any open-source REST library for creating Delphi Services?
  3. If no on both, what commercial options are there?

Since SOAP is apparently declining in usage, I can imagine the need for Delphi developers to switch to REST-based services. Especially those Delphi developers who still write native WIN32 applications.

Marco Cantu has set up several sample REST clients at his site which are practical. But it's not enough for me. :-)

link|improve this question

feedback

9 Answers

up vote 6 down vote accepted

We've developped an Open Source Client AND Server RESTfull framework, using JSON for the data exchange.

You've got a whole ORM framework, with remote or local direct access, accessible through HTTP/1.1, named pipes or Windows GDI messages.

The remote database is accessed via an automated RESTful mechanism, and you can easily implement additional Server-side REST-compatible services, if the direct database REST URI are not sufficient for your purpose.

It compiles from Delphi 6 up to Delphi XE2. It's fully Unicode compliant on all these platforms (it uses UTF-8 encoding internaly).

The Synopse SQLite3 database Framework was designed in accordance with Fielding's REST architectural style without using HTTP and without interacting with the World Wide Web. Such Systems which follow REST principles are often referred to as "RESTful". Optionaly, the Framework is able to serve standard HTTP/1.1 pages over the Internet (by using the SQLite3Http unit and the TSQLite3HttpServer and TSQLite3HttpClient classes), in an embedded low resource and fast HTTP server.

The standard RESTful methods are implemented:

  • GET to list the members of the collection;
  • PUT to update a member of the collection;
  • POST to create a new entry in the collection;
  • DELETE to delete a member of the collection.

The following methods were added to the standard REST definition, for locking individual records and for handling database transactions (which speed up database process):

  • LOCK to lock a member of the collection;
  • UNLOCK to unlock a member of the collection;
  • BEGIN to initiate a transaction;
  • END to commit a transaction;
  • ABORT to rollback a transaction.

About our REST implementation, see http://synopse.info/forum/viewtopic.php?pid=16#p16

Edit/Update:

The framework is now named mORMot, and is able to connect to any database (using SQLite3 as its core component, not limited to it. The HTTP/1.1 server now relies on the fast http.sys kernel-mode server. And you can define services as plain Delphi interface, with tuned security and very good performance.

link|improve this answer
So much for that stateless constraint eh! – Darrel Miller Oct 19 '10 at 17:23
1  
I was not a strong believer of stateless architecture at first, but with our framework, I found out that it could be a great idea in most projects. When you've coded the client and server part, it's very easy to use in your applications. Even the UI refreshing can be done asynchronously, with corresponding requests from the VCL side. Nice solution in practice. – A. Bouchez Oct 20 '10 at 10:20
Is there a reason for supporting json only as content-type ? – redben Apr 19 '11 at 11:29
@redben It has been fixed in the trunk. BLOB content is sent with the expected content-type. Only JSON content (as retrieved from DB and serialized into JSON) will have this content-type. – Arnaud Bouchez May 4 '11 at 15:29
Update: you can now access Services by using Delphi interface to define the corresponding contract, in a RESTful light communication. JSON serialization is used, so it is AJAX ready. See blog.synopse.info/tag/SOA – Arnaud Bouchez Apr 20 at 12:23
feedback

Delphi, to my knowledge, was one of the first applications to use REST as its primary means of providing web functionality (back in 1997 I believe). The web broker component, although its been around for a while, is designed to support Rest-ful services and works very well. Add security and templates and compile into an ISAPI plugin module, and you have everything you need to support REST. The only issue I see with the web broker is the issue with Delphi as a whole - lack of 64 bit support. However, it runs just fine under 64 bit - just doesn't leverage it.

Our company has over 250 clients whose websites are running based upon Rest-based web services built with Delphi. It's an elegant solution - if a developer wants an XML packet as result, he just adds RT=XML, if she wants JSON, its RT=JSON, a nice HTML chunck to put into a CMS, RT=HTML (or leave it alone as it is the default). Changing the whole look and feel of the result sets requires changing a single CSS file.

link|improve this answer
To answer the JSON question below - we use extJS pretty extensively for developing internal user applications - what's neat is that they call the exact same REST web services as the public website, but just use different result sets (and added security). You do an ajax call to get the JSON result set from the web service (e.g.,CustomerOrderHistory?RT=JSON) and then bind the JSON result to a grid. – Charlie V Oct 18 '10 at 15:01
Back in 1997? So Delphi has shipped REST already three years before it was introduced and defined by Roy Fielding (in 2000) :) – mjn Oct 18 '10 at 16:20
3  
@mjustin REST was based on studying the architectural principles underlying the world wide web. Principles that were already in use well before Roy Fielding wrote his dissertation. He just identified them and gave them a name. – Kenneth Cochran Oct 18 '10 at 17:20
I am very familiar with Roy Fieldings work - and yes, what he coined as REST already existed before he published it. Delphi 3, which was introduced in 1997, included the web broker and was accessed through GET, POST, PUT and DELETE - the foundation of REST. – Charlie V Oct 19 '10 at 18:17
1  
A guy a work invented AJAX without realizing it. – Ian Boyd Jul 17 '11 at 20:03
feedback

I suggest this open source project "Delphi on Rails": http://www.delphionrails.com

DOR is a web server based on REST, MVC, JSON, XML. It make intensive usage of new RTTI in Delphi 2010 and XE.

It use only open source projects usable in a commercial application:

  • Database: Firebird
  • Script: LUA
  • Graphic: CAIRO (png, svg, pdf ...)
link|improve this answer
feedback

That's kinda the beauty of REST though isn't it, that you don't need to go through that SOAP rigmarole of importing the spec from some website and having it not work a million times and not being able to debug it.

I'd say, just use Indy and parse the post data yourself.

If you ever make anything with REST and Delphi, please comment on this though, I'd love to see how you do it.

Also, you might want to check out Marco's 2010 handbook the last chapter probably covers REST in more depth than he does with the code examples on his site.

link|improve this answer
Yes, I know you can use REST without a proper framework. That's my current solution! :-) But it's not a RAD solution, and it makes the code a bit difficult for other, inexperienced developers in my team. – Wim ten Brink Oct 19 '10 at 12:30
feedback

Datasnap technology that shipped with Delphi support creating REST service since Delphi 2010 or maybe Delphi 2009.

link|improve this answer
feedback

The REST Wikipedia article lists Ext JS as one of the available REST framework implementations. There is an open source server side framework for Delphi based on Ext JS, called ExtPascal. However I do not know how far this Delphi framework integrates with the REST part of Ext JS.

link|improve this answer
feedback

Although you write that SOAP is "apparently declining in usage", it is still used by a lot of my customers, and not just for legacy applications. So apart from using DataSnap in Delphi Enterprise, you can just stick with SOAP in Delphi Professional if you want...

link|improve this answer
feedback

I am also looking at JSON/Rest to do my new desktop application. I want to write Server and Client using Rest and use it with InstantObjects. Could anyone tell me if it would be possible to achieve this?

link|improve this answer
feedback

The Habari Web Components framework is a simple (commercial) HTTP server framework for Delphi 2009 and newer. With the TdjRestfulComponent it also includes a REST extension. (I am the developer of these libraries)

TdjRestfulComponent configuration can be done in an attribute/annotation-like style or in a more traditional procedural style way.

All HTTP methods and content-types can be mapped to different anonymous methods, and still share the same resource URI (one URI, different resource representations - depending on the requested content type). See also this answer for code examples.

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.