CALL "IWC$SEND" USING iwcStructure                 GIVING returnCode  | 
iwcStructure  | Group item  | Includes the message information. It must have the following structure: 01 iwcStructure.    03 iwcAction pic x(n).    03 iwcData pic x(n).    03 iwcBytes pic x(n). iwcAction Action required to the HTML page, i.e. "change-page-title". Human-readable data, i.e. "This is the new title". iwcBytes Binary data. The iwcStructure items can be defined as X ANY LENGTH. There’s no need to fill all of them, it depends by what the HTML page expects.  | 
-1   | Operation failed. Ensure you’re running in WebClient environment and you previously successfully called the IWC$INIT routine  | 
0  | Operation successful.  | 
       working-storage section.        ...        77  data-to-send               pic x any length.        01  iwc-struct.            03 iwc-action              pic x any length.            03 iwc-data                pic x any length.            03 iwc-bytes               pic x any length.        ...        procedure division.               ...            initialize iwc-struct.            move "ComSample"  to iwc-action            move data-to-send to iwc-data            call "IWC$SEND" using iwc-struct.  |