Keep your WSDL files updated

Posted by & filed under java.

A quick remark for the future that is worth to remember. I suppose there is one of good coding principles to keep your imported WSDL files up-to-date. I was writing distributed ticket handling system. I needed some stateful service for this. I’ve implemented this storage with database behind and ejb-webservice as endpoint. While I was… Read more »

Java Code Geeks

Posted by & filed under java.

Here is an interesting place to start with ie Android Java and Android tutorials

Radius protocol

Posted by & filed under java.

Radius protocol is some sort of radio channel to authorize. We are going right now to implement authorization system with using token sms and bind to ldap active directory. :) We found tinyradius library online.

Cobertura Support for Maven Projects in NetBeans IDE

Posted by & filed under java.

Test Driven Developement and there is already fine support for your favorite IDE. Netbeans IDE. (Probably there was a light year earlier for Eclipse) You can preview this netbeans plugin here Cobertura Support for Maven Projects in NetBeans IDE

myBatis mapping example from docs within oracle procedure

Posted by & filed under java.

1. I just want to show how to setup complete batis project. I’ll be using example from docs. As you can read there you need at least 4 files at least: Configuration.xml BlogMapper.xml BlogBean.java (session bean) Blog.java (domain class) So then you have ready and working object-relational mapping you can easily publish as web service… Read more »