Sunday, October 3, 2010
Monday, September 20, 2010
New Image project http://www.freeimgsrc.com/
Our new project. An image repository and image search tool.
You will find images, logos, wallpapers, facebook groups on any subject.
www.CInformatique.com
Labels: free, Images, Wallpaper, Wallpapers
Wednesday, June 9, 2010
Google App Engine - Erreur lors d'un déploiement et plus possible de déployer
Après avoir annulé un déploiement sur Google App engine qui ne semblait plus terminer dans Eclipse, j'ai eu l'erreur suivante:
Unable to update app: Error posting to URL: https://appengine.google.com/api/appversion/create?app_id=xxxxxxxxxxxxxxxxxxxxxxx
409 Conflict
Another transaction by user xxxxxxx is already in progress for this app and major version. That user can undo the transaction with appcfg.py's "rollback" command
Comme je suis dans un environnement Java, je n'ai pas accès à exécuter le script Python.
Voici donc ce que j'ai trouvé comme procédure:
Follow the Procedure:
> open the my computer-->Right Click-->Properties-->Click on Advanced Tab-->
Environment Variables-->select PATH-->Click Edit-->If there was any path before,after
that path add semicolon(;)then
C:\eclipse\plugins\com.google.appengine.eclipse.sdkbundle_1.2.1.v200905131156\appengi
ne-java-sdk-1.2.1\bin
>open command Prompt take the path to C:\Documents and
Settings\Administrator\workspace\Test
Here Test is my project Name.
>Now type: appcfg rollback war
press enter.It will clean all temporary files.
>Then you can upload files as usual from Eclipse.
www.CInformatique.com
Sunday, May 30, 2010
A new project to experiment referencing
We created a new site to honour nice girls on Facebook.
Our goal is to experiment how indexing and referencing works.
www.CInformatique.com
Sunday, May 23, 2010
How-to install mysql5 on centos 5.x
How to install mysql 5 on centos 5
yum install php-mysql mysql mysql-server
/sbin/chkconfig --levels 235 mysqld on
/etc/init.d/mysqld start
www.CInformatique.com
Monday, April 5, 2010
Thursday, January 7, 2010
Metallica on muzic-world.com
Slowly, we will finish Muzic-World.com.
By now, here's a sneakpeek of our first band: Metallica.
http://www.muzic-world.com/Metallica/
www.CInformatique.com
Labels: Music
Wednesday, January 6, 2010
New project http://www.muzic-world.com
We are now working on a new project: http://www.muzic-world.com
www.CInformatique.com
Labels: Music
Thursday, August 23, 2007
Add Wicket-JMX support to your applications.
The JMX support is supposed to be built-in in the 2.0 version of Wicket.
For prior versions, you can add the project wicket-jmx to your pom.xml.
Only add a dependency:
<dependency>
<groupid>wicket</groupid>
<artifactid>wicket-jmx</artifactid>
<version>1.2.6</version>
</dependency>
It will give you access to control live all these settings:
Please note that we're using MC4J to connect to our App server.
www.CInformatique.com
How-to configure your J2EE JMX Monitor using JDK5
It's easy to use the new built-in JMX (JSR-160) features in JDK 5.
- Start your Application server using these parameters:
- -Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=8999
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.management.jmxremote.authenticate=false - Download MC4J : http://mc4j.org/
- Start MC4J and create a new server connexion: service:jmx:rmi:///jndi/rmi://localhost:8999/jmxrmi
Et Voilà.... you can monitor the performance of your JVM and even add your own MBeans.
www.CInformatique.com
Labels: JMX