AjaxPro for Java Developers?

Tags: .NET, AJAX, Ajax.NET, JavaScript

I have started to create a AjaxPro Java Edition which will be 100% code compatible on the client-side. That means there is no change of JavaScript and HTML when moving around, no code change when developing JavaScript controls. Look at the following code:

import java.text.*;
import java.util.*;

public class AjaxMethods
{
    @AjaxPro.AjaxMethod
    public String SayHello(String name)
    {
        return "Hello " + name + "!";
    }

    @AjaxPro.AjaxMethod
    public boolean IsTrue(boolean b)
    {
        return b;
    }
}

I will offer a first alpha version the next days.

2 Comments

Comments have been disabled for this content.