Method SetRequestXmlNamespace
Sets XML NamespaceUsage
Function SetRequestXmlNamespace(
String Prefix,
String Ns
)
Parameters
Prefix
Type: String
The Prefix of the XML Namespace
Ns
Type: String
The new Namespace to set
Returns
No return value
Example
VBScript
Server("API Server").Method("CreateBooks").SetRequestXmlNamespace "a", "http://schemas.microsoft.com/Serialization/Arrays"
JavaScript
Server("API Server").Method("CreateBooks").SetRequestXmlNamespace("a", "http://schemas.microsoft.com/Serialization/Arrays");