.NET (Known Issues)

The following sections describe limitations that apply when using Enterprise Developer to create applications for use with .NET.

.NET Version

Enterprise Developer enables you to create COBOL applications to be deployed for use with .NET 8. Earlier versions of the .NET are not supported.

CodeDom

The .NET does not include any CodeDom support. As a result, any projects that require this feature (such as WPF build) cannot use the .NET CLI (dotnet.exe) and need to use either Visual Studio or msbuild.exe instead.

COBOL Language

A COBOL application that is to be deployed to .NET cannot include any of the following features:

  • ACUCOBOL-GT file handling
  • CBL_THREAD_KILL library routine
  • ILVERIFY(CHECK) Compiler directive option
  • JSON PARSE statement
  • LBR file support
  • Native preprocessors, including COBSQL, HMTLPP, and PREXML.
  • STOP RUN statement in secondary threads
  • XML Extensions (although the XML PARSE and XML GENERATE statements can be used)

COBOL Run-time Configuration

If you need to use an application configuration file to configure the run-time behavior of an application that will be deployed to .NET, the configuration file must be a .dll.config file instead of a .exe.config file as it would be for .NET Framework console application.

Database Access

  • If a COBOL application that is to be deployed to .NET 6 needs to use an OpenESQL CONNECT statement, it must use format 6 of the CONNECT statement. See CONNECT for more information.
  • The SQL(DBMAN=ODBC) directive cannot be used in a .NET 6 COBOL SQL program. You must use SQL(DBMAN=ADO).

Native and .NET File Handler

By default, COBOL applications in .NET projects use the native file handler for their file handling operations. In order for the native file handling functionality to be available when the project is deployed and run, when you publish a .NET project the published files include the required native run-time system and file handler. These are part of the MicroFocus.COBOL.Runtime package which includes all the Micro Focus COBOL functionality. If your application does not include the complete NuGet package, you need to add any required individual smaller packages as listed earlier.

If you will be debugging a local .NET application on Windows where the main program is not COBOL, for example the main program is C#, you must ensure that an appropriate file handler is used. Failure to do so will result in run-time system error COBRT198 ("Load failure") on the first COBOL file I/O statement.

By default, the 32-bit native version of the file handler will be available. For this to be used by your application you need to make sure the project for the main program is built to target the x86 platform.

Alternatively, to avoid any dependency on the native run-time system you can use the .NET file handler. You can switch a .NET project to use the .NET file handler rather than the native file handler by specifying the directives CALLFH(EXTFH) and CALLSORT(EXTSM) in the project.

Deploying to Azure .NET

By default, COBOL applications in .NET projects use the native file handler for their file handling operations. In order for the native file handling functionality to be available when the project is deployed and run, when you publish a .NET project the published files include the required native run-time system and file handler (as part of the MicroFocus.COBOL.Runtime package).

If you will be deploying a .NET project to an Azure .NET environment you should instead use the .NET file handler in the project to avoid dependencies that would also require the native C runtime to be deployed by the project. You can switch a .NET project to use the .NET file handler rather than the native file handler by specifying the directives CALLFH(EXTFH) and CALLSORT(EXTSM) in the project.

global.json File

Visual Studio 2022 requires that the global.json file of .NET projects for .NET 6 and later is placed at the directory level of the solution file. This is in order for the project to successfully open and build. In previous versions of Visual Studio, the file could be located in subfolders of the solution such as in the project folder.

This can affect existing .NET Core 3.1 COBOL projects that you upgrade from a prior release if the global.json file is not at the directory level of the solution file. It also affects .NET 6 COBOL projects that you add to an existing solution.

In these cases, you might receive the following error message if building from the MSBuild command line, or in the IDE Output window if the project fails to load:

"The SDK 'MicroFocus.Sdk' specified could not be found"

To work around this issue, you need to move the global.json file to the directory level of the solution file.

New .NET COBOL solutions and projects created with VS2022 create the global.json file in the required location.

Operating Systems

The following table shows the architectures and the operating systems to which you can deploy .NET-targeted COBOL applications that you have published using Enterprise Developer. The supported versions of the operating systems are the ones that Enterprise Developer supports:

Operating System Architecture
Amazon Linux 2 x64
Red Hat Enterprise Linux x64
Rocky Linux x64
SUSE Enterprise Linux x64
Ubuntu x64
Windows Client x64
x86
Windows Server x64
x86
Note:

The following operating systems are supported by .NET but cannot be used for the deployment of COBOL applications:

  • MacOS
  • Windows containers running under Docker