Categories

G2Android 1.5.0 is available : major release !

Finally ! During a long period of calm, I finally released a new version (with new features) of the Android client for remote galleries Gallery2 (your photos on your website), G2Android. If you have a look at the G2Android project homepage, you will see that the following issues (bug and enhancements) have been closed : [...]

Debugging any Java Application

As long as you’re using a java application (ie an application calling your JVM), you can enable the debug mode with these parameters :

-Xdebug -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y

So for example, if you want to debug an ant launch (launched via « ant -f myBuild.xml » for example), you simply have to set ANT_OPTS; on windows :

set ANT_OPTS=-Xdebug [...]

Analyse de trames HTTP : les outils

Régulièrement, je me trouve face au dilemme suivant :  « Mais qu’est ce que mon application a bien pu envoyer au serveur ? » Il existe des outils pour répondre à cette question , et voici ma sélection :

Wireshark (anciennement ethereal) / Linux Cet outil, c’est le couteau suisse de l’analyse réseau; et pas simplement HTTP [...]