You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the XML-RPC Specification, if Scalar s no type is indicated, the default type is string.
Some servers omit to set the scalar type, and in this case mimic fails to materialize a valid js object.
The solution is to set the default value in the "unmarshal" function by setting:
defaults:
this.params[this.params.length] = new String(node.nodeValue);
The text was updated successfully, but these errors were encountered:
According to the XML-RPC Specification, if Scalar s no type is indicated, the default type is string.
Some servers omit to set the scalar type, and in this case mimic fails to materialize a valid js object.
The solution is to set the default value in the "unmarshal" function by setting:
defaults:
this.params[this.params.length] = new String(node.nodeValue);
The text was updated successfully, but these errors were encountered: