22 October 2008 ~ 2 Comments

Implementing Trap Receiver in 30 minutes using Apache MINA

Will continues to post articles about MINA, to be updated,  Subscribe in a reader Yes, we are going to implement a SNMP trap receiver in less than 30 minutes. If you have been following my post on Apache MINA, this would be a natural extension to it. In this article, we shall bring together all [...]

Continue Reading

21 October 2008 ~ 1 Comment

Implementing UDP Server using Apache MINA

In my last post we created a UDP client using Apache MINA. Lets turn the table and implement the Server side. Let’s see how using Apache MINA reduces the effort to create a UDP Server. Steps to create a UDP Server using java.net API’s Create a Socket and listen for incoming connection Process each packet [...]

Continue Reading

Tags: , ,

13 October 2008 ~ 6 Comments

Updating Google Calendar with MS Project Tasks

I am back, as promised. Please read my earlier post Processing Microsoft Project File in Java using MPXJ. In this post we shall take an mpp and update the Google Calendar with the task details. The question is why would anyone do that?  Lets cook the story. A small team is working and the poor Project [...]

Continue Reading

13 October 2008 ~ 19 Comments

Processing Microsoft Project File in Java using MPXJ

Many a time, I wished I had a utility that would read my projects mpp File and automatically alerted me about my tasks. Had created such a utilitly and this post desribes the process of reading MS Project Files in Java using MPXJ and Apache POI library. MPXJ – MPXJ is the java library used [...]

Continue Reading

Tags: , ,

12 October 2008 ~ 5 Comments

(N)IO Frameworks in Java

In this post, I have tried to briefly capture list of available Java IO application frameworks. IO Frameworks reduces the development time by providing additional features over the bare-bone IO API’s provided with Java. Here is the definition I have used for the Framework “An (N)IO Framework is a library, that provides easy to use [...]

Continue Reading