You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by pr...@apache.org on 2014/04/17 04:43:18 UTC

[38/52] [partial] forking carbon ui bundle in to stratos code base and removing license incompatible JS and packing the new module to carbon runtime, through dropins

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/6b1dba58/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/WSRequest.js
----------------------------------------------------------------------
diff --git a/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/WSRequest.js b/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/WSRequest.js
new file mode 100644
index 0000000..37988bd
--- /dev/null
+++ b/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/WSRequest.js
@@ -0,0 +1,1446 @@
+/*
+ * Copyright 2007 WSO2, Inc. http://www.wso2.org
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+// This file introduces two classes: WSRequest for invoking a Web Service, and WebServiceError to encapsulate failure information.
+
+var WSRequestInaccessibleDomains = new Array();  // Assume all domains can be accessed without restrictions.  Once this fails, we'll try alternate means.
+var WSRequestActiveRequests = new Array();
+
+var WSRequest = function() {
+    // properties and usage mirror XMLHTTPRequest
+    this.readyState = 0;
+    this.responseText = null;
+    this.responseXML = null;
+    this.error = null;
+    this.onreadystatechange = null;
+    this.proxyAddress = null;
+    this.proxyEngagedCallback = null;
+    this.sentRequestUsingProxy = false;
+	this.pattern = null;
+
+    // Some internal properties
+    this._xmlhttp = WSRequest.util._createXMLHttpRequestObject();
+    this._soapVer = null;
+    this._async = true;
+    this._optionSet = null;
+    this._uri = null;
+    this._username = null;
+    this._password = null;
+    this._accessibleDomain = true;
+    this._timeoutHandler = null;
+	this._timeout = 1.2 * 60 * 1000;
+};
+
+var WebServiceError = function(reason, detail, code) {
+    this.reason = reason;
+    this.detail = detail;
+    this.code = code;
+    this.toString = function() { return this.reason; };
+};
+
+/**
+ * @description Prepare a Web Service Request .
+ * @method open
+ * @public
+ * @static
+ * @param {object} options
+ * @param {string} URL
+ * @param {boolean} asyncFlag
+ * @param {string} username
+ * @param {string} password
+ */
+WSRequest.prototype.open = function(options, URL, asnycFlag, username, password) {
+    if (arguments.length < 2 || arguments.length > 6)
+    {
+        throw new WebServiceError("Invalid input argument", "WSRequest.open method requires 2 to 6 arguments, but " + arguments.length + (arguments.length == 1 ? " was" : " were") + " specified.");
+    }
+
+    if (typeof(options) == "string") {
+        this._optionSet = new Array();
+        this._optionSet["HTTPMethod"] = options;
+        this._optionSet["useSOAP"] = false;
+    } else {
+        this._optionSet = options;
+    }
+
+    this._uri = URL;
+    this._async = asnycFlag;
+    if (username != null && password == null)
+        throw new WebServiceError("User name should be accompanied by a password", "WSRequest.open invocation specified username: '" + username + "' without a corresponding password.");
+    else
+    {
+        this._username = username;
+        this._password = password;
+    }
+
+    this.readyState = 1;
+    if (this.onreadystatechange != null)
+        this.onreadystatechange();
+    this.responseText = null;
+    this.responseXML = null;
+    this.error = null;
+};
+
+/**
+ * @description Send the payload to the Web Service.
+ * @method send
+ * @public
+ * @static
+ * @param {dom} response xml payload
+ */
+WSRequest.prototype.send = function(payload, type) {
+    if (arguments.length > 1) {
+        throw new WebServiceError("Invalid input argument.", "WSRequest.send() only accepts a single argument, " + arguments.length + " were specified.");
+    }
+
+    var accessibleDomain = true;
+
+    if (this._optionSet != null) {
+        accessibleDomain = this._optionSet['accessibleDomain'];
+        if (accessibleDomain == null) {
+            accessibleDomain = true;
+        }
+    }
+
+    for (var d in WSRequestInaccessibleDomains) {
+        if (this._uri.indexOf(WSRequestInaccessibleDomains[d]) == 0) {
+            accessibleDomain = false;
+            break;
+        }
+    }
+
+    this._soapVer = WSRequest.util._bindingVersion(this._optionSet);
+
+    if (accessibleDomain) {
+        // request body formatted as a string
+        var req = null;
+
+        var method;
+        if (this._optionSet["HTTPMethod"] != null)
+            method = this._optionSet["HTTPMethod"];
+        else
+            method = "POST";
+
+        if (payload != null)
+        {
+            var content;
+            if(type == "json") {
+                content = WSRequest.util.bf2xml(payload);
+            } else {
+                // seralize the dom to string
+                content = WSRequest.util._serializeToString(payload);
+                if (typeof(content) == "boolean" && !content) {
+                    throw new WebServiceError("Invalid input argument.", "WSRequest.send() unable to serialize XML payload.");
+                }
+            }
+
+        }
+
+        // formulate the message envelope
+        if (this._soapVer == 0) {
+            var processed = WSRequest.util._buildHTTPpayload(this._optionSet, this._uri, content);
+            req = processed["body"];
+            this._uri = processed["url"];
+        } else {
+            req = WSRequest.util._buildSOAPEnvelope(this._soapVer, this._optionSet, this._uri, content, this._username, this._password);
+        }
+
+        // Note that we infer soapAction from the "action" parameter - also used for wsa:Action.
+        //  WS-A recommends keeping these two items in sync.
+        var soapAction = this._optionSet["action"];
+
+//        try {
+//            netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");
+//        } catch(e) {
+//        }
+
+		var browserURL = null;
+        var that;
+		if(document.URL != undefined || document.URL != null) {
+			browserURL = document.URL;
+			var hostURL = browserURL.substring(0, browserURL.indexOf("/", 8));
+			var host = hostURL.substring(hostURL.indexOf("://") + 3);
+			var protocol = hostURL.substring(0, hostURL.indexOf("://"));
+			var port;
+			var hostName;
+
+			if(host.indexOf(":") == -1) {
+				hostName = host;
+				if(protocol == "https") {
+					port = 443;
+				} else if(protocol == "http") {
+					port = 80;
+				}
+			} else {
+				hostName = host.substring(0, host.indexOf(":"));
+				port = host.substring(host.indexOf(":") + 1);
+			}
+			//if we are calling from localhost, we need to check it with wsdl endpoint and unify
+			/*if(hostName == "localhost" || hostName == "127.0.0.1") {
+				var hostURLWSDL = this._uri.substring(0,this._uri.indexOf("/", 8));
+				var hostWSDL = hostURLWSDL.substring(hostURL.indexOf("://") + 3);
+				var hostNameWSDL = hostWSDL.substring(0, hostWSDL.indexOf(":"));
+				if(hostNameWSDL == "localhost" || hostNameWSDL == "127.0.0.1") {
+					hostName = hostNameWSDL;
+				}
+			}*/
+			//browserURL = protocol + "://" + hostName + ":" + port + browserURL.substring(browserURL.indexOf("/", 8));
+		}
+        /*
+            if document.URL is present, we check weather this will be subjected
+            to XSS restriction and directed to the private proxy
+          */
+        if(!this.sentRequestUsingProxy && (browserURL == null ||
+                (this._uri.substring(0,this._uri.indexOf("/", 8)) == browserURL.substring(0,browserURL.indexOf("/", 8))))) {
+            // no XSS restriction
+            try {
+                this._xmlhttp.open(method, this._uri, this._async, this._username, this._password);
+
+                // Process protocol-specific details
+                switch (this._soapVer) {
+                    case 1.1:
+                        soapAction = (soapAction == undefined ? '""' : '"' + soapAction + '"');
+                        this._xmlhttp.setRequestHeader("SOAPAction", soapAction);
+                        this._xmlhttp.setRequestHeader("Content-Type", "text/xml; charset=UTF-8");
+                        break;
+                    case 1.2:
+                        this._xmlhttp.setRequestHeader("Content-Type", "application/soap+xml;charset=UTF-8" + (soapAction == undefined ? "" : ";action=" + soapAction));
+                        break;
+                    case 0:
+                        var contentType;
+                        if (this._optionSet["HTTPInputSerialization"] != null) {
+                            contentType = this._optionSet["HTTPInputSerialization"]
+                        } else {
+                            if (method == "GET" | method == "DELETE") {
+                                contentType = "application/x-www-form-urlencoded";
+                            } else {
+                                contentType = "application/xml";
+                            }
+                        }
+                        this._xmlhttp.setRequestHeader("Content-Type", contentType);
+                        break;
+                }
+            }  catch(e) {
+                throw e;
+            }
+        } else {
+            // this domain might be subjected to XSS restriction, private proxy will be used
+            try {
+                var thisDomain = this._uri.substring(0, this._uri.substring(9).indexOf("/") + 10);
+                WSRequestInaccessibleDomains.push(thisDomain);
+                this.send(payload);
+                return;
+            } catch (e) {
+                throw e;
+            }
+        }
+
+        if (this._async) {
+            // async call
+            this._xmlhttp.onreadystatechange = WSRequest.util._bind(this._handleReadyState, this);
+            that = this;
+            this._timeoutHandler = setTimeout(function() {
+                if(that._xmlhttp.abort) that._xmlhttp.abort();
+                that.error = new WebServiceError("Service Timeout", "Request to the service timeout");
+                if(that._xmlhttp.readyState == 0 || that._xmlhttp.readyState == 1) {
+                    that.readyState = 4;
+                    if (that.onreadystatechange != null)
+                        that.onreadystatechange();
+                }
+            }, this._timeout);
+            this._xmlhttp.send(req);
+        } else {
+            // sync call
+            this.readyState = 2;
+            if (this.onreadystatechange != null)
+                this.onreadystatechange();
+            this._xmlhttp.send(req);
+
+            this._processResult();
+            if (this.error != null)
+                throw (this.error);
+
+            this.readyState = 4;
+            if (this.onreadystatechange != null)
+                this.onreadystatechange();
+        }
+    } else {
+
+        if (!this._async) {
+            throw new WebServiceError("Synchronous requests not supported.", "Request tunnelled through a URL requires asynchronous invocation.  Synchronous requests are not yet implemented.");
+        }
+        this.sentRequestUsingProxy = true;
+
+        var tunnelEndpoint;
+        if (this.proxyAddress == null || this.proxyAddress == "") {
+            if (this._uri.indexOf("http") == 0)
+                tunnelEndpoint = this._uri.substring(0,this._uri.indexOf("/services/"));
+            else throw new WebServiceError("Unspecified WSRequest.proxyAddress property - must specify when using script-injection fallback when endpoint is not http or https.")
+        } else {
+            tunnelEndpoint = this.proxyAddress;
+        }
+        var request = "async=" + this._async.toString() + "&" +
+                      "uri=" + encodeURIComponent(this._base64(this._uri)) + "&" +
+                      "pattern=" + encodeURIComponent(this._base64(this.pattern)) + "&" +
+                      "username=" + encodeURIComponent(this._base64(this._username)) + "&" +
+                      "password=" + encodeURIComponent(this._base64(this._password)) + "&" +
+                      "payload=" + encodeURIComponent(this._base64(WSRequest.util._serializeToString(payload))) + "&";
+        request += "options=";
+        for (var option in this._optionSet) {
+            if (this._optionSet[option] != null)
+                request += encodeURIComponent(this._base64(option + ":" + this._optionSet[option])) + ",";
+        }
+
+        this._xmlhttp.open("POST", tunnelEndpoint, true);
+        this._xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
+
+        this._xmlhttp.onreadystatechange = WSRequest.util._bind(function() {
+            if (this._xmlhttp.readyState == 2) {
+                this.readyState = 2;
+                if (this.onreadystatechange != null)
+                    this.onreadystatechange();
+            }
+
+            if (this._xmlhttp.readyState == 3) {
+                this.readyState = 3;
+                if (this.onreadystatechange != null)
+                    this.onreadystatechange();
+            }
+
+            if (this._xmlhttp.readyState == 4) {
+                clearTimeout(this._timeoutHandler);
+                WSRequest._tunnelcallback(this);
+            }
+        }, this);
+
+        that = this;
+        this._timeoutHandler = setTimeout(function() {
+            if(that._xmlhttp.abort) that._xmlhttp.abort();
+            that.error = new WebServiceError("Proxy Timeout", "Request to the Tryit proxy timeout");
+            if(that._xmlhttp.readyState == 0 || that._xmlhttp.readyState == 1) {
+                that.readyState = 4;
+                if (that.onreadystatechange != null)
+                    that.onreadystatechange();
+            }
+        }, this._timeout);
+        this._xmlhttp.send(request);
+    }
+
+    // Execute a simple callback enabling UI to reflect whether the call was normal or through the proxy.
+    if (this.proxyEngagedCallback != null)
+        this.proxyEngagedCallback(!accessibleDomain);
+
+}
+
+WSRequest._tunnelcallback = function (thisRequest) {
+    var httpstatus = thisRequest._xmlhttp.status;
+    if (httpstatus == '200' || httpstatus == '202') {
+        var browser = WSRequest.util._getBrowser();
+        var responseText = thisRequest._xmlhttp.responseText;
+        var responseXMLdoc = null;
+        var response = null;
+        if (responseText != "") {
+            if (browser == "ie" || browser == "ie7") {
+                try {
+                    responseXMLdoc = new ActiveXObject("Microsoft.XMLDOM");
+                    responseXMLdoc.loadXML(responseText);
+                    response = responseXMLdoc;
+                } catch (e) {
+                    thisRequest.error = new WebServiceError("XML Parsing Error.", e);
+                }
+            } else {
+                var parser = new DOMParser();
+                responseXMLdoc = parser.parseFromString(responseText,"text/xml");
+                response = responseXMLdoc;
+                response.normalize();  //fixes data getting truncated at 4096 characters
+                if (response.documentElement.localName == "parsererror" && response.documentElement.namespaceURI == "http://www.mozilla.org/newlayout/xml/parsererror.xml") {
+                    thisRequest.error = new WebServiceError("XML Parsing Error.", responseText);
+                }
+            }
+        }
+
+        if (thisRequest.error == null) {
+            thisRequest.responseText = responseText;
+            thisRequest.responseXML = response;
+
+            if (response != null) {
+                var httpStatus;
+                if (browser == "ie" || browser == "ie7") {
+                    httpStatus = response.documentElement.getAttribute("h:status");
+                } else {
+                    httpStatus = response.documentElement.getAttributeNS("http://wso2.org/ns/TryitProxy", "status");
+                }
+                if (httpStatus != null && httpStatus != '') {
+                    thisRequest.error = new WebServiceError(httpStatus, responseText);
+                    thisRequest.httpStatus = 404;
+                } else {
+                    thisRequest.httpStatus = 200;
+                }
+            }
+            if (thisRequest._soapVer != 0) {
+
+                if (response != null) {
+                    var soapNamespace;
+                    if (thisRequest._soapVer == 1.1)
+                        soapNamespace = "http://schemas.xmlsoap.org/soap/envelope/";
+                    else
+                        soapNamespace = "http://www.w3.org/2003/05/soap-envelope";
+
+                    var fault = response.documentElement;
+                    if (fault.localName == "Fault" && fault.namespaceURI == soapNamespace) {
+                        thisRequest.error = new WebServiceError();
+                        if (thisRequest._soapVer == 1.2) {
+                            thisRequest.error.code = WSRequest.util._stringValue(WSRequest.util._firstElement(fault, soapNamespace, "Value"));
+                            thisRequest.error.reason = WSRequest.util._stringValue(WSRequest.util._firstElement(fault, soapNamespace, "Text"));
+                            thisRequest.error.detail = fault;
+                        } else {
+                            thisRequest.error.code = WSRequest.util._stringValue(fault.getElementsByTagName("faultcode")[0]);
+                            thisRequest.error.reason = WSRequest.util._stringValue(fault.getElementsByTagName("faultstring")[0]);
+                            thisRequest.error.detail = fault;
+                        }
+                    }
+                }
+            }
+        }
+    } else {
+        thisRequest.error = new WebServiceError("Error connecting to the Tryit ajax proxy");
+    }
+
+    thisRequest.readyState = 4;
+    if (thisRequest.onreadystatechange != null)
+        thisRequest.onreadystatechange();
+}
+
+WSRequest.prototype._base64 = function (input) {
+    // Not strictly base64 returns - nulls represented as "~"
+    if (input == null) return "~";
+
+    var base64Map = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
+
+    var length = input.length;
+    var output = "";
+    var p = [];
+    var charCode;
+    var i = 0;
+    var padding = 0;
+    while (charCode = input.charCodeAt(i++)) {
+        // convert to utf-8 as we fill the buffer
+        if (charCode < 0x80) {
+            p[p.length] = charCode;
+        } else if (charCode < 0x800) {
+            p[p.length] = 0xc0 | (charCode >> 6);
+            p[p.length] = 0x80 | (charCode & 0x3f);
+        } else if (charCode < 0x10000){
+            p[p.length] = 0xe0 | (charCode >> 12);
+            p[p.length] = 0x80 | ((charCode >> 6) & 0x3f);
+            p[p.length] = 0x80 | (charCode & 0x3f);
+        } else {
+            p[p.length] = 0xf0 | (charCode >> 18);
+            p[p.length] = 0x80 | ((charCode >> 12) & 0x3f);
+            p[p.length] = 0x80 | ((charCode >> 6) & 0x3f);
+            p[p.length] = 0x80 | (charCode & 0x3f);
+        }
+
+        if (i == length) {
+            while (p.length % 3)
+            {
+                p[p.length] = 0;
+                padding++;
+            }
+        }
+
+        if (p.length > 2) {
+            output += base64Map.charAt(p[0] >> 2);
+            output += base64Map.charAt(((p.shift() & 3) << 4) | (p[0] >> 4));
+            output += (padding > 1) ? "=" : base64Map.charAt(((p.shift() & 0xf) << 2) | (p[0] >> 6));
+            output += (padding > 0) ? "=" : base64Map.charAt(p.shift() & 0x3f);
+        }
+
+    }
+
+    return output;
+}
+
+
+/**
+ * @description Set responseText, responseXML, and error of WSRequest.
+ * @method _processResult
+ * @private
+ * @static
+ */
+WSRequest.prototype._processResult = function () {
+    var httpstatus;
+    if (this._soapVer == 0) {
+        this.responseText = this._xmlhttp.responseText;
+        this.responseXML = this._xmlhttp.responseXML;
+
+        httpstatus = this._xmlhttp.status;
+        if (httpstatus == '200' || httpstatus == '202') {
+            this.error = null;
+        } else {
+            this.error = new WebServiceError(this._xmlhttp.statusText, this.responseText, "HTTP " + this._xmlhttp.status);
+        }
+    } else {
+        var browser = WSRequest.util._getBrowser();
+
+        if (this._xmlhttp.responseText != "") {
+            var response;
+            var responseXMLdoc;
+            if (browser == "ie" || browser == "ie7") {
+                if (this._xmlhttp.responseXML.documentElement == null) {
+                    // unrecognized media type (probably application/soap+xml)
+                    responseXMLdoc = new ActiveXObject("Microsoft.XMLDOM");
+                    responseXMLdoc.loadXML(this._xmlhttp.responseText);
+                    response = responseXMLdoc.documentElement;
+                } else {
+                    response = this._xmlhttp.responseXML.documentElement;
+                }
+            } else {
+                var parser = new DOMParser();
+                responseXMLdoc = parser.parseFromString(this._xmlhttp.responseText,"text/xml");
+                response = responseXMLdoc.documentElement;
+                response.normalize();  //fixes data getting truncated at 4096 characters
+            }
+            var soapNamespace;
+            if (this._soapVer == 1.1)
+                soapNamespace = "http://schemas.xmlsoap.org/soap/envelope/";
+            else
+                soapNamespace = "http://www.w3.org/2003/05/soap-envelope";
+
+            var soapBody = WSRequest.util._firstElement(response, soapNamespace, "Body");
+            if (soapBody != null && soapBody.hasChildNodes()) {
+                var newDoc;
+                if (browser == "ie" || browser == "ie7") {
+                    newDoc = new ActiveXObject("Microsoft.XMLDOM");
+                    newDoc.appendChild(soapBody.firstChild);
+                } else {
+                    newDoc = document.implementation.createDocument("", "", null);
+                    newDoc.appendChild(soapBody.firstChild.cloneNode(true));
+                }
+
+                this.responseXML = newDoc;
+                this.responseText = WSRequest.util._serializeToString(newDoc);
+
+                fault = WSRequest.util._firstElement(newDoc, soapNamespace, "Fault");
+                if (fault != undefined) {
+                    this.error = new WebServiceError();
+                    if (this._soapVer == 1.2) {
+                        this.error.code = WSRequest.util._stringValue(WSRequest.util._firstElement(fault, soapNamespace, "Value"));
+                        this.error.reason = WSRequest.util._stringValue(WSRequest.util._firstElement(fault, soapNamespace, "Text"));
+                        this.error.detail = fault;
+                    } else {
+                        this.error.code = WSRequest.util._stringValue(fault.getElementsByTagName("faultcode")[0]);
+                        this.error.reason = WSRequest.util._stringValue(fault.getElementsByTagName("faultstring")[0]);
+                        this.error.detail = fault;
+                    }
+                }
+            } else {
+                // empty SOAP body - not necessarily an error
+                this.responseXML = null;
+                this.responseText = "";
+                this.error = null;
+            }
+        } else {
+            // If this block being executed; it's due to server connection has falied.
+            this.responseXML = null;
+            this.responseText = "";
+            try {
+                httpstatus = this._xmlhttp.status;
+                if (httpstatus == '200' || httpstatus == '202') {
+                    this.error = null;
+                } else {
+                    this.error = new WebServiceError();
+                    this.error.code = "HTTP " + this._xmlhttp.status;
+                    this.error.reason = "Server connection has failed.";
+                    this.error.detail = this._xmlhttp.statusText;
+                }
+            } catch (e) {
+                this.error = new WebServiceError();
+                this.error.code = null;
+                this.error.reason = "Server connection has failed.";
+                this.error.detail = e.toString();
+            }
+        }
+    }
+}
+
+/**
+ * @description XMLHttp callback handler.
+ * @method _handleReadyState
+ * @private
+ * @static
+ */
+WSRequest.prototype._handleReadyState = function() {
+    if (this._xmlhttp.readyState == 2) {
+        this.readyState = 2;
+        if (this.onreadystatechange != null)
+            this.onreadystatechange();
+    }
+
+    if (this._xmlhttp.readyState == 3) {
+        this.readyState = 3;
+        if (this.onreadystatechange != null)
+            this.onreadystatechange();
+    }
+
+    if (this._xmlhttp.readyState == 4) {
+        clearTimeout(this._timeoutHandler);
+        this._processResult();
+
+        this.readyState = 4;
+        if (this.onreadystatechange != null)
+            this.onreadystatechange();
+    }
+};
+
+
+// Utility functions
+
+WSRequest.util = {
+
+    xml2DOM : function(content) {
+        //create new document from string
+        var xmlDoc;
+
+        // Parser is browser specific.
+        var browser = this._getBrowser();
+        if (browser == "ie" || browser == "ie7") {
+            //create a DOM from content string.
+            xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
+            if (content != null && content != "")
+                xmlDoc.loadXML(content);
+        } else {
+            //create a DOMParser to get DOM from content string.
+            var xmlParser = new DOMParser();
+            if (content != null && content != "")
+                xmlDoc = xmlParser.parseFromString(content, "text/xml");
+        }
+        return xmlDoc;
+    },
+
+    _msxml : [
+            'MSXML2.XMLHTTP.3.0',
+            'MSXML2.XMLHTTP',
+            'Microsoft.XMLHTTP'
+            ],
+
+    /**
+     * @description Instantiates a XMLHttpRequest object and returns it.
+     * @method _createXMLHttpRequestObject
+     * @private
+     * @static
+     * @return object
+     */
+    _createXMLHttpRequestObject : function() {
+        var xhrObject;
+
+        try {
+            xhrObject = new XMLHttpRequest();
+        } catch(e) {
+            for (var i = 0; i < this._msxml.length; ++i) {
+                try
+                {
+                    // Instantiates XMLHttpRequest for IE and assign to http.
+                    xhrObject = new ActiveXObject(this._msxml[i]);
+                    break;
+                }
+                catch(e) {
+                    // do nothing
+                }
+            }
+        } finally {
+            return xhrObject;
+        }
+    },
+
+    /**
+     * @description Serialize payload to string.
+     * @method _serializeToString
+     * @private
+     * @static
+     * @param {dom} payload   xml payload
+     * @return string
+     */
+    _serializeToString : function(payload) {
+        if (payload == null) return null;
+        if (typeof(payload) == "string") {
+            return payload;
+        } else if (typeof(payload) == "object") {
+            var browser = WSRequest.util._getBrowser();
+            switch (browser) {
+                case "gecko":
+                case "safari":
+                    var serializer = new XMLSerializer();
+                    return serializer.serializeToString(payload);
+                    break;
+                case "ie":
+                case "ie7":
+                    return payload.xml;
+                    break;
+                case "opera":
+                    var xmlSerializer = document.implementation.createLSSerializer();
+                    return xmlSerializer.writeToString(payload);
+                    break;
+                case "undefined":
+                    throw new WebServiceError("Unknown browser", "WSRequest.util._serializeToString doesn't recognize the browser, to invoke browser-specific serialization code.");
+            }
+        } else {
+            return false;
+        }
+    },
+
+
+    /**
+     * @description get the character element children in a browser-independent way.
+     * @method _stringValue
+     * @private
+     * @static
+     * @param {dom element} node
+     * @return string
+     */
+    _stringValue : function(node) {
+        var browser = WSRequest.util._getBrowser();
+        switch (browser) {
+            case "ie":
+            case "ie7":
+                return node.text;
+                break;
+            case "gecko":
+            case "opera":
+            case "safari":
+            case "undefined":
+                var value = "";
+                if (node.nodeType == 3) {
+                    value = node.nodeValue;
+                } else {
+                    for (var i = 0; i < node.childNodes.length; i++) {
+                        value += WSRequest.util._stringValue(node.childNodes[i]);
+                    }
+                }
+                return value;
+                break;
+        }
+    },
+
+
+    /**
+     * @description Determines which binding to use (SOAP 1.1, SOAP 1.2, or HTTP) from the various options.
+     * @method _bindingVersion
+     * @private
+     * @static
+     * @param {Array} options   Options given by user
+     * @return string
+     */
+    _bindingVersion : function(options) {
+        var soapVer;
+        switch (options["useBindng"]) {
+            case "SOAP 1.2":
+                soapVer = 1.2;
+                break;
+            case "SOAP 1.1":
+                soapVer = 1.1;
+                break;
+            case "HTTP":
+                soapVer = 0;
+                break;
+            case undefined:
+                var useSOAP = options["useSOAP"];
+                switch (useSOAP) {
+                    case 1.2:
+                        soapVer = 1.2;
+                        break;
+                    case "1.2":
+                        soapVer = 1.2;
+                        break;
+                    case 1.1:
+                        soapVer = 1.1;
+                        break;
+                    case "1.1":
+                        soapVer = 1.1;
+                        break;
+                    case true:
+                        soapVer = 1.2;
+                        break;
+                    case false:
+                        soapVer = 0;
+                        break;
+                    case undefined:
+                        throw("Unspecified binding type: set useBinding = 'SOAP 1.1' | 'SOAP 1.2' | 'HTTP'.");
+                        break;
+                    default:
+                        throw("Unsupported useSOAP value '" + useSOAP + "'; set 'useBinding' option instead.");
+                }
+                break;
+            default:
+                throw("Unsupported useBinding value '" + options["useBinding"] + "': must be 'SOAP 1.2' | 'SOAP 1.1' | 'HTTP'.");
+        }
+        return soapVer;
+    },
+
+
+    /**
+     * @description Determine which browser we're running.
+     * @method _getBrowser
+     * @private
+     * @static
+     * @return string
+     */
+    _getBrowser : function() {
+        var ua = navigator.userAgent.toLowerCase();
+        if (ua.indexOf('opera') != -1) { // Opera (check first in case of spoof)
+            return 'opera';
+        } else if (ua.indexOf('msie 7') != -1) { // IE7
+            return 'ie7';
+        } else if (ua.indexOf('msie') != -1) { // IE
+            return 'ie';
+        } else if (ua.indexOf('safari') != -1) { // Safari (check before Gecko because it includes "like Gecko")
+            return 'safari';
+        } else if (ua.indexOf('gecko') != -1) { // Gecko
+            return 'gecko';
+        } else {
+            return false;
+        }
+    },
+
+
+    /**
+     * @description Build HTTP payload using given parameters.
+     * @method _buildHTTPpayload
+     * @private
+     * @static
+     * @param {Array} options Options given by user
+     * @param {string} url Address the request will be sent to.
+     * @param {string} content SOAP payload in string format.
+     * @return {array} Containing the processed URL and request body.
+     */
+    _buildHTTPpayload : function(options, url, content) {
+        // Create array to hold request uri and body.
+        var resultValues = new Array();
+        resultValues["url"] = "";
+        resultValues["body"] = "";
+        var paramSeparator = "&";
+        var inputSerialization;
+
+        var HTTPQueryParameterSeparator = "HTTPQueryParameterSeparator";
+        var HTTPInputSerialization = "HTTPInputSerialization";
+        var HTTPLocation = "HTTPLocation";
+        var HTTPMethod = "HTTPMethod";
+
+        // If a parameter separator has been identified, use it instead of the default &.
+        if (options[HTTPQueryParameterSeparator] != null) {
+            paramSeparator = options[HTTPQueryParameterSeparator];
+        }
+
+        // If input serialization is not specified, default based on HTTP Method.
+        if (options[HTTPInputSerialization] == null) {
+            if (options[HTTPMethod] == "GET" | options[HTTPMethod] == "DELETE") {
+                inputSerialization = "application/x-www-form-urlencoded";
+            } else {
+                inputSerialization = "application/xml";
+            }
+        } else {
+            inputSerialization = options[HTTPInputSerialization];
+        }
+
+        //create new document from string
+        var xmlDoc = this.xml2DOM(content);
+
+        // If the payload is to be URL encoded, other options have to be examined.
+        if (inputSerialization == "application/x-www-form-urlencoded" || inputSerialization == "application/xml") {
+
+            resultValues["url"] = options[HTTPLocation];
+
+            // If templates are specified and a valid payload is available, process, else just return original URI.
+            if (options[HTTPLocation] == null) {
+                resultValues["url"] = "";
+            } else if (xmlDoc != null && xmlDoc.hasChildNodes()) {
+
+                // Ideally .documentElement should be used instead of .firstChild, but this does not work.
+                var rootNode = xmlDoc.firstChild;
+
+                // Process payload, distributing content across the URL and body as specified.
+                resultValues = WSRequest.util._processNode(options, resultValues, rootNode, paramSeparator,
+                        inputSerialization);
+
+            }
+            // Globally replace any remaining template tags with empty strings.
+            var allTemplateRegex = new RegExp("\{.*\}", "ig");
+            resultValues["url"] = resultValues["url"].replace(allTemplateRegex, "");
+
+            // Append processed HTTPLocation value to URL.
+            resultValues["url"] = WSRequest.util._joinUrlToLocation(url, resultValues["url"]);
+
+            // Sending the XML in the request body.
+            if (content != null && inputSerialization == "application/xml") {
+                resultValues["body"] = content;
+            }
+        } else if (inputSerialization == "multipart/form-data") {
+            // Just throw an exception for now - will try to use browser features in a later release.
+            throw new WebServiceError("Unsupported serialization option.", "WSRequest.util._buildHTTPpayload doesn't yet support multipart/form-data serialization.");
+        }
+        return resultValues;
+    },
+
+    /**
+     * @description Traverse the DOM tree below a given node, retreiving the content of each node and appending it to the
+     *  URL or the body of the request based on the options specified.
+     * @method _processNode
+     * @private
+     * @static
+     * @param {Array} options Options given by user.
+     * @param {Array} resultValues HTTP Location content and request body.
+     * @param {XML} node SOAP payload as an XML object.
+     * @param {string} paramSeparator Separator character for URI parameters.
+     * @return {array} Containing the processed HTTP Location content and request body.
+     */
+    _processNode : function(options, resultValues, node, paramSeparator, inputSerialization) {
+        var queryStringSep = '?';
+        var HTTPLocationIgnoreUncited = "HTTPLocationIgnoreUncited";
+        var HTTPMethod = "HTTPMethod";
+
+        // Traverse the XML and add the contents of each node to the URL or body.
+        do {
+
+            // Recurse if node has children.
+            if (node.hasChildNodes())
+            {
+                resultValues = WSRequest.util._processNode(options, resultValues, node.firstChild, paramSeparator,
+                        inputSerialization);
+            }
+
+            // Check for availability of node name and data before processing.
+            if (node.nodeValue != null && (node.nodeType === 1 ||
+                    node.nodeType === 2 || node.nodeType === 3 || node.nodeType === 9)) {
+                var tokenName = WSRequest.util._nameForValue(node);
+
+                // Create a regex to look for the token.
+                var templateRegex = new RegExp("\{" + tokenName + "\}", "i");
+                var unencTmpltRegex = new RegExp("\{!" + tokenName + "\}", "i");
+                var tokenLocn;
+
+                // If the token is in the URL - swap tokens with values.
+                if ((tokenLocn = resultValues["url"].search(templateRegex)) != -1) {
+                    // Replace the token with the URL encoded node value.
+                    var isQuery = resultValues["url"].substring(0, tokenLocn).indexOf('?') != -1;
+                    resultValues["url"] = resultValues["url"].replace(templateRegex,
+                            WSRequest.util._encodeString(node.nodeValue, isQuery));
+                } else if (resultValues["url"].search(unencTmpltRegex) != -1) {
+                    // Replace the token with the node value, witout encoding.
+                    resultValues["url"] = resultValues["url"].replace(templateRegex, node.nodeValue);
+                } else {
+                    var parameter = "";
+
+                    // If the node has a list, create a bunch of name/value pairs, otherwise a single pair.
+                    if (WSRequest.util._attributesContain(node.parentNode, "xsd:list")) {
+                        var valueList = new Array();
+                        valueList = node.nodeValue.split(' ');
+                        for (var valueNum = 0; valueNum < valueList.length; valueNum++) {
+                            parameter = parameter + tokenName + "=" + WSRequest.util._encodeString(valueList[valueNum],
+                                    true);
+
+                            // Add the parameter separator after each list value except the last.
+                            if (valueNum < (valueList.length - 1)) {
+                                parameter += paramSeparator;
+                            }
+                        }
+                    } else {
+                        parameter = tokenName + "=" + WSRequest.util._encodeString(node.nodeValue, true);
+                    }
+
+                    // If ignore uncited option has been set, append parameters to body else to the url.
+                    if (options[HTTPLocationIgnoreUncited] != null && options[HTTPLocationIgnoreUncited] == "true") {
+
+                        // Add to request body if the serialization option and request type allows it.
+                        if (inputSerialization == "application/x-www-form-urlencoded" && (options[HTTPMethod] == "POST"
+                                || options[HTTPMethod] == "PUT")) {
+
+                            // Assign or append additional parameters.
+                            if (resultValues["body"] == "") {
+                                resultValues["body"] = parameter;
+                            } else {
+                                resultValues["body"] = resultValues["body"] + paramSeparator + parameter;
+                            }
+                        }
+
+                    } else {
+                        // If he URL does not contain ? add it and then the parameter.
+                        if (resultValues["url"].indexOf(queryStringSep) == -1) {
+                            resultValues["url"] = resultValues["url"] + queryStringSep + parameter;
+                        } else {
+                            // ...otherwise just append the uncited value.
+                            resultValues["url"] = resultValues["url"] + paramSeparator + parameter;
+                        }
+                    }
+                }
+            }
+        } while (node = node.nextSibling)
+
+        return resultValues;
+    },
+
+    /**
+     * @description Build soap message using given parameters.
+     * @method _buildSoapEnvelope
+     * @private
+     * @static
+     * @param {string} soapVer SOAP version (1.1 or 1.2)
+     * @param {Array} options   Options given by user
+     * @param {string} url Address the request will be sent to.
+     * @param {string} content SOAP payload
+     * @param {string} username Optional username
+     * @param {string} password Optional password
+     * @return string
+     */
+    _buildSOAPEnvelope : function(soapVer, options, url, content, username, password) {
+        var ns;
+        if (soapVer == 1.1)
+            ns = "http://schemas.xmlsoap.org/soap/envelope/";
+        else
+            ns = "http://www.w3.org/2003/05/soap-envelope";
+
+        var headers = "";
+
+        // addressing version/namespace
+        var useWSA = options["useWSA"];
+        var wsaNs = "";
+        var wsaNsDecl = "";
+        var usingWSA = false;
+        if (useWSA != undefined && useWSA) {
+            var standardversion;
+            if (useWSA == "1.0" || useWSA) {
+                wsaNs = "http://www.w3.org/2005/08/addressing";
+                standardversion = true;
+            } else if (useWSA == "submission") {
+                wsaNs = "http://schemas.xmlsoap.org/ws/2004/08/addressing";
+                standardversion = false;
+            } else throw ("Unknown WS-Addressing version '" + useWSA + "': must be '1.0' | 'submission' | true | false.");
+            wsaNsDecl = ' xmlns:wsa="' + wsaNs + '"';
+            headers = this._buildWSAHeaders(standardversion, options, url);
+            usingWSA = true;
+        }
+        var useWSS = options["useWSS"];
+        if (useWSS != undefined && useWSS) {
+            if (!usingWSA) {
+                throw ('In order to use WS Security, WS Addressing should be enabled. Please set "options["useWSA"] = true"');
+            }
+            var created = new Date();
+            headers += '<o:Security s:mustUnderstand="1" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" ' +
+                       'xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">' +
+                       '<u:Timestamp u:Id="uuid-c3cdb38b-e4aa-4467-9d0e-dd30f081e08d-5">' +
+                       '<u:Created>' + WSRequest.util._toXSdateTime(created) + '</u:Created>' +
+                       '<u:Expires>' + WSRequest.util._toXSdateTime(created, 5*60) + '</u:Expires>' +
+                       '</u:Timestamp>' +
+                       '<o:UsernameToken u:Id="Me" >' +
+                       '<o:Username>' + username + '</o:Username>' +
+                       '<o:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">' + password + '</o:Password>' +
+                       '</o:UsernameToken>' +
+                       '</o:Security>';
+        }
+
+        var request = '<?xml version="1.0" encoding="UTF-8"?>\n' +
+                  '<s:Envelope xmlns:s="' + ns + '"' +
+                   wsaNsDecl + '>\n' +
+                  '<s:Header>' + headers + '</s:Header>\n' +
+                  '<s:Body>' + (content != null ? content : '') + '</s:Body>\n' +
+                  '</s:Envelope>';
+        return request;
+    },
+
+    /**
+     * @description Build WS-Addressing headers using given parameters.
+     * @method _buildWSAHeaders
+     * @private
+     * @static
+     * @param {boolean} standardversion true for 1.0, false for submission
+     * @param {Array} options   Options given by user
+     * @param {string} address Address the request will be sent to.
+     * @return string
+     */
+    _buildWSAHeaders : function(standardversion, options, address) {
+        if (options['action'] == null)
+            throw("'Action' option must be specified when WS-Addressing is engaged.");
+
+        // wsa:To (required)
+        var headers = "<wsa:To>" + address + "</wsa:To>\n";
+
+        // wsa:From (optional)
+        // Note: reference parameters and metadata aren't supported.
+        if (options['from'] != null)
+            headers += "<wsa:From><wsa:Address>" + options['from'] + "</wsa:Address></wsa:From>\n";
+
+        // wsa:ReplyTo (optional)
+        // Note: reference parameters and metadata aren't supported.
+        // Note: No way to specify that wsa:ReplyTo should be omitted (e.g., only in-out MEPs are supported).
+        if (options['replyto'] != null) {
+            headers += "<wsa:ReplyTo><wsa:Address>" + options['replyto'] + "</wsa:Address></wsa:ReplyTo>\n";
+        } else {
+            // Note: although wsa:ReplyTo is optional on in-out MEPs in the standard version, we put it in
+            //  explicitly for convenience.
+            headers += "<wsa:ReplyTo><wsa:Address>" +
+                       ( standardversion ?
+                         "http://www.w3.org/2005/08/addressing/anonymous" :
+                         "http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous"
+                               ) +
+                       "</wsa:Address></wsa:ReplyTo>\n";
+        }
+
+        // wsa:MessageID (required if a response is expected, e.g. wsa:ReplyTo is specified, which is always for us.)
+        // If user doesn't supply an identifier, we'll make one up.
+        var id;
+        if (options['messageid'] != null) {
+            id = options['messageid'];
+        } else {
+            // coin a unique identifier based on the time (in milliseconds) and a 10-digit random number.
+            var now = (new Date()).valueOf();
+            var randomToken = Math.floor(Math.random() * 10000000000);
+            id = "http://identifiers.wso2.com/messageid/" + now + "/" + randomToken;
+        }
+        headers += "<wsa:MessageID>" + id + "</wsa:MessageID>\n";
+
+        // wsa:FaultTo (optional)
+        // Note: reference parameters and metadata aren't supported.
+        if (options['faultto'] != null)
+            headers += "<wsa:FaultTo><wsa:Address>" + options['faultto'] + "</wsa:Address></wsa:FaultTo>\n";
+
+        // wsa:Action (required)
+        headers += "<wsa:Action>" + options['action'] + "</wsa:Action>\n"
+
+        return headers;
+    },
+
+    /**
+     * @description Set scope for callbacks.
+     * @method _getRealScope
+     * @private
+     * @static
+     * @param {Function} fn
+     * @return Function
+     */
+    _getRealScope : function(fn) {
+        var scope = window;
+        if (fn._cscope) scope = fn._cscope;
+        return function() {
+            return fn.apply(scope, arguments);
+        }
+    },
+
+    /**
+     * @description Bind a function to the correct scope for callbacks
+     * @method _bind
+     * @private
+     * @static
+     * @param {Function} fn
+     * @param {Object} obj
+     * @return Function
+     */
+    _bind : function(fn, obj) {
+        fn._cscope = obj;
+        return this._getRealScope(fn);
+
+    },
+
+
+    /**
+     * @description Normalize browser-specific differences in getElementsByTagName
+     * @method _firstElement
+     * @private
+     * @static
+     * @param {dom} node
+     * @param {string} namespace
+     * @param {string} localName
+     * @return element
+     */
+    _firstElement : function (node, namespace, localName) {
+        if (node == null) return null;
+        var browser = WSRequest.util._getBrowser();
+        var doc, el;
+        if (browser == "ie" || browser == "ie7") {
+            if (node.nodeType == 9)
+                doc = node;
+            else
+                doc = node.ownerDocument;
+            doc.setProperty("SelectionNamespaces", "xmlns:soap='" + namespace + "'");
+            el = node.selectSingleNode(".//soap:" + localName);
+        } else {
+            // Some Firefox DOMs recognize namespaces ...
+            el = node.getElementsByTagNameNS(namespace, localName)[0];
+            if (el == undefined)
+            // ... and some don't.
+                el = node.getElementsByTagName(localName)[0];
+        }
+        return el;
+    },
+
+
+    /**
+     * @description Returns the name of a given DOM text node, managing browser issues
+     * @method _nameForValue
+     * @private
+     * @static
+     * @param {dom} node
+     * @return string
+     */
+    _nameForValue : function(node) {
+        var browser = WSRequest.util._getBrowser();
+        var nodeNameVal;
+
+        // IE localName property does not work, so extract from node name.
+        if (browser == "ie" || browser == "ie7") {
+            var fullName = WSRequest.util._isEmpty(node.nodeName) ? node.parentNode.nodeName : node.nodeName;
+            nodeNameVal = fullName.substring(fullName.indexOf(":") + 1, fullName.length);
+        } else {
+            nodeNameVal = WSRequest.util._isEmpty(node.localName) ? node.parentNode.localName : node.localName;
+        }
+        return nodeNameVal;
+    },
+
+
+    /**
+     * @description Determins if a node string value is null or empty, managing browser issues
+     * @method _isEmpty
+     * @private
+     * @static
+     * @param {*} value
+     * @return boolean
+     */
+    _isEmpty : function(value) {
+        // Regex for determining if a given string is empty.
+        var emptyRegEx = /^[\s]*$/;
+
+        // Short circuit if null, otherwise check for empty.
+        return (value == null || value == "#text" || emptyRegEx.test(value));
+    },
+
+
+    /**
+     * @description Returns true if the attributes of the node contain a given value.
+     * @method _attributeContain
+     * @private
+     * @static
+     * @param {dom node} node
+     * @param {string} value
+      * @return boolean
+     */
+    _attributesContain : function(node, value) {
+        var hasValue = false;
+
+        // If node has attributes...
+        if (node.attributes.length > 0) {
+            // ...cycle through them and check for the value.
+            for (var attNum = 0; attNum < node.attributes.length; attNum++) {
+                if (node.attributes[attNum].nodeValue == value) {
+                    hasValue = true;
+                    break;
+                }
+            }
+        }
+        return hasValue;
+    },
+
+
+    /**
+     * @description Appends the template string to the URI, ensuring that the two are separated by a ? or a /. Performs a
+     * merge if the start of the template is the same as the end of the URI, which will resolve at joining until a
+     * full resolution function can be developed.
+     * @method _joinUrlToLocation
+     * @private
+     * @static
+     * @param {string} endpointUri Base URI.
+     * @param {string} templateString Processed contents of the HTTPLocation option.
+     * @return string URI with the template string appended.
+     */
+    _joinUrlToLocation : function(endpointUri, templateString) {
+
+        // JS implementation of pseudo-code found at http://www.ietf.org/rfc/rfc3986.txt sec 5.2.2
+        function parse(url) {
+            var result = {"scheme" : null, "authority" : null, "path" : null, "query": null, "fragment" : null};
+
+            result.fragment = url.indexOf("#") < 0 ? null : url.substring(url.indexOf("#") + 1);
+            url = result.fragment == null ? url : url.substring(0, url.indexOf("#"));
+            result.query = url.indexOf("?") < 0 ? null : url.substring(url.indexOf("?") + 1);
+            url = result.query == null ? url : url.substring(0, url.indexOf("?"));
+            if (url.indexOf(':') > 0) {
+                result.scheme = url.substring(0, url.indexOf(":"));
+                url = url.substring(url.indexOf(":") + 1);
+            }
+            if (url.indexOf("//") == 0){
+                url = url.substring(2);
+                result.authority = url.substring(0, url.indexOf("/"));
+                result.path = url.substring(url.indexOf("/"));
+            } else result.path = url;
+            return result;
+        }
+
+        function merge(base, relative) {
+            if (base.authority != null && base.path == "") {
+                return "/" + relative.path;
+            } else {
+                if (base.path.indexOf("/") < 0) {
+                    return relative.path;
+                } else {
+                    var path = base.path.substring(0, base.path.lastIndexOf("/") + 1);
+                    return path + relative.path;
+                }
+            }
+        }
+
+        function removeDotSegments (path) {
+            var input = path;
+            var output = "";
+
+            while (input.length > 0) {
+                if (input.indexOf("../") == 0 || input.indexOf("./") == 0) {
+                    input = input.substring(input.indexOf("./"));
+                } else {
+                    if (input.indexOf("/./") == 0 || (input.indexOf("/.") == 0 && input.length == 2)) {
+                        input = input.substring(2);
+                        if (input.length == 0) input = "/";
+                    } else {
+                        if (input.indexOf("/../") == 0 || (input.indexOf("/..") == 0 && input.length == 3)) {
+                            input = input.substring(3);
+                            if (input.length == 0) input = "/";
+                            output = output.substring(0, output.lastIndexOf("/"));
+                        } else {
+                            if (input == "." || input == "..") {
+                                input="";
+                            } else {
+                                if (input.indexOf("/") == 0) {
+                                    output += "/";
+                                    input = input.substring(1);
+                                }
+                                var i = input.indexOf("/");
+                                if (i < 0) i = 10000;
+                                output += input.substring(0, i);
+                                input = input.substring(i);
+                            }
+                        }
+                    }
+                }
+            }
+            return output;
+        }
+
+        var base = parse(endpointUri);
+        var relative = parse(templateString);
+        var result = {"scheme" : null, "authority" : null, "path" : null, "query": null, "fragment" : null};
+
+        if (relative.scheme != null) {
+            result.scheme = relative.scheme;
+            result.authority = relative.authority;
+            result.path = removeDotSegments(relative.path);
+            result.query = relative.query;
+        } else {
+            if (relative.authority != null) {
+                result.authority = relative.authority;
+                result.path = removeDotSegments(relative.path);
+                result.query = relative.query;
+            } else {
+                if (relative.path == "") {
+                   result.path = base.path;
+                   if (relative.query != null) {
+                      result.query = relative.query;
+                   } else {
+                      result.query = base.query;
+                   }
+                } else {
+                   if (relative.path.indexOf("/") == 0) {
+                      result.path = removeDotSegments(relative.path);
+                   } else {
+                      result.path = merge(base, relative);
+                      result.path = removeDotSegments(result.path);
+                   }
+                   result.query = relative.query;
+                }
+                result.authority = base.authority;
+            }
+            result.scheme = base.scheme;
+        }
+        result.fragment = relative.fragment;
+
+        var resultURI = "";
+        if (result.scheme != null) resultURI += result.scheme + ":";
+        if (result.authority != null) resultURI += "//" + result.authority;
+        resultURI += result.path;
+        if (result.query != null) resultURI += "?" + result.query;
+        if (result.fragment != null) resultURI += "#" + result.fragment;
+        return resultURI;
+    },
+
+
+    /**
+     * @description Encodes a given string in either path or query parameter format.
+     * @method _encodeString
+     * @private
+     * @static
+     * @param {string} srcString String to be encoded.
+     * @param {boolean} queryParm Indicates that the string is a query parameter and not a part of the path.
+     * @return string URL encoded string.
+     */
+    _encodeString : function (srcString, queryParm) {
+        var legalInPath = "-._~!$'()*+,;=:@";
+        var legalInQuery = "-._~!$'()*+,;=:@/?";
+
+        var legal = queryParm ? legalInQuery : legalInPath;
+        var encodedString = "";
+        for (var i = 0; i < srcString.length; i++) {
+            var ch = srcString.charAt(i);
+            if ((ch >= 'a' && ch <= 'z')
+                    || (ch >= 'A' && ch <= 'Z')
+                    || (ch >= '0' && ch <= '9')
+                    || legal.indexOf(ch) > -1) {
+                encodedString += ch;
+            } else {
+                // Function encodeURIComponent will not encode ~!*()' but they are legal anyway.
+                encodedString += encodeURIComponent(ch);
+            }
+        }
+        return encodedString;
+    },
+
+
+    /**
+     * @description Convert a Date to an xs:dateTime string
+     * @method _toXSdateTime
+     * @private
+     * @static
+     * @param {Date} thisDate   Date to be serialized.
+     * @param {number} delta    Optional offset to serialize a time delta seconds in the future.
+     * @return string
+     */
+    _toXSdateTime : function (thisDate, delta) {
+        if (delta == null) delta = 0;
+
+	thisDate = new Date(thisDate.getTime() + 1000*delta);
+
+        var year = thisDate.getUTCFullYear();
+        var month = thisDate.getUTCMonth() + 1;
+        var day = thisDate.getUTCDate();
+        var hours = thisDate.getUTCHours();
+        var minutes = thisDate.getUTCMinutes();
+        var seconds = thisDate.getUTCSeconds();
+        var milliseconds = thisDate.getUTCMilliseconds();
+
+        return year + "-" +
+            (month < 10 ? "0" : "") + month + "-" +
+            (day < 10 ? "0" : "") + day + "T" +
+            (hours < 10 ? "0" : "") + hours + ":" +
+            (minutes < 10 ? "0" : "") + minutes + ":" +
+            (seconds < 10 ? "0" : "") + seconds +
+            (milliseconds == 0 ? "" : (milliseconds/1000).toString().substring(1)) + "Z";
+    }
+};
+
+

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/6b1dba58/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/breadcrumbs.js
----------------------------------------------------------------------
diff --git a/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/breadcrumbs.js b/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/breadcrumbs.js
new file mode 100644
index 0000000..aef29b1
--- /dev/null
+++ b/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/breadcrumbs.js
@@ -0,0 +1,187 @@
+//todo - this is a hack, should be assinged at runtime
+var solutionPrefix = 'ds';
+
+function setSolutionPrefix(prefix) {
+    solutionPrefix = prefix;
+}
+
+function getCookieName() {
+    return solutionPrefix + '-breadcrumb-cookie';
+}
+
+//function generateBreadcrumbs(div, currentPosition, goBackLevel) {
+function generateBreadcrumbs(div, currentPosition) {
+
+    fixForBack(currentPosition);
+    var cookieDetails = getCookieDetails();
+    var text = "<h4>";
+
+    if (cookieDetails != null) {
+        var currentLevel = parseInt(cookieDetails[0]);
+        if (currentLevel > 0) {
+            var i, back, url;
+            var info = new Array();
+            for (i = 1; i < currentLevel + 1; i++) {
+                back = "";
+                if (cookieDetails[i] != null) {
+                    info = cookieDetails[i].split(',');
+                    url = info[2];
+                    if (url.indexOf('?') != -1) {
+                        url = url.substring(0, url.indexOf('?'));
+                    }
+                    if (url.indexOf('#') != -1) {
+                        url = url.substring(0, url.indexOf('#'));
+                    }
+                    if (info[0] == 'xslt') {
+                        back = "?back=true";
+                    }
+                    text += "<a href=" + url + back + " onClick=\"javascript:deleteAdditionalEntries(" + i + ");\">" + info[1] + "</a>&#160;&gt;&#160;";
+                }
+            }
+        }
+    }
+    text += currentPosition + "</h4>";
+    div.innerHTML = text;
+    div.style.display = 'inline';
+}
+
+function prepareCancelButton(link) {
+    var cookieDetails = getCookieDetails();
+    if (cookieDetails != null) {
+        var currentLevel = parseInt(cookieDetails[0]);
+        var back = "";
+        if (currentLevel > 0) {
+            var info = new Array();
+            info = cookieDetails[currentLevel].split(',');
+            var url = info[2];
+            if (url.indexOf('?') != -1) {
+                url = url.substring(0, url.indexOf('?'));
+            }
+            if (info[0] == 'xslt') {
+                back = "?back=true";
+            }
+            link.href = url + back;
+        }
+    }
+}
+
+function fixForBack(currentPosition) {
+    var cookieDetails = getCookieDetails();
+    if (cookieDetails != null) {
+        var currentLevel = parseInt(cookieDetails[0]);
+        if (currentLevel > 0) {
+            var info = new Array();
+            var i;
+            for (i = currentLevel; i > 0; i--) {
+                info = cookieDetails[i].split(',');
+                if (info[1] == currentPosition) {
+                    deleteCurrentEntry();
+                    deleteAdditionalEntries(i);
+                }
+            }
+        }
+    }
+}
+
+function updateHistory(breadcrumbName, url, type, jsMethod) {
+    var history = new Array();
+    history[0] = type;
+    history[1] = breadcrumbName;
+    history[2] = url;
+    history[3] = jsMethod;
+    history[4] = '-+-'
+
+    var detailString = getCookie(getCookieName());
+    var level, otherPart;
+    if (detailString != null) {
+        level = parseInt(detailString.substring(0, 1)) + 1;
+        otherPart = detailString.substring(1, detailString.length) + history;
+    } else {
+        level = '1-+-';
+        otherPart = history;
+    }
+    setCookie(getCookieName(), level + otherPart);
+}
+
+function getCookieDetails() {
+    var details = getCookie(getCookieName());
+    if (details != null) {
+        var detailArray = new Array();
+        detailArray = details.split('-+-');
+        return detailArray;
+    } else {
+        return null;
+    }
+}
+
+function deleteBreadcrumbCookie() {
+    deleteCookie(getCookieName());
+}
+
+function goBack(steps) {
+    var cookieDetails = getCookieDetails();
+    var currentLevel = parseInt(cookieDetails[0]);
+    if (currentLevel >= steps) {
+        deleteAdditionalEntries(currentLevel - steps + 1);
+    }
+}
+
+function deleteAdditionalEntries(levelToGo) {
+    var cookieDetails = getCookieDetails();
+    var currentLevel = parseInt(cookieDetails[0]);
+
+    var temp = Array();
+    temp = cookieDetails[levelToGo].split(',');
+    if (temp[0] != 'xslt') {
+        levelToGo--;
+    }
+
+    if (levelToGo < currentLevel) {
+        var i;
+        cookieDetails[0] = levelToGo;
+        var newDetails = "";
+        for (i = 0; i < levelToGo + 1; i ++) {
+            newDetails += (cookieDetails[i] + '-+-');
+        }
+        setCookie(getCookieName(), newDetails);
+    }
+}
+
+function deleteCurrentEntry() {
+    var cookieDetails = getCookieDetails();
+    var currentLevel = parseInt(cookieDetails[0]);
+    cookieDetails[0] = currentLevel - 1;
+
+    var newDetails = "";
+    var i;
+    for (i = 0; i < currentLevel; i ++) {
+        newDetails += (cookieDetails[i] + '-+-');
+    }
+    setCookie(getCookieName(), newDetails);
+}
+
+function getDivToLoad() {
+    var cookieDetails = getCookieDetails();
+    var currentLevel = parseInt(cookieDetails[0]);
+    var currentPageDetails = new Array();
+    currentPageDetails = cookieDetails[currentLevel].split(',');
+    return currentPageDetails[3];
+}
+
+
+function isBack(url) {
+    var devidePoint = url.indexOf("?");
+    if (devidePoint != -1) {
+        var params = new Array();
+        params = url.substring(devidePoint + 1, url.length).split('&');
+        var i;
+        var param = new Array();
+        for (i = 0; i < params.length; i++) {
+            param = params[i].split('=');
+            if (param[0] == 'back' && param[1] == 'true') {
+                return true;
+            }
+        }
+    }
+    return false;
+}

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/6b1dba58/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/cookies.js
----------------------------------------------------------------------
diff --git a/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/cookies.js b/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/cookies.js
new file mode 100644
index 0000000..0dc4c4c
--- /dev/null
+++ b/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/cookies.js
@@ -0,0 +1,84 @@
+//******************************************************************************************//
+// File for cookie related fnctions in JavaScript											//
+// Author : 	   Manish Hatwalne (http://www.technofundo.com/)							//
+// Feedback :  	   feedback@technofundo.com		(for feedback/bugs)							//
+// Created : 	   19 August 2001  															//
+// Functions :	   	  		 																//
+// 			 (1) setCookie(szName, szValue [,szExpires] [,szPath] [,szDomain] [,szSecure])	//
+//			 (2) getCookie(szName) 		   						  			  				//
+//			 (3) deleteCookie(szName)														//
+// 			 	 																			//
+// Feel free to use/modify the code in this file, but always keep the header intact.		//
+// And DO NOT re-distribute this file, instead provide a link to the site 	   				//
+// http://www.technofundo.com/. Thank You.	  		 										//
+// 									  														//
+//******************************************************************************************//
+
+
+
+//******************************************************************************************
+//
+// A CGI program uses the following syntax to add cookie information to the HTTP header:
+//
+// Set-Cookie:   name=value
+// [;EXPIRES=dateValue]
+// [;DOMAIN=domainName]
+// [;PATH=pathName]
+// [;SECURE]
+//
+// This function sets a client-side cookie as above.  Only first 2 parameters are required
+// Rest of the parameters are optional. If no szExpires value is set, cookie is a session cookie.
+//
+// Prototype : setCookie(szName, szValue [,szExpires] [,szPath] [,szDomain] [,bSecure])
+//******************************************************************************************
+
+
+function setCookie(szName, szValue, szExpires, szDomain, bSecure)
+{
+    var path = '/';
+    var szCookieText = 	   escape(szName) + '=' + escape(szValue);
+	szCookieText +=	 	   (szExpires ? '; EXPIRES=' + szExpires.toGMTString() : '');
+	szCookieText += 	   (path ? '; PATH=' + path : '');
+	szCookieText += 	   (szDomain ? '; DOMAIN=' + szDomain : '');
+	szCookieText += 	   (bSecure ? '; SECURE' : '');
+
+	document.cookie = szCookieText;
+}
+
+//******************************************************************************************
+// This functions reads & returns the cookie value of the specified cookie (by cookie name)
+//
+// Prototype : getCookie(szName)
+//******************************************************************************************
+
+function getCookie(szName)
+{
+ 	var szValue =	  null;
+	if(document.cookie)	   //only if exists
+	{
+           var arr = 		  document.cookie.split((escape(szName) + '='));
+       	if(2 <= arr.length)
+       	{
+           	var arr2 = 	   arr[1].split(';');
+       		szValue  = 	   unescape(arr2[0]);
+       	}
+	}
+	return szValue;
+}
+
+//******************************************************************************************
+// To delete a cookie, pass name of the cookie to be deleted
+//
+// Prototype : deleteCookie(szName)
+//******************************************************************************************
+
+function deleteCookie(szName)
+{
+ 	var tmp = 	  			 	 getCookie(szName);
+	if(tmp)
+	{ setCookie(szName,tmp,(new Date(1))); }
+}
+
+//==========================================^-^==============================================//
+//    This and many more interesting and usefull scripts at http://www.technofundo.com/		 //
+//==========================================^-^==============================================//   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/6b1dba58/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/customControls.js
----------------------------------------------------------------------
diff --git a/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/customControls.js b/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/customControls.js
new file mode 100644
index 0000000..22a8a26
--- /dev/null
+++ b/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/customControls.js
@@ -0,0 +1,148 @@
+function initSections(initHidden) {
+    jQuery(document).ready(
+            function() {
+    if (initHidden == "hidden") {
+        jQuery(".togglebleTitle").next().hide();
+        jQuery(".togglebleTitle").addClass("contentHidden");
+        jQuery(".togglebleTitle").each(
+                function() {
+                    jQuery(this).html(jQuery(this).html() + '<img src="../admin/images/arrow-up.png" />');
+                }
+                );
+    } else {
+        jQuery(".togglebleTitle").next().show();
+        jQuery(".togglebleTitle").removeClass("contentHidden");
+        jQuery(".togglebleTitle").each(
+                function() {
+                    jQuery(this).html(jQuery(this).html() + '<img src="../admin/images/arrow-down.png" />');
+                }
+                );
+    }
+    jQuery(".togglebleTitle").click(
+            function() {
+                if (jQuery(this).next().is(":visible")) {
+                    jQuery(this).addClass("contentHidden");
+                    jQuery('img', this).remove();
+                    jQuery(this).html(jQuery(this).html() + '<img src="../admin/images/arrow-up.png" />');
+                } else {
+                    jQuery(this).removeClass("contentHidden");
+                    jQuery('img', this).remove();
+                    jQuery(this).html(jQuery(this).html() + '<img src="../admin/images/arrow-down.png" />');
+
+                }
+                jQuery(this).next().toggle("fast");
+            }
+            );
+         });
+}
+function createPlaceholders() {
+    var inputs = jQuery("input[type=text],input[type=email],input[type=tel],input[type=url]");
+    inputs.each(
+            function() {
+                var _this = jQuery(this);
+                this.placeholderVal = _this.attr("placeholder");
+                _this.val(this.placeholderVal);
+                if (this.placeholderVal != "") {
+                    _this.addClass("placeholderClass");
+                }
+            }
+            )
+            .bind("focus", function() {
+        var _this = jQuery(this);
+        var val = jQuery.trim(_this.val());
+        if (val == this.placeholderVal || val == "") {
+            _this.val("");
+            _this.removeClass("placeholderClass");
+        }
+    })
+            .bind("blur", function() {
+        var _this = jQuery(this);
+        var val = jQuery.trim(_this.val());
+        if (val == this.placeholderVal || val == "") {
+            _this.val(this.placeholderVal);
+            _this.addClass("placeholderClass");
+        }
+
+    });
+}
+function initMultipleSelectors(tableId) {
+    jQuery(document).ready(
+            function() {
+                var multiSelectTable = document.getElementById(tableId);
+                var leftSelect = jQuery('select', multiSelectTable)[0];
+                var rightSelect = jQuery('select', multiSelectTable)[1];
+                var toRight_btn = jQuery('input.toRight_btn', multiSelectTable)[0];
+                var toLeft_btn = jQuery('input.toLeft_btn', multiSelectTable)[0];
+
+                var addAllLink = jQuery('a.addAllLink', multiSelectTable)[0];
+                var removeAllLink = jQuery('a.removeAllLink', multiSelectTable)[0];
+
+                var transfer = function(params) {
+                    var fromElm = params.fromElm;
+                    var toElm = params.toElm;
+                    var all = params.all;
+                    
+                    var opt = fromElm.options;
+                    for (var i = 0; i < opt.length; i++) {
+                        if (opt[i].selected || all) {
+                            var newElm = document.createElement("option");
+                            newElm.value = opt[i].value;
+                            newElm.innerHTML = opt[i].innerHTML;
+                            if (opt[i].name != undefined) {
+                                newElm.value = opt[i].value;
+                            }
+                            if (opt[i].id != undefined) {
+                                newElm.id = opt[i].id;
+                            }
+                            toElm.appendChild(newElm);
+                        }
+                    }
+                    for (var i = (opt.length - 1); i >= 0; i--) {
+                        if (opt[i].selected || all) {
+                            fromElm.removeChild(opt[i]);
+                        }
+                    }
+                    sortSelect(toElm);
+                };
+                jQuery(toRight_btn).click(
+                        function() {
+                            transfer({fromElm:leftSelect, toElm:rightSelect,all:false});
+                        }
+                        );
+
+                jQuery(toLeft_btn).click(
+                        function() {
+                            transfer({fromElm:rightSelect, toElm:leftSelect,all:false});
+                        }
+                        );
+                jQuery(addAllLink).click(
+                        function() {
+                            transfer({fromElm:leftSelect, toElm:rightSelect,all:true});
+                        }
+                 );
+                jQuery(removeAllLink).click(
+                        function() {
+                            transfer({fromElm:rightSelect, toElm:leftSelect,all:true});
+                        }
+                 );
+
+
+            });
+}
+function sortSelect(selElem) {
+    var tmpAry = new Array();
+    for (var i = 0; i < selElem.options.length; i++) {
+        tmpAry[i] = new Array();
+        tmpAry[i][0] = selElem.options[i].text;
+        tmpAry[i][1] = selElem.options[i].value;
+    }
+    tmpAry.sort();
+    while (selElem.options.length > 0) {
+        selElem.options[0] = null;
+    }
+    for (var i = 0; i < tmpAry.length; i++) {
+        var op = new Option(tmpAry[i][0], tmpAry[i][1]);
+        selElem.options[i] = op;
+    }
+    return;
+}
\ No newline at end of file