Skip to content

Commit 0b1a5ca

Browse files
committed
handle custom variable names
1 parent e591d04 commit 0b1a5ca

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

source/class/soap/WsdlCache.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,12 @@ qx.Class.define("soap.WsdlCache", {extend: qx.core.Object
327327
}
328328
}
329329
else {
330-
value = soap.Client.from_string(elt.type.split(":")[1], value);
330+
if (elt.type.indexOf(":") > -1) {
331+
value = soap.Client.from_string(elt.type.split(":")[1], value);
332+
}
333+
else {
334+
value = soap.Client.from_string(elt.type, value);
335+
}
331336
}
332337
elt.restrictions.values.push(value);
333338
}

0 commit comments

Comments
 (0)