vote up 0 vote down star

I'm building a little personal project; I wish to have a Windows Service that will act as a simple HTTP server accepting requests via HTTP, run queries against an Interbase 6/7 server and then return results in JSON format.

Could anyone recommend some tutorials, free components or just a quick plan of how they would develop the various parts: - Standalone Webserver - Running an Interbase Query - Converting Rows into JSON format

I've tried searching but as a novice programmer I'm getting lost into whats best/recent and whats no longer recommended. I'm interesting in building this project with Delphi 2009 as it would interface with Interbase without needing a ODBC or other driver installed. I also do not wish to have a separate HTTP server (e.g. IIS or Apache).

Any help would be appreciated.

flag

4 Answers

vote up 1 vote down

DataSnap (Midas) got some much needed attention in Delphi 2009 and apparently now uses JSON to communicate between the client and server. Your DataSnap server app can accept requests from clients without needing a web server and can communicate with Interbase (or any database) without the clients needing to know anything about the back end.

Here is a getting started article by Pawel Glowacki to get the ball rolling.

I'm sure you aren't doing it (since IB6 is open source), but this could be considered an underhanded way to use a single named database user for a distributed application. Even if someone pulls it off on a technical level, it's still a license violation.

link|flag
Unfortunately the new JSON part in Delphi is "baked" into the DataSnap core, it can not be used for simple data <-> JSON conversions. – mjustin Aug 16 at 19:05
No, but you can have a DataSnap server publish data and server side methods to be used by any JSON aware client, not just ataSnap clients. – Bruce McGee Aug 16 at 19:35
vote up 0 vote down

You can use the HttpServer example given with Indy or ICS or Snapse (for D2009 get the latest source from trunk and the examples from the previous stable version). Then use Delphi DB components to access the Interbase server and use one of the Json libraries from Torry - http://www.torry.net/pages.php?id=216

Make sure you create a regular application and test the code. After it works convert it to a service using the Delphi service project template.

link|flag
vote up 3 vote down

Habari does JSON for Delphi. It is commercial, but does the job well.

--jeroen

link|flag
1  
Better: JSON - SuperObject progdigy.com/?page_id=6 – inzKulozik Aug 16 at 14:55
2  
Habari uses SuperObject. SuperObject only does the conversion between JSON and objects. Habari adds the communication. – Jeroen Pluimers Aug 17 at 8:08
vote up 2 vote down

You can use UIB for accessing Interbase and JSON superobject. All this is made by the same developper and this is OpenSource. He will publish a new project about what you need soon.

Stay tuned

link|flag

Your Answer

Get an OpenID
or

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