%xsd.hexBinary
datatype class %xsd.hexBinary extends %Library.Binary
ODBC Type: VARBINARY
This data type is used to represent binary data that will be encoded using the hex encoding for XML serialization. Internally, this is stored as a string containing a binary value.When a %Binary data type value is projected to a client application, such as when it is used in a Java, Visual Basic (ActiveX), ODBC, or JDBC application, the Object Server performs no translations or conversions on it. That is, the actual binary data is sent to and from the client without any Unicode (or other) translations.
Method Inventory
Parameters
parameter MAXLEN;
There is no length restriction for %xsd binary types.
parameter XSDTYPE = hexBinary;
Declares the XSD type used when projecting XML schemas.
Methods
classmethod JSONToLogical(%val As %String) as %xsd.hexBinary
Converts the JSON base64 input value to a logical value.
classmethod LogicalToJSON(%val As %xsd.hexBinary) as %String
Converts the %Binary value to JSON base64 encoded value.
classmethod LogicalToXSD(%val As %xsd.hexBinary) as %String
Converts the %Binary value to the SOAP base64 encoded value.
classmethod XSDToLogical(%val As %String) as %xsd.hexBinary
Converts the SOAP encoded base64 input value to a logical value.