Showing posts with label libraries. Show all posts
Showing posts with label libraries. Show all posts

Wednesday, November 19, 2008

Google Protocol buffers

We used to use xml or even json formats to exchange data through the network. It is standard, self-describing, well known by many people, and may even be defined by non-technical people.
When we need performances or even more security, we have to to find more efficient ways to exchange data. We could for instance use the object serialization of GWT for achieving this goal.
You also could use the Protocol buffer library developped by Google for C++, Java, C# or python.
This library is already used massively by Google itself.
The goal is to translate textual data into binary ones, and to simplify the way data are stored for accelerating compression/uncompression (Mashalling/unmarshalling).
I enjoin you to have a look on this library.

Friday, November 7, 2008

Gldapo, the Groovy LDAP builder

For the ones who want to access LDAP servers in a simpler manner than with JNDI, you can use such libraries like Spring ldap which enables the developper to access the server like a databse with jdbc.
But if you want more, you also can try to use Gldapo, the Groovy builder created to access the LDAP server as POJO.
Enjoy!