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
Today i have an error when i have html encoding into an xml ( wrong practice i know) , but the customer of my customer send us an XML with this value :
I patch this problem on an old customer by modifying the code like this:
LOCAL ReadAndInsertXmlElement(VAR XMLBuffer : Record "XML Buffer";ParentXMLBuffer : Record "XML Buffer";VAR ElementNumber : Integer;VAR InsertedXMLBufferElement : Record "XML Buffer";VAR ProcessingInstructionNumber : Integer)
XmlNodeType := XmlReader.NodeType;
IF XmlNodeType.Equals(XmlNodeType.Element) THEN BEGIN
//PRR 13/11/2024
//BEFORE
IF XmlNodeType.Equals(XmlNodeType.Element) THEN BEGIN
//AFTER
IF (XmlNodeType.Equals(XmlNodeType.Element)) OR (XmlNodeType.Equals(XmlNodeType.CDATA)) THEN BEGIN
//FIN PRR 13/11/2024
ElementNumber += 1;
ProcessXmlElement(XMLBuffer,ParentXMLBuffer,ElementNumber,InsertedXMLBufferElement)
END ELSE
...
Do you think it's possible to update the base app to have this patch ?
Best regards
The text was updated successfully, but these errors were encountered:
Hi
Today i have an error when i have html encoding into an xml ( wrong practice i know) , but the customer of my customer send us an XML with this value :
I patch this problem on an old customer by modifying the code like this:
LOCAL ReadAndInsertXmlElement(VAR XMLBuffer : Record "XML Buffer";ParentXMLBuffer : Record "XML Buffer";VAR ElementNumber : Integer;VAR InsertedXMLBufferElement : Record "XML Buffer";VAR ProcessingInstructionNumber : Integer)
XmlNodeType := XmlReader.NodeType;
IF XmlNodeType.Equals(XmlNodeType.Element) THEN BEGIN
//PRR 13/11/2024
//BEFORE
IF XmlNodeType.Equals(XmlNodeType.Element) THEN BEGIN
//AFTER
IF (XmlNodeType.Equals(XmlNodeType.Element)) OR (XmlNodeType.Equals(XmlNodeType.CDATA)) THEN BEGIN
//FIN PRR 13/11/2024
ElementNumber += 1;
ProcessXmlElement(XMLBuffer,ParentXMLBuffer,ElementNumber,InsertedXMLBufferElement)
END ELSE
...
Do you think it's possible to update the base app to have this patch ?
Best regards
The text was updated successfully, but these errors were encountered: