Сообщение от ArtJS
|
//запросим, что надо у сервлета
$.post("http://localhost:8080/Testing", {command: "value"}, this.onPostResponse);
|
попробуй так:
$.ajax({
url: "http://localhost:8080/Testing",
type: "POST",
data: {command: "value"},
context: this,
success: this.onPostResponse
});