Hello,
I have a simple xml file (in a MAP):
<?xml version="1.0" encoding="UTF-8" ?> Texto true 11,5And I need to convert to a document with the same structure, but with definied types:
field1 - string
field2 - boolean
field3 - float
So, I create a document with that structure with these properties:
field1 = Data type String
field2 = Data type Object and java wrapper type java.lang.Boolean
field3 = Data type Object and java wrapper type java.lang.Float
And make this flow steps:
pub.xml:xmlStringToXMLNode
pub.xml:xmlNodeToDocument → in this step I had modified the properties:
documentTypeName : with my fully qualified name of the document type
but the document has all 3 values in string format…
it’s possible to convert values with these steps? If so, what’s I’m doing wrong?
Thank you for helping me!