I’ve started a project called LDAP Persistence API for Java, or LPA for short. It is a Java framework for interacting with LDAP entries using pure Java objects. It is based on Java annotations. It is no were near to being complete, but the query…
In this article we talk about reflection with arrays in Java. Java array reflection is not difficult, but it can be trying to figure it out without a good example. Ultimately, what I needed was a way of injecting information into an array field. Of…
To anyone looking for this page. I noticed that some people had searched for my tcpdfilter program as recent as 2007. I had assumed that fresh meat would keep it around forever, so I just left it there, and forgot about it. Seeing it is…
Well, I’ve had a lot of trouble switching my system from LVM, to RAID1+LVM on ubuntu 10.04. I got another drive for my system, created a mirror with one drive (temporarily of course) asked lvm to move my entire system over to that physical device,…
If you use bash under unix, Linux, or Mac OS X, and you’re continually forgetting how to convert filenames with spaces to filenames without spaces, then look no further.
I went through some issues with EJB3 and ZK. I was using openejb at the time, integrated with tomcat 6. I found that my methods that had role restrictions (using @RolesAllowed) were not accessible. Whenever I clicked a button, an event would be fired, but…
I thought it may be nice for those googlers that want to know about JAXB, to have a quick working example to use. So, that is the purpose of this post.
Seeing that my research project is a mini accounting system, I thought it necessary to be able to display items in a status bar, like a real application. It is very slightly unfortunate that ZK doesn’t have something integrated right in for this purpose. But,…
Once I had some basic functionality in my mini accounting system that I’m writing (for research purposes), one of my goals was to have an adequate error display for the user, that was the same every time. Suffice it to say, I was completely thrilled…
I am in the process of working with and researching ZK as an AJAX framework to integrate into Java Web Development that I do. So far, AJAX looks really amazing, and is fully integrated into the J2EE framework. It is an event driven framework that…