Possible Duplicate:
How to use Servlets and Ajax?
I am using the following code in Javascript to makes an Ajax call:
function getPersonDataFromServer() {
$.ajax({
type: "POST",
timeout: 30000,
url: "SearchPerson.aspx/PersonSearch",
data: "{ 'fNamn' : '" + stringData + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
...
}
});
}
I would like to do this in Java as well. Basically, I would like to write a Java client application which send this data via Ajax calls to the server.
How do I do Ajax in Java?