Try/Catch/Finally in Java

In Programming by timfanelliLeave a Comment

So I ran across an article not too long ago, can’t remember where, it was one of those things that just gets passed around, about the importance of try/catch/finally… and …

JDBC Metadata and Column Types

In Java by timfanelliLeave a Comment

Today I’ve been testing my data caching module… it’s pretty straight foward, the relevant part for today’s ramblings is that it takes an SQL query, executes that query on some …

JBoss User Timeout

In JavaEE by timfanelliLeave a Comment

When most people think of the session timeout in an EJB application, they’re typically thinking about the HttpSession timeout of their web front ends. If, however, you need to set …

Custom JAAS Login Modules

In Java, JavaEE by timfanelliLeave a Comment

This tutorial will show you in detail the steps required to implement a custom JAAS login module for a Java application. When a client application needs to authenticate the user, …