You can do an Ajax call and then parse the table to extract the data.
Sample with jQuery:
$.ajax({
type: “POST”,
url: “/invoke/folder/service”,
data: {“input”: value},
success: function(data){
var output = $.parseHTML(data);
// dump data to a table which is not displayed
$(“#output”).html(output);
$(“#output”).find(‘table’)
$(“#output”).find(‘tr’).each(function (rowIndex, r){
$(this).find(‘tr,td’).each(function (colIndex, c) {
// find the data
}};
}
// do the next thing
#Integration-Server-and-ESB#webMethods#webMethods-General