While a PC-Pipes is not integrated with any Rexx that runs on a PC , you
should be able to do it
indirectly invoke a pipe from Rexx. Let Rexx invoke a Powershell session:

           'Powershell  path\scriptname'
                 or if in current directory
           'Powershell .\scriptname'

Where "scriptname" is the script that defines the pipe to be executed.

The draw backs to this approach are:
1) Any input data generated by the Rexx script, for use by the Pipe,
will have to be written to a file.
2) Any output data generated by the Pipe, for use by Rexx , will also
have to written to a file.
3) Each invoked pipe will have to load and start a Powershell session.
4) You can't invoke a Callpipe or Addpipe. Any Call or Add pipes invoke
by the Powershell
     script are ok.

Reply via email to