Ajka & Andrej

live love laugh

Archive for the ‘Technical’ Category

Tuesday
Jun 7,2011

I am working on one project that uses the BIRT report integration in the JBoss server. There was old BIRT integration as a service in the server link. … read more

Bandicoot-lib

Monday
May 30,2011

I created a simple java open source library to interact with the Bandicoot server. You can easily map java object to the relation using the annotation. To interact with the Bandicoot server (i.e. to read and write data) you need to set up a relation manager. This manager is responsible for mapping your java object to the relation and for communication with the Bandicoot server. … read more

Sunday
May 22,2011

I would like to describe a JAAS login configuration for a rich client. In this case, I am using the JBoss6 and the MySQL database to store user, password and role information. … read more

Saturday
May 14,2011

I spent some time configuring the JEE client for the JBoss 6 server. For maven there is a default JBoss 6 client dependency … read more

Thursday
Apr 28,2011

A new version of Joomla came out at the beginning of this year and we decided that with this change we will do something like a spring cleaning of our site and data on the server in general. … read more

Friday
Feb 13,2009

Last week I spent one day writting my new tests. They were simple DBunit tests executed by the TestNG and deployed on the JBoss embedded server. Everything worked fine in the old ant script. Then I started to launch it that in the maven. But with the maven and the new version of JBoss embedded server I got not very nice exception. Actually, the problem wasnt in the JBoss embedded server. I had many libraries in the scope provided that werent necessary for the project and the server libraries didnt like some of these dependencies.  Furthermore jars with scope provided are in the classpath of test so I got the exception.

What I didnt know about maven; Depencies of maven project with the scope provided are in the classpath of test. Check the dependencies of project, beacuse sometimes less is more ;) .

Monday
Feb 9,2009

Last week I created maven and mercurial repositories for our open source projects. The link to the maven repository is http://www.ajka-andrej.com/maven-oss and to the mercurial repository http://www.ajka-andrej.com/hg-oss. There are our open source projects in these repositories.

 

This is my example for the maven projects:

{code}

<repository>
<id>ajkaandrej-oss</id>
<name>Ajka-Andrej server open source repository</name>
<url>http://www.ajka-andrej.com/maven-oss/repository</url>
<layout>default</layout>
</repository>

{/code}

Monday
Aug 11,2008

Last week I was in the RedHat trainning centre in Munich. It is very nice place with some red hats :) . … read more