Skip to content

Commit

Permalink
EXCI setup
Browse files Browse the repository at this point in the history
  • Loading branch information
UNiXMIT committed Oct 22, 2024
1 parent 5664454 commit b2767d0
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/ES/exci.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# EXEC CICS LINK Setup
1. Set the following environment variables in the 'Configuration Information' section of the region, replacing the server name and port to match your 'Web Services and J2EE' listener.
```
ES_LEGACY_ECI=Y
ES_ECI_SOCKET=serverName:9001
```
![1](../images/exci1.png)
![2](../images/exci2.png)
2. Code the call in the batch program as an EXEC CICS LINK program call.
```
EXEC CICS LINK
PROGRAM (WS-PROGRAM)
COMMAREA (WS-COMMAREA)
RETCODE (EXCI-EXEC-RETURN-CODE)
END-EXEC
```
[Documentation](https://www.microfocus.com/documentation/enterprise-developer/ed-latest/ED-VS2022/HCOMCMVIEWS003.html)
3. Compile the calling program using the following compiler directive.
```
CICSECM(EXCI=YES)
```
Binary file added docs/images/exci1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/exci2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b2767d0

Please sign in to comment.