Blog
All Blog Posts | Next Post | Previous Post
TMS XData is coming
Monday, August 26, 2013
A new framework named TMS XData is cooking in the TMS labs. It's hard to define what a framework is with a few words, especially if such framework is modular and many pieces of it can be used separately. Nevertheless, using a very broad definition I could say that TMS XData is a framework that allows you to provide and consume application data through Rest services. But maybe instead trying to define it, I should give you a small sample.XData can be strongly integrated with TMS Aurelius, our ORM framework. I have posted some articles here about Aurelius and some very simple samples, so in case you still don't know about it, you can check how to getting started or, related to this article, how to create simple associations with it.
Now let's build a very simple XData server that serves Aurelius objects:
program SimpleXDataServer; {$APPTYPE CONSOLE} uses Aurelius.Drivers.Interfaces, Aurelius.Engine.ObjectManager, XData.Http.Server, XData.Aurelius.EntityServer, Utils, Customer; procedure CreateCustomer(const CustomerName, CountryName: string); var Manager: TObjectManager; Customer: TCustomer; Country: TCountry; begin Manager := TObjectManager.Create(SQLiteConnection); Country := TCountry.Create; Country.Name := CountryName; Customer := TCustomer.Create; Customer.Name := CustomerName; Customer.Country := Country; Manager.Save(Customer); Manager.Free; end; var Conn: IDBConnection; Server: THttpServer; begin ReportMemoryLeaksOnShutdown := true; Conn := SQLiteConnection; BuildDatabase(Conn); CreateCustomer('Paul', 'United States'); CreateCustomer('Jonas', 'Germany'); CreateCustomer('Hiroto', 'Japan'); CreateCustomer('Jian', 'China'); CreateCustomer('Sergei', 'Russia'); Server := THttpServer.Create; Server.RegisterHandler( TAureliusEntityServer.Create( 'http://aurelius:2001/tms/xdata', SQLiteConnection)); Server.Start; WriteLn('Running Simple XData Server'); ReadLn; Server.Free; DestroyDatabase(Conn); end.
The above application is a regular TMS Aurelius application, that connects to a database, creates needed tables and insert some data. The different part is the one that creates a THttpServer instance and register a request handler under the address "/tms/xdata". What happens here is that Aurelius objects are now being provided through a very well defined Rest API.
XData is inspired by the OData protocol. Even though it's not compatible with it, it uses similar concepts, and of course is REST/JSON based which makes it very compatible with other clients and platforms. It also makes everything automatic for XData: your TCustomer objects, for example, are available at the address "http://aurelius:2001/tms/xdata/TCustomer" (Naming can be configured as well).
Another interesting thing is how this data is easily accessible from everywhere. As an example, here is the full source code of a .NET C# console application that connects to such server and retrieves the customer objects from it, using Linq: <snip> And here is the output generated by this C# application.
More info coming soon!
Update: upon its release, we decided to build TMS XData with its own JSON format - OData was heavily XML-based at that time. So TMS XData is no longer (has never been, since it's official 1.0 version) OData compatible.
Wagner Landgraf

This blog post has received 14 comments.


Bruno Fierens

Tang Haizhou


Wagner Landgraf

Can you tell a bit more about the supported REST methods and how they are supported?
Birger Jansen


Wagner Landgraf

Carre Stephane

Day Kevin

If possible, can I also test a beta version? I am working on a pet project that could benefit from this. I would be happy to provide you with my feedback!
van der Sluis Joost


Wagner Landgraf

ZippoSLO


Wagner Landgraf

Hugo


Wagner Landgraf
All Blog Posts | Next Post | Previous Post
very great info.
When will available the product be tested (also in beta)?
I''m testing Aurelius and I am really impressed by the power of the framework!
Best Regards
Claudio
Piffer Claudio