Table of Contents Previous Next PDF


Oracle SALT Deployment File Reference

Oracle SALT Deployment File Reference
 
The following sections provide SALT Deployment File reference information:
Overview
The Oracle SALT Deployment File (SALTDEPLOY) is an XML-based file used to define Oracle SALT GWWS server deployment information on a per Tuxedo machine basis. SALTDEPLOY does the following:
specifies how many GWWS servers are deployed on a Tuxedo machine
SALTDEPLOY also provides a system section to configure global resources (for example certificates, plug-in load libraries, and so on).
Oracle SALT SALTDEPLOY Format
Figure B‑1 shows a graphical representation of the Oracle SALT SALTDEPLOY format.
Figure B‑1 SALT Deployment File Format
XML Schema
An XML Schema is associated with an Oracle SALT Deployment File. The XML Schema file that describes the Oracle SALT Deployment File format is located in the following directory: $TUXDIR/udataobj/salt/saltdep.xsd.
Oracle SALT SALTDEPLOY Example
Listing B‑1 shows a sample SALT Deployment File.
Listing B‑1 SALT Deployment File Example
<Deployment xmlns="http://www.bea.com/Tuxedo/SALTDEPLOY/2007">
<WSDF>
<Import location="/home/myapp/bankapp.wsdf" />
<Import location="/home/myapp/amazon.wsdf" />
</WSDF>
<WSGateway>
<GWInstance id="GW1">
<Inbound>
<Binding ref="bankapp:bankapp_binding">
<Endpoint use="http1"/>
<Endpoint use="https1" />
</Binding>
</Inbound>
<Outbound>
<Binding ref="amazon:default_binding"/>
</Outbound>
<Properties>
<Property
name="socksAddrList"
value="proxy.server.com,10.123.10.10:1080"/>
</Properties>
</GWInstance>
</WSGateway>
<System>
<Certificate>
<PrivateKey>/home/user/cert.pem</PrivateKey>
</Certificate>
<Plugin>
<Interface library="/home/user/mydatahandler.so" />
</Plugin>
</System>
</Deployment>
 
Oracle SALT SALTDEPLOY Element Description
SALTDEPLOYF format elements and their attributes are listed and described in the following section.
<Deployment>
The SALTDEPLOY file root element.
There is no attribute for this element.
Three sections must be defined within the <Deployment> element:
<WSDF> elements
<WSGateway> element
<System> element.
There can be only one <Deployment> element defined in a SALTDEPLOY file.
<WSDF>
Top element that encapsulates all imported WSDF files.
There is no attribute for this element.
<Import>
Specifies the WSDF to be imported in the SALTDEPLOY file. Multiple WSDF can be imported at the same time. Each WSDF file can only be imported once. Multiple WSDF with the same WSDF name cannot be imported in the same SALTDEPLOY file.
 
Specifies the WSDF local file path.
<WSGateway>
Top element that encapsulates all GWWS instance definitions.
There is no attribute for this element.
<GWInstance>
Specifies a single GWWS instance.
 
<Inbound>
Specifies inbound WSBinding objects for the GWWS server. Each inbound WSBinding object is specified using the <Binding> sub element.
There is no attribute for this element.
<Outbound>
Specifies outbound WSBinding objects for the GWWS server. Each outbound WSBinding object is specified using the <Binding> sub element.
There is no attribute for this element.
<Binding>
Specifies a concrete WSBinding object as either an inbound or outbound binding, depending on the parent element.
 
<WSDF_name>:<WSBinding_id>
Note:
For TCP/IP addresses, one of the following formats is used as shown in Table B‑4.
 
For more information, see TMUSEIPV6 in the TUXENV(5) environment variable listing found in the Tuxedo 10g R3 Reference Guide, Section 5 - File Formats, Data Descriptions, MIBs, and System Processes Reference.
<Endpoint>
Specifies a single WSBinding objects endpoint reference.
If the referenced endpoint is specified as an inbound endpoint, the GWWS server creates the corresponding HTTP and/or HTTPS listen endpoint. At least one inbound endpoint must be specified for one inbound WSBinding object.
If the referenced endpoint is specified as an outbound endpoint, the GWWS server creates HTTP and/or HTTPS connections per SOAP requests for the outbound WSBinding object.
If an outbound endpoint is not specified for the outbound WSBinding object, the first 10 endpoints (at most) are auto-selected.
The referenced endpoint must already be defined in the WSDF.
 
Note:
<WSAddressing>
Specifies if Web Service Addressing is enabled for the outbound WSBinding object.
If this element is present, by default all SOAP messages are sent out with a Web Service Addressing message header. The sub element <Endpoint> must be specified for the listen endpoint address if this element is present.
There is no attribute for this element.
<Endpoint>
Specifies the WS-Addressing listen endpoint address for the referenced outbound WSBinding object.
 
"http(s)://<host>:<port>/<context_path>"
<TLogDevice>
One attribute "location" describes the location of the Transaction file. This is required if WS-TX transaction support is required.
<TLogName>
One attribute "id" describes the name of the transaction log inside a Transaction file. This is required if WS-TX transaction support is required.
<WSATEndpoint>
One attribute "address" describes the WS-AT protocol end point.
<MaxTran>
One attribute "value" describes the maximum number of concurrent WS-TX transactions allowed. This is bounded by Oracle Tuxedo MAXGTT.
<Properties>
Top element that encapsulates all GWWS server property settings using the <Property> sub element.
 
Value: String type containing a list of proxy server URLs.
For example: proxy.server1.com,10.123.1.1:1080.
<Property>
Specifies one GWWS property.
 
Specifies the property name. Table B‑9 lists all the GWWS server properties.
 
Enables the GWWS server to deny the HTTP requests when the content length is larger than the property setting. If not specified, the GWWS server does not check for it. The string value can be one of the following three formats:
2.
Float number in kilobytes. The suffix must be ‘K’. For instance, 10.4K, 40K, etc.
3.
Float number in megabytes. The suffix must be ‘M’. For instance, 100M, 20.6M, etc.
Note:
This value defines the maximum possible threads that may be spawned in the GWWS server. When the GWWS server is running, the actual spawned threads may be less than this value.
The valid values are “true”, “false”.
The valid values are “true”, “false”.
<System>
Specifies global settings, including certificate information, plug-in interfaces.
<Certificate>
Specifies global certificate information using sub elements <PrivateKey>, <VerifyClient>, <TrustedCert> and <CertPath>.
There is no attribute for this element.
<PrivateKey>
Specifies the PEM format private key file. The key file path is specified as the text value for this element. The server certificate is also stored in this private key file. The value of this element may contain a maximum of 256 characters (excluding the terminating NULL character).
This element is mandatory if the parent <Certificate> element is configured.
<VerifyClient>
Specifies if Web service clients are required to send a certificate via HTTP over SSL connections. The valid element values are "true" and "false".
This element is optional. If not specified, the default value is "false".
<TrustedCert>
Specifies the file name of the trusted PEM format certificate files. The value of this element may contain a maximum of 256 characters (excluding the terminating NULL character).
This element is optional.
<CertPath>
Specifies the local directory where the trusted certificates are located. The value of this element may contain a maximum of 256 characters (excluding the terminating NULL character).
This element is optional.
Note:
If <VerifyClient> is set to “true”, or if WS-Addressing is used with SSL, trusted certificates must be stored in the directory setting with this element.
<Plugin>
Specifies the global plug-in load library information. Each <Interface> sub element specifies one plug-in library to be loaded.
There is no attribute for this element.
<Interface>
Specifies one particular plug-in interface or a plug-in library for all plug-in interfaces inside the library.
 
Mandatory. Specifies a local shared library file path. This attribute value may contain a maximum of 256 characters (excluding the terminating NULL character).
Optional. Specifies a particular string value that is passed to the library when initialized by the GWWS server at boot time. This attribute value may contain a maximum of 256 characters (excluding the terminating NULL character).
Note:

Copyright © 1994, 2017, Oracle and/or its affiliates. All rights reserved.