1.1.5.2 Configuring the GWWS Servers
Each GWWS
server can be deployed with a group of
inbound WSBinding objects and a group of outbound WSBinding objects
defined in the imported WSDF files. Each WSBinding object is
referenced using attribute
“ref=<wsdf_name>:<WSBinding id>”. For
inbound WSBinding objects, each GWWS
server must
specify at least one access endpoint as an inbound endpoint from
the endpoint list in the WSBinding object. For outbound WSBinding
objects, each GWWS server can specify zero or more access endpoints
as outbound endpoints from the endpoint list in the WSBinding
object.
The following example shows how to configure GWWS servers with both inbound and outbound endpoints.
Example 1-11 GWWS Server Defined In the SALTDEPLOY File
<Deployment ..>
...
<WSGateway>
<GWInstance id="GWWS1">
<Inbound>
<Binding ref="app1:app1_binding">
<Endpoint use="simpapp_GWWS1_HTTPPort" />
<Endpoint use="simpapp_GWWS1_HTTPSPort" />
</Binding>
</Inbound>
<Outbound>
<Binding ref="app2:app2_binding">
<Endpoint use=" simpapp_GWWS1_HTTPPort" />
<Endpoint use=" simpapp_GWWS1_HTTPSPort" />
</Binding>
<Binding ref="app3:app3_binding" />
</Outbound>
</GWInstance>
</WSGateway>
...
</ Deployment>