Catégorie : gwt

  • Hijacking GWT-RPC serialization

    GWT, the Google Web Toolkit for client-side web programming, contains several client/server communication frameworks. The « traditional » one is called GWT-RPC. GWT-RPC encapsulates the serialization/deserialization of objects, and all the protocol plumbing. This is usually fine for most use cases, but I needed to explicitely serialize objects on the client side, and deserialize them on the…

  • GWT et encoding UTF-8

    Le framework ajax GWT est conçu pour fonctionner avec des données UTF-8. Cela peut avoir quelques conséquences pour les applications internationales au niveau des caractères spéciaux (accents français par exemple…). Ayant butté longuement sur un problème de cette nature, je vous en livre la solution ici. Mon application GWT réalise des appels RPC sur un…