You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tablature v1.0.2 does not process <fixr:appinfo purpose="FIXML"> correctly. It creates a column "Fixml" with content /P/[fixml:FIXMLencodingType: null]/P/ in markdown. Expected behavior is that it ignores such appinfo elements. They are not needed in markdown and are only for internal purposes to create the FIXML schemas.
The text was updated successfully, but these errors were encountered:
No, appinfo is not just for internal use. It was intended that firms could extend their ROE with attributes of their own that are not predefined in Orchestra.
However, it would be possible to add a feature to suppress appinfo if desired.
I was not precise enough when i said "such appinfo elements". I meant to say "appinfo elements with purpose FIXML". It is not about suppressing all appinfo elements. Tablature still has a problem with the conversion of appinfo that contains XML snippets it seems.
The fixml element contents actually consists of 3 XML nodes.
Invoking toString() results in a call to a Java library function to output a collection as a string. For each element, it outputs the node contents with type in brackets and any attributes, which in this case are null.
Tablature v1.0.2 does not process
<fixr:appinfo purpose="FIXML">
correctly. It creates a column "Fixml" with content/P/[fixml:FIXMLencodingType: null]/P/
in markdown. Expected behavior is that it ignores such appinfo elements. They are not needed in markdown and are only for internal purposes to create the FIXML schemas.The text was updated successfully, but these errors were encountered: