Hello.
Can anybody suggest a proper way to store e4x object in workflow attribute or specify it as workflow input/output parameter?
What the type should be?
When I tried "Any", workflow failed with this message: "Unable to serialize object of class : org.mozilla.javascript.xml.impl.xmlbeans.XML".
Currently I'm using string, but it's not very nice solution - I have to convert it to e4x by using "new XML(var)" in the beginning of scripting block and convert it back to string with "toXMLString()" method when I want to update an attribute.
Maybe there is a proper type to use for that?
Thank you.