Buenos días, al consumir el servicio si deseo cambiar la información que no me la traiga en xml sino por json y en vez de utilizar soap sea rest, ¿Cómo se implementaría?, espero haber sido clara.
Un ejemplo del código:
function llamadoWebServiceProyectos() {
var soapEnv = "<?xml version='1.0' encoding='utf-8'?><soap:Envelope xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'><soap:Body><GetWebCollection xmlns='http://schemas.microsoft.com/sharepoint/soap/'></GetWebCollection></soap:Body></soap:Envelope>";
$.ajax({
url: "http://proyectos.ceiba.com.co/_vti_bin/Webs.asmx?op=GetWebCollection",
type: "POST",
dataType: "xml",
data: soapEnv,
complete: processResultProyectos,
contentType: "text/xml; charset=\"utf-8\""
});
};
Muchas gracias