Skip to content

Instantly share code, notes, and snippets.

@larscwallin
Created June 21, 2011 20:55
Show Gist options
  • Save larscwallin/1038878 to your computer and use it in GitHub Desktop.
Save larscwallin/1038878 to your computer and use it in GitHub Desktop.
jqSOAPClient
/*
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//Singleton SOAP Client
var SOAPClient = (function() {
var httpHeaders = {};
var _tId = null;
var _self = {
Proxy: "",
SOAPServer: "",
ContentType: "text/xml",
CharSet: "utf-8",
ResponseXML: null,
ResponseText: "",
Status: 0,
ContentLength: 0,
Timeout: 0,
SetHTTPHeader: function(name, value){
var re = /^[\w]{1,20}$/;
if((typeof(name) === "string") && re.test(name)) {
httpHeaders[name] = value;
}
},
Namespace: function(name, uri) {
return {"name":name, "uri":uri};
},
SendRequest: function(soapReq, callback) {
if(!!SOAPClient.Proxy) {
SOAPClient.ResponseText = "";
SOAPClient.ResponseXML = null;
SOAPClient.Status = 0;
var content = soapReq.toString();
SOAPClient.ContentLength = content.length;
function getResponse(xData) {
if(!!_tId) {clearTimeout(_tId);}
SOAPClient.Status = xhrReq.status;
SOAPClient.ResponseText = xhrReq.responseText;
SOAPClient.ResponseXML = xhrReq.responseXML;
if(typeof(callback) === "function") {
var jsOut = $.xmlToJSON(xData);
callback(jsOut);
}
}
var xhrReq = $.ajax({
type: "POST",
url: SOAPClient.Proxy,
dataType: "xml",
processData: false,
data: content,
success: getResponse,
contentType: SOAPClient.ContentType + "; charset=\"" + SOAPClient.CharSet + "\"",
beforeSend: function(req) {
req.setRequestHeader("Method", "POST");
req.setRequestHeader("Content-Length", SOAPClient.ContentLength);
req.setRequestHeader("SOAPServer", SOAPClient.SOAPServer);
req.setRequestHeader("SOAPAction", soapReq.Action);
if(!!httpHeaders) {
var hh = null, ch = null;
for(hh in httpHeaders) {
if (!httpHeaders.hasOwnProperty || httpHeaders.hasOwnProperty(hh)) {
ch = httpHeaders[hh];
req.setRequestHeader(hh, ch.value);
}
}
}
}
});
}
},
ToXML: function(soapObj) {
var out = [];
var isNSObj=false;
try {
if(!!soapObj&&typeof(soapObj)==="object"&&soapObj.typeOf==="SOAPObject") {
//Namespaces
if(!!soapObj.ns) {
if(typeof(soapObj.ns)==="object") {
isNSObj=true;
out.push("<"+soapObj.ns.name+":"+soapObj.name);
out.push(" xmlns:"+soapObj.ns.name+"=\""+soapObj.ns.uri+"\"");
} else {
out.push("<"+soapObj.name);
out.push(" xmlns=\""+soapObj.ns+"\"");
}
} else {
out.push("<"+soapObj.name);
}
//Node Attributes
if(soapObj.attributes.length > 0) {
var cAttr;
var aLen=soapObj.attributes.length-1;
do {
cAttr=soapObj.attributes[aLen];
if(isNSObj) {
out.push(" "+soapObj.ns.name+":"+cAttr.name+"=\""+cAttr.value+"\"");
} else {
out.push(" "+cAttr.name+"=\""+cAttr.value+"\"");
}
} while(aLen--);
}
out.push(">");
//Node children
if(soapObj.hasChildren()) {
var cPos, cObj;
for(cPos in soapObj.children){
cObj = soapObj.children[cPos];
if(typeof(cObj)==="object"){out.push(SOAPClient.ToXML(cObj));}
}
}
//Node Value
if(!!soapObj.value){out.push(soapObj.value);}
//Close Tag
if(isNSObj){out.push("</"+soapObj.ns.name+":"+soapObj.name+">");}
else {out.push("</"+soapObj.name+">");}
return out.join("");
}
} catch(e){alert("Unable to process SOAPObject! Object must be an instance of SOAPObject");}
}
};
return _self;
})();
//Soap request - this is what being sent using SOAPClient.SendRequest
var SOAPRequest=function(action, soapObj) {
this.Action=action;
var nss=[];
var headers=[];
var bodies=(!!soapObj)?[soapObj]:[];
this.addNamespace=function(ns, uri){nss.push(new SOAPClient.Namespace(ns, uri));};
this.addHeader=function(soapObj){headers.push(soapObj);};
this.addBody=function(soapObj){bodies.push(soapObj);};
this.toString=function() {
var soapEnv = new SOAPObject("soapenv:Envelope");
soapEnv.attr("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/");
//Add Namespace(s)
if(nss.length>0){
var tNs, tNo;
for(tNs in nss){if(!nss.hasOwnProperty || nss.hasOwnProperty(tNs)){tNo=nss[tNs];if(typeof(tNo)==="object"){soapEnv.attr("xmlns:"+tNo.name, tNo.uri);}}}
}
//Add Header(s)
if(headers.length>0) {
var soapHeader = soapEnv.appendChild(new SOAPObject("soapenv:Header"));
var tHdr;
for(tHdr in headers){if(!headers.hasOwnProperty || headers.hasOwnProperty(tHdr)){soapHeader.appendChild(headers[tHdr]);}}
}
//Add Body(s)
if(bodies.length>0) {
var soapBody = soapEnv.appendChild(new SOAPObject("soapenv:Body"));
var tBdy;
for(tBdy in bodies){if(!bodies.hasOwnProperty || bodies.hasOwnProperty(tBdy)){soapBody.appendChild(bodies[tBdy]);}}
}
return soapEnv.toString();
};
};
//Soap Object - Used to build body envelope and other structures
var SOAPObject = function(name) {
this.typeOf="SOAPObject";
this.ns=null;
this.name=name;
this.attributes=[];
this.children=[];
this.value=null;
this.attr=function(name, value){this.attributes.push({"name":name, "value":value});return this;};
this.appendChild=function(obj){this.children.push(obj);return obj;};
this.hasChildren=function(){return (this.children.length > 0)?true:false;};
this.val=function(v){if(!v){return this.value;}else{this.value=v;return this;}};
this.toString=function(){return SOAPClient.ToXML(this);};
};
@doedje
Copy link

doedje commented Feb 21, 2013

Hi Lars, I wrote a wrapper for proton17's jqSOAPClient.beta.js in 2009 that allowed me to do $.soap({...});

Since we are reviewing our complete codebase I looked into that file again this week. I noticed this Gist in the process and wondered how you want me to credit you for the original code in my wrapper script which can be found at:

http://plugins.jquery.com/soap/

I hope to hear from you...

@larscwallin
Copy link
Author

To be honest, l don't even remember this gist :)
I would guess that I found it else where and saved it here for later use.

Thanks,
Lars

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment