Save a blob to an Outstream

hbink
Member Posts: 5
Hi,
I like to save a file or blob field to an Outstream. How can I do that without reading every single character? I want to save a file witch I stored in a blob field to an Outstream the same way as you can do with an XML document.
XMLFileL.OPEN(FileNameG);
XMLFileL.CREATEINSTREAM(InStreamL);
IF ISCLEAR(XMLDocumentLAut) THEN
CREATE(XMLDocumentLAut);
XMLDocumentLAut.load(InStreamL);
// some code…
XMLDocumentLAut.save(OutStreamL);
This solutions works only with XML files in combination with the 'Microsoft XML, v4.0’ Automation Control.
I like to do the same with a normal file. The following code works ok but it reads every single character of the file. You can use TableTempLRec.Picture.EXPORT to write the file to a destination on disk but not to an Outstream?!
Vars:
TableTempLRec Rec Company Information
C char
FileL.OPEN(FileNameG);
TableTempLRec.Picture.IMPORT(FileNameG);
// some code…
TableTempLRec.CALCFIELDS(Picture);
TableTempLRec.Picture.CREATEINSTREAM(InStreamL);
WHILE NOT InStreamL.EOS DO BEGIN
InStreamL.READ(c);
OutStreamL.WRITE(c);
END;
I have to use an Outstream because I want to place the file in a MS Message Queue (MSMQ).
Thanks i.a. for advice!
I like to save a file or blob field to an Outstream. How can I do that without reading every single character? I want to save a file witch I stored in a blob field to an Outstream the same way as you can do with an XML document.
XMLFileL.OPEN(FileNameG);
XMLFileL.CREATEINSTREAM(InStreamL);
IF ISCLEAR(XMLDocumentLAut) THEN
CREATE(XMLDocumentLAut);
XMLDocumentLAut.load(InStreamL);
// some code…
XMLDocumentLAut.save(OutStreamL);
This solutions works only with XML files in combination with the 'Microsoft XML, v4.0’ Automation Control.
I like to do the same with a normal file. The following code works ok but it reads every single character of the file. You can use TableTempLRec.Picture.EXPORT to write the file to a destination on disk but not to an Outstream?!
Vars:
TableTempLRec Rec Company Information
C char
FileL.OPEN(FileNameG);
TableTempLRec.Picture.IMPORT(FileNameG);
// some code…
TableTempLRec.CALCFIELDS(Picture);
TableTempLRec.Picture.CREATEINSTREAM(InStreamL);
WHILE NOT InStreamL.EOS DO BEGIN
InStreamL.READ(c);
OutStreamL.WRITE(c);
END;
I have to use an Outstream because I want to place the file in a MS Message Queue (MSMQ).
Thanks i.a. for advice!
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