The ixlclink command lets you invoke the OS/400 Create Program (CRTPGM) and Create Service Program (CRTSRVPGM) commands from a personal computer workstation. Command parameters are passed by ixlclink to the OS/400 CRTPGM or CRTSRVPGM programs, which in turn bind modules residing on an iSeries system into an ILE program or service program.
You must install the CODE component of IBM WebSphere Development Studio Client for iSeries if you want to use the ixlclink command from the command line of a Windows client.
Examples of ixlclink Usage
It is equivalent to issuing the following CL command:
CRTPGM PGM(usr/simple) module(usr/simplec) text('simple c program' )
option( *gen *nodupproc)
is equivalent to issuing the following CL command:
CRTSRVPGM SRVPGM(usr/simple) bnddir(temp/a temp/b) module(usr/simplec)
text('simple service program' ) option( *gen *nodupproc)
"-qbnddir=temp/a temp/b"
is seen by CL as:
bnddir(temp/a temp/b)
-qtext='*blank'
is seen by CL as:
-qtext=*blank
"-qtext='simple c'"
is seen by CL as:
text('simple c')
For more information on creating programs or service programs, see Creating a Program and Creating a Service Program in WebSphere Development Studio: ILE C/C++ Programmer's Guide, SC09-2712-05.
(C) Copyright IBM Corporation 1992, 2006. All Rights Reserved.