You enable Language Environment (LE) support by using either the INITCALL"MFLEINIT" Compiler directive, or by adding a call
to MFLEINIT in your code. The method used depends on how you intend to use the support.
Enterprise Server (Excluding JCL)
For all other applications running in
Enterprise Server, set the environment variable
ES_LE370_SUPPORT=Y.
Managed COBOL
The Language Environment utilities are available in managed COBOL (DOTNET) applications. For verifiable code applications
(ILVERIFY) reference the 'MicroFocus.SEE.LE370.Safe' assembly in your application. For non-verifiable applications (ILGEN)
reference the assembly 'MicroFocus.SEE.LE370' in your application.
To add the assembly to your application:
- In the Solution Explorer.
- You can either:
- Right-click your project.
- Click
Add Reference.
- Or:
- Right-click
References in your project.
- Click
Add Reference.
This opens the
Add Reference dialog box.
- Click
.
- Check the required assembly.
- Click
OK.
In your COBOL program insert a call to MFLEINIT to load the LE support.
Managed JVM
The Language Environment utilities are also available in managed code applications. To use them, include the
mfle370.jar file on the classpath.
- On Windows:
- For 32-bit environments use the
mfle370.jar file located at
%ProgramFiles(x86)%\Micro Focus\Visual COBOL\bin.
- For 64-bit environments you must use a 64-bit JVM. The
mfle370.jar file is located at
%ProgramFiles(x86)%\Micro Focus\Visual COBOL\bin64.
- On UNIX:
- For 32-bit environments use the
mfle370.jar file located at
/lib.
- For 64-bit environments you must use a 64-bit JVM. The
mfle370_64.jar file is located at
/lib.
In your JVM COBOL program, include the Compiler option ILUSING"com.microfocus.le370". For a Java program include the statement
import com.microfocus.le370.*;.