Tuesday, December 11, 2007

Google's excellent new service..!!!

Guys who want to type in their regional fonts (for example, in an indian language) can rely upon google's "Transliteration service", a wonderful effort from google.

Just type in english and press "space bar" to watch the typed text getting automatically "trans scripted" to your language of choice.

Just a small example here in the indian language "tamil".

To say "Wishes" in tamil, i just type "vaazhthukkal" and press space.
Google trans scripts it into "வாழ்த்துக்கள்" (this might not be displayed properly in firefox, view this page in IE to see it better)

Thrilled...?
Check the link below to explore further:

Google Transliteration

சும்மா அதிருத்திலே

Monday, December 10, 2007

Vote for developer.com's Product of the Year 2008

Don't miss this great opportunity.
Cast your vote for your favorite tool/technology.

Yes, NetBeans, Eclipse, Glassfish etc.. are in the list

Click the link here to go to the poll booth.

Product of the year 2008


Hurry! The voting ends on December 21, 2007.

Monday, December 3, 2007

Implementing session timeout in swing apps

If you are working in a web based project, the term "session" must be a frequently used one. "I want to implement a HttpSessionListener", "How do I access http session?", "Should i store my user state in http session or in a session bean?".

But I just wondered, how to implement that in a swing application? (Sorry, i haven't learn swing application framework yet)

Consider this typical scenario:
A user has logged into the swing application and has opened some 2 or three windows (JFrames). Now the user goes somewhere leaving the system idle.
How can we logout the user automatically here (for security reasons)?
How to close the opened resources?

I initially thought of writing a global event listener and implementing that in all the user interface classes. But that looked like a bad idea for me, because that would involve a lot of code changes.

So I searched through the net and found out a solution from a java forum (thanks camickr).
In contrast to my expectations, it was quite simple though. And here it is:

private void trackSystemEvents()
{
Toolkit.getDefaultToolkit().addAWTEventListener(new AWTEventListener()
{
public void eventDispatched(AWTEvent event)
{
String eventText = event.toString();
if(eventText.indexOf("PRESSED") != -1 || eventText.indexOf("RELEASED") != -1)
{
SessionMonitor.getInstance().setLastActionTime(System.currentTimeMillis());
}
}
}, AWTEvent.MOUSE_EVENT_MASK + AWTEvent.KEY_EVENT_MASK);
}

Here, i want to track the user activity through a "global" listener kind of thing. And here the event listener is registered with AWTEvent.MOUSE_EVENT_MASK and AWTEvent.KEY_EVENT_MASK. That means, only mouse events and key events shall be tracked.

And i don't want to track the mouse moved/entered events and that's why the small "if" condition which checks only for "pressed/released" actions like key pressed, mouse released etc.

This will help you in implementing the logic to track session timeout.

And spice it up with "observer" pattern to notify your user interfaces to close the opened resources.