Using BLOBs in XMLports

ironlucironluc Member Posts: 11
I want to use a XMLport to import/export data from a table. One field of the table is a BLOB field. The BLOB field contains a HTML file. The structure of the XML should be like following:
<Projects>
<Project>
<Field1></Field1>
<Field2></Field2>
<Field3></Field3>
<Field4></Field4>
...
<BLOBField>
<html>
...
</html>
</BLOBField>
</Project>
...
</Projects>

How can I handle this?

Regards,
Ironluc

Comments

  • DenSterDenSter Member Posts: 8,307
    It is possible to include binary data in an XML document. I do not know how to do it in NAV though, but if you can find a VB or C# sample it should be possible to do it in NAV as well.
Sign In or Register to comment.