WEB SERVICE ADELANTO DE SUELDO
CONSUMO DE WEB SERVICE - prueba 03 - hiiuhiuhiuhiuhiuhiuh
//Example 1:
var data = {
soapendpoint: "AdelantoSueldoWS",
soapaction: "ObtenerComision"
};
$.ajax("http://pe-staging.sbpe-lb2.brushfirenorth.com/SOAPBroker", {
data: data,
method: "POST",
dataType: "xml",
success: function(soapResponseDoc) {
/*response code*/
},
error: function(jqXhr, textStatus, errorThrown){
/* Error handle code
Errors can occur if:
The endpoint and action aren't specified.
The endpoint isn't whitelisted in Agility.
A connection to the endpoint failed over the network.
*/
}
});