The server program can be developed on any platform that supports Java™. For example, an NT workstation, AIX® or the UNIX System Services environment of z/OS®. The following steps are required:
idlj [options] <idl file>
Where <idl
file> is the name of the file containing the IDL definitions,
and [options] is any combination of the following options,
which may appear in any order. <idl file> is required
and must appear last. At least -f must be specified. idlj -v -fall myidl.idl
If
you are using a version of the IDL compiler from Java 1.4, you must also specify
the -oldImplBase option to ensure that a CICS-compatible implementation
is generated. If you do not use this option, the generated implementation
will use the Portable Object Adapter (POA), which is not supported in CICS.
For example: idlj -v -fall -oldImplBase myidl.idl
public class _BankAccountImpl extends _BankAccountImplBase
Your implementation class may make use of the JCICS API to interact with traditional CICS services.