Syntax support for collections?

It is common to use final static fields to define constants in your Java applications. For example, you will often find the code similar to this in various Java APIs public class Example { public static int one = 1; } which is used in the following manner System.out.println(Example.one); Of course, Java supports more complex… Continue reading Syntax support for collections?

Published
Categorized as onJava

XAP proposal in Apache incubator

There is an interesting Ajax-related proposal in Apache incubator, named XAP (eXtensible Ajax Platform). It is a project donated by Nexaweb Technologies Inc and represents XML-based declarative framework for building rich internet applications based on Ajax. You can find more information about this project on Nexaweb site In the proposal there is the following paragraph:… Continue reading XAP proposal in Apache incubator

Published
Categorized as onJava

DWR 2.0

I just saw the release note for DWR 2.0 milestone 1. It introduces many new features, but the most interesting is certainly “Reverse Ajax”, which allows Java code to asynchronously call JavaScript code in the browser. I’ve used DWR on few projects in the past and I find it to be a very good AJAX… Continue reading DWR 2.0

Published
Categorized as onJava

JUG-NS session

I will be speaking on Quartz scheduler in Novi Sad on April 19th, 2006. The full announcement can be found here (in Sebian).

Published
Categorized as Talks

Apache XML-RPC adapter continued

In the previous post I showed how you can make a Spring wrapper around the WebServer object and thus configure it easily in Spring-based applications. This solution is good for standalone applications that use Spring as a configuration mechanism. But if you are using Spring MVC to develop web applications you probably don’t want to… Continue reading Apache XML-RPC adapter continued

Published
Categorized as onJava

Apache XML-RPC Adapter for Spring

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

Published
Categorized as onJava