void displayTextFile( fileName, mimeType ) |
CONFIGURATION SECTION. REPOSITORY. CLASS WEB-AREA AS "com.iscobol.rts.HTTPHandler" . ... WORKING-STORAGE SECTION. 01 the-file pic x any length. 77 mime-type pic x any length. ... LINKAGE SECTION. 01 LNK-AREA OBJECT REFERENCE WEB-AREA. PROCEDURE DIVISION USING LNK-AREA. MAIN. move "/opt/website/files/TOS.txt" to the-file. move "text/plain" to mime-type. LNK-AREA:>displayTextFile(the-file, mime-type). |