Posted by: tsamuel on: May 17, 2007
The DWR / Direct Web Remoting is an open source solution under the Apache license for the developer who wants to use AJAX and XMLHttpRequest in an easy way. A Step by Step example: 1) Create the java service class : package com.example.dwr; public class DWRPersonService { public Person[] getAllPersons() { Person[] list = new [...]