Serializes the given object to XML.
serializeXML( objToBeSerialized, useCustomSerializer )
returns string
Name | Type | Required | Default | Description |
---|---|---|---|---|
objToBeSerialized | any | Yes | An object to be serialized. | |
useCustomSerializer | boolean | No | YES | Whether to use the custom serializer. The default value is true. The custom serializer will be always used for XML deserialization. If false, the XML/JSON deserialization will be done using the default ColdFusion behavior. If any other type is passed with useCustomSerializer as false, then TypeNotSupportedException will be thrown. |
This will serialize the object to XML using ColdFusion’s default serialization mechanism.
serializeXML({ "firstName": "John", "lastName": "Doe" })