I tend to use XML-RPC to implement simple requirements for connecting applications. The reason is that it is a simple, straighforward remote-procedure protocol that has good-enough performance for most of such applications. Also, it is very wide-spread so you can find a stable implementation for whatever platform you need it (for example you can use… Continue reading Apache XML-RPC Adapter for Spring
Category: onJava
Proper handling of database-related exceptions
This is the issue that I keep running into on various projects, so even if it seems obvious I think it is worth spending a post on it. Some OR mapping frameworks tend to use batch update operations when dealing with the database. The “problem” that this approach introduces is that if any problem occurs… Continue reading Proper handling of database-related exceptions