1.5.4 REST Inbound
The steps to expose a mainframe transaction as a REST inbound service are similar to SOAP (using wscobolcvt
) as shown in Figure below. Note the following differences:
- the
wsdf
file is not required. - services are only be added to
SALTDEP
as shown in the example below:
Figure 1-3 REST Inbound

Example 1-42 SALTDEP
<Deployment xmlns="http://www.bea.com/Tuxedo/SALTDEPLOY/2007">
<WSDF>
<Import location="GWWS_conf.xml.wsdf"></Import>
</WSDF>
<WSGateway>
<GWInstance id="TuxAll">
<Inbound>
<Binding ref="TuxAll:TuxAll_Binding">
<Endpoint use="TuxAll_TuxAll_HTTPPort"></Endpoint>
</Binding>
<HTTP>
<Network http="localhost:2211" https=""/>
<Service name="MF_BANK">
<Method name="GET" reposservice="BALANCE" service="BALANCE" inputbuffer="RECORD"/>
<Method name="POST" reposservice="DEPOSIT" service="DEPOSIT" inputbuffer="RECORD"/>
</Service>
...
Parent topic: SALT Mainframe Transaction Publisher