Standalone in XMLPort

nasijuan
Member Posts: 8
Hi:
When I create an XML file from a XMLPort (Microsoft Dynamics NAV 5.0) the first line looks like:
<?xml version="1.0" encoding="UTF-16" standalone="no"?>
anybody know how to change the 'standalone="no"' to 'standalone="yes"'?
Thanks for your help!!
When I create an XML file from a XMLPort (Microsoft Dynamics NAV 5.0) the first line looks like:
<?xml version="1.0" encoding="UTF-16" standalone="no"?>
anybody know how to change the 'standalone="no"' to 'standalone="yes"'?
Thanks for your help!!

0
Comments
-
I'm not aware of a property you can manipulate to provide such change for nav 4.0 sp3 (what I'm using) nor any other version.
So at this point what I personally can recommend is to export to a temporary blob, make any altercations you need and then export to file.
Here's a quick and crude example I can think of...{ Variable: DataType: Length: tempBlob Record TempBlob (Temporary) oStream OutStream iStream InStream xmlHeader Text 80 bText BigText } tempBlob.Blob.CREATEOUTSTREAM(oStream); tempBlob.Blob.CREATEINSTREAM(iStream); XMLPORT.EXPORT(XMLPORT::YourXMLPort,oStream); iStream.READTEXT(xmlHeader); //Retrieve first line of text; Changing pointer in Blob. IF STRPOS(xmlHeader,'<?xml') > 0 THEN BEGIN //little security check =] bText.READ(iStream); //Retrieve rest of Blob data. CLEAR(tempBlob.Blob); tempBlob.Blob.CREATEOUTSTREAM(oStream); oStream.WRITETEXT('<?xml version="1.0" encoding="UTF-16" standalone="yes"?>'); oStream.WRITETEXT(); bText.WRITE(oStream); tempBlob.Blob.EXPORT('C:\Documents And Settings\nasijuan\Desktop\my-altercate-xmlfile.xml') END;
And there ya go!0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions