forked from doedje/jquery.soap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.soap.js
446 lines (407 loc) · 15.3 KB
/
jquery.soap.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
/*==========================
jquery.soap.js http://plugins.jquery.com/soap/
version: 1.0.2
jQuery plugin for communicating with a web service using SOAP.
One function to send the soapRequest that takes a complex object as a parameter
Dependencies
-----------
jQuery -- built and tested with v1.9.1, MAY work back to v1.6
SOAPResponse.toJSON() depends on jQuery.xml2json.js
Authors / History
-----------------
2013-03 >> update internal OO structure, enable XML & object input as well as JSON
Zach Shelton == zachofalltrades.net
https://github.com/zachofalltrades/jquery.soap
2013-02-19 >> published to plugins.jquery.com/soap/
Remy Blom == https://github.com/doedje/jquery.soap
2011-10-31 >> fix handling of arrays in JSON paramaters
Diccon Towns == [email protected]
2009-12-03 >> wrap jqSOAPClient as plugin
Remy Blom == www.hku.nl == [email protected]
Utrecht School of Arts,The Netherlands
2007-12-20 >> jqSOAPClient.beta.js by proton17
http://archive.plugins.jquery.com/project/jqSOAPClient
ORIGINAL LICENSE:
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/>.
==========================*/
/*====================
options {
url: 'http://my.server.com/soapservices/', //endpoint address for the service
method: 'helloWorld', // service operation name
// 1) will be appended to url if appendMethodToURL=true
// 2) will be used for request element name when building xml from JSON 'params' (unless 'elementName' is provided)
appendMethodToURL: true, // method name will be appended to URL defaults to true
soap12: false, // use SOAP 1.2 namespace and HTTP headers - default to false
//params can be XML DOM, XML String, or JSON
params: domXmlObject, // XML DOM object
params: xmlString, // XML String for request (alternative to internal build of XML from JSON 'params')
params: { // JSON structure used to build request XML - SHOULD be coupled with ('namespaceQualifier' AND 'namespaceUrl') AND ('method' OR 'elementName')
name: 'Remy Blom',
msg: 'Hi!'
},
//these options ONLY apply when the request XML is going to be built from JSON 'params'
namespaceQualifier: 'myns', // used as namespace prefix for all elements in request (required)
namespaceUrl: 'urn://service.my.server.com', // namespace url added to parent request element (required)
elementName: 'requestElementName', // override 'method' as outer element (optional)
//callback functions
request: function (SOAPRequest) {}, // callback function - request object is passed back prior to ajax call (optional)
success: function (SOAPResponse) {}, // callback function to handle successful return (required)
error: function (SOAPResponse) {} // callback function to handle fault return (required)
}
======================*/
(function($) {
var enableLogging = true;
$.soap = function(options) {
var config = {};
if (!this.globalConfig) { //this setup once
this.globalConfig = {
appendMethodToURL: true,
soap12: false
};
}
//a configuration call will not have 'params' specified
if (options && !options.params) {
$.extend(this.globalConfig, options);//update global config
return;
}
$.extend(config, this.globalConfig, options);
var soapRequest; //will be created defined based on type of 'params' received
if ($.type(config.params) === "string") {
//ensure that string is not empty and contains more than whitespace
if (/\S/.test(config.params)) {
//it had better be a well formed XML string, but we'll trust that it is
var xml;
if (SOAPTool.isWrappedWithEnvelope(config.params)) {
xml = config.params;
} else {
xml = SOAPTool.wrapWithEnvelope(config.params, config.soap12);
}
soapRequest = new SOAPRequest();
//override the toString method of SOAPRequest
soapRequest.toString = function(){
return xml;
};
} else {
//soapRequest is left undefined
}
} else if ($.isXMLDoc(config.params)) {
soapRequest = config.params;
soapRequest = new SOAPRequest();
//override the toString method of SOAPRequest
soapRequest.toString = function(){
return SOAPTool.dom2String(config.params);
};
} else if ($.isPlainObject(config.params)) {
//build from JSON
if (!!config.method || !!config.elementName) {
var name = !!config.elementName ? config.elementName : config.method;
var prefix = !!config.namespaceQualifier ? config.namespaceQualifier+':' : '';//get prefix to show in child elements of complex objects
var mySoapObject = SOAPTool.json2soap(new SOAPObject(name), config.params, prefix);
if (!!config.namespaceQualifier && !!config.namespaceUrl) {
mySoapObject.ns = SOAPTool.Namespace(config.namespaceQualifier, config.namespaceUrl);
}
soapRequest = new SOAPRequest(mySoapObject);
if (config.soap12) {
soapRequest.soapNamespace = SOAPTool.SOAP12_NAMESPACE;
}
}
} else {
//no request
}
if (!!soapRequest && $.isFunction(config.request)) {
config.request(soapRequest);
}
if (!!config.url && !!soapRequest) {//we have a request and somewhere to send it
if (!$.isFunction(config.error)) {
throw new Error ("error callback function was not provided");
}
if (!$.isFunction(config.success)) {
throw new Error ("success callback function was not provided");
}
var client = new SOAPClient();
client.Proxy = config.url;
if(config.appendMethodToURL && !!config.method){
client.Proxy += config.method;
}
client.SendRequest(config.method, soapRequest, function (response) {
log(response);
if (response.status !== 'success') {
config.error(response);
} else {
config.success(response);
}
});
}
};
var SOAPClient = function() {
this.typeOf="SOAPClient";
this._tId = null;
this.Proxy = "";
this.SOAPServer = "";
this.CharSet = "UTF-8";
this.Timeout = 0;
// this.httpHeaders = {};
// this.SetHTTPHeader = function(name, value){
// var re = /^[\w]{1,20}$/;
// if((typeof(name) === "string") && re.test(name)) {
// this.httpHeaders[name] = value;
// }
// };
this.SendRequest = function(action, soapReq, callback) {
if (!$.isFunction(callback)) {
throw new Error("callback function was not specified");
}
if(!!this.Proxy) {
var content = soapReq.toString();
var contentType = SOAPTool.SOAP11_TYPE;
if (SOAPTool.isSOAP12(content)) {
contentType = SOAPTool.SOAP12_TYPE;
}
var xhr = $.ajax({//see http://api.jquery.com/jQuery.ajax/
type: "POST",
url: this.Proxy,
dataType: "xml",
processData: false,
data: content,
contentType: contentType + "; charset=" + this.CharSet,
beforeSend: function(req) {
req.setRequestHeader("Method", "POST");
req.setRequestHeader("SOAPServer", this.SOAPServer);
if (contentType === SOAPTool.SOAP11_TYPE) {
req.setRequestHeader("SOAPAction", action);
}
// if(!!this.httpHeaders) {
// var hh = null, ch = null;
// for(hh in this.httpHeaders) {
// if (!this.httpHeaders.hasOwnProperty || this.httpHeaders.hasOwnProperty(hh)) {
// ch = this.httpHeaders[hh];
// req.setRequestHeader(hh, ch.value);
// }
// }
// }
}
});
xhr.always(function(a, status, c){
var response;
log("status: " + $.type(status) + " '" + status + "'");
log("a:" + $.type(a) + " isXMLDoc(a):" + $.isXMLDoc(a) + " a.responseText:" + $.type(a.responseText) + " isXMLDoc(a.responseText):" + $.isXMLDoc(a.responseText) + " a.responseXML:" + $.type(a.responseXML) + " isXMLDoc(a.responseXML):" + $.isXMLDoc(a.responseXML));
log("c:" + $.type(c) + " isXMLDoc(c):" + $.isXMLDoc(c) + " c.responseText:" + $.type(c.responseText) + " isXMLDoc(c.responseText):" + $.isXMLDoc(c.responseText) + " c.responseXML:" + $.type(c.responseXML) + " isXMLDoc(c.responseXML):" + $.isXMLDoc(c.responseXML));
log("--a--");
log(a);
log("--c--");
log(c);
if ($.isXMLDoc(a)) {
response = new SOAPResponse(status, c);
response.content = SOAPTool.dom2string(a);
} else if ($.type(a)==='object') {
response = new SOAPResponse(status, a);
response.content = (a.responseXML === undefined) ? a.responseText : a.responseXML;
} else if ($.type(c)==='object') {
response = new SOAPResponse(status, c);
response.content = (c.responseXML === undefined) ? c.responseText : c.responseXML;
} else {
throw new Error("unexpected return types for jqXHR.always()");
}
callback(response);
});
}
};
};
//Singleton SOAP Tool
var SOAPTool=(function(){
var _self = {
SOAP11_TYPE: "text/xml",
SOAP12_TYPE: "application/soap+xml",
SOAP11_NAMESPACE: "http://schemas.xmlsoap.org/soap/envelope/",
SOAP12_NAMESPACE: "http://www.w3.org/2003/05/soap-envelope",
isSOAP11: function(xml) {
return (xml.indexOf(SOAPTool.SOAP11_NAMESPACE) !== -1);
},
isSOAP12: function(xml) {
return (xml.indexOf(SOAPTool.SOAP12_NAMESPACE) !== -1);
},
isWrappedWithEnvelope: function(xml) {
return (this.isSOAP11(xml) || this.isSOAP12(xml));
},
wrapWithEnvelope: function(xml, isSoap12) {
var ns = (isSoap12) ? this.SOAP12_NAMESPACE : this.SOAP11_NAMESPACE ;
var wrapped = "<soap:Envelope xmlns:soap=\""+ns+"\"><soap:Body>"+xml+"</soap:Body></soap:Envelope>";
return wrapped;
},
json2soap: function (soapObject, params, prefix) {
for (var x in params) {
if (typeof params[x] == 'object') {
// added by DT - check if object is in fact an Array and treat accordingly
if(params[x].constructor.toString().indexOf("Array") != -1) {// type is array
for(var y in params[x]) {
soapObject.addParameter(prefix+x, params[x][y]);
}
} else {
myParam = this.json2soap(new SOAPObject(prefix+x), params[x], prefix);
soapObject.appendChild(myParam);
}
} else {
soapObject.addParameter(prefix+x, params[x]);
}
}
return soapObject;
},
Namespace: function(name, uri) {
return {"name":name, "uri":uri};
},
dom2string: function(dom) {
if (typeof XMLSerializer!=="undefined") {
return new window.XMLSerializer().serializeToString(dom);
} else {
return dom.xml;
}
},
soap2xml: 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(SOAPTool.soap2xml(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(soapObj) {
this.typeOf="SOAPRequest";
this.soapNamespace = SOAPTool.SOAP11_NAMESPACE;
var nss=[];
var headers=[];
var bodies=(!!soapObj)?[soapObj]:[];
this.addNamespace=function(ns, uri){nss.push(new SOAPTool.Namespace(ns, uri));};
this.addHeader=function(soapObj){headers.push(soapObj);};
this.addBody=function(soapObj){bodies.push(soapObj);};
this.toString=function() {
var soapEnv = new SOAPObject("soap:Envelope");
soapEnv.attr("xmlns:soap",this.soapNamespace);
//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("soap: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("soap:Body"));
var tBdy;
for(tBdy in bodies){if(!bodies.hasOwnProperty || bodies.hasOwnProperty(tBdy)){soapBody.appendChild(bodies[tBdy]);}}
}
return soapEnv.toString();
};
};
//Soap response - this will be passed to the callback from SOAPClient.SendRequest
var SOAPResponse=function(status, xhr) {
this.typeOf="SOAPResponse";
this.status=status;
this.headers=xhr.getAllResponseHeaders().split('\n');
this.httpCode=xhr.status;
this.httpText=xhr.statusText;
this.content=null;
this.toString=function(){
if (typeof this.content==='string') {
return this.content;
}
if ($.isXMLDoc(this.content)) {
return SOAPTool.dom2string(this.content);
}
throw new Error("Unexpected Content: " + $.type(this.content));
};
this.toXML=function(){
if ($.isXMLDoc(this.content)) {
return this.content;
}
return $.parseXML(this.content);
};
this.toJSON=function(){
if ($.xml2json) {
return $.xml2json(this.content);
}
throw new Error("Missing JQuery Plugin 'xml2json'");
};
};
//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.addParameter=function(name,value){var obj=new SOAPObject(name);obj.val(value);this.appendChild(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 SOAPTool.soap2xml(this);};
};
function log(x) {
if (enableLogging && typeof(console)==='object') {
if ($.isFunction(console.log)) {
console.log(x);
}
}
}
})(jQuery);