WEB SERVICE ADELANTO DE SUELDO

NO VALUES

    //Example 1:
          var data = {
              soapendpoint: "AdelantoSueldoWS",
              soapaction: "ObtenerComision",
              soapvalues: {}
          };
         
          $.ajax("http://www.scotiabank.com.pe/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.
                */
            }
        });