<request>
This element identifies the server request interprocess message and its type. Use initializers and mappings to determine how the contents of the interprocess message is populated
parents | |
---|---|
children | <initializers>[0:1] <mappings>[0:1] |
Attributes
Attribute | Data Type | Usage | Default Value | Description |
---|---|---|---|---|
type | xsd:NCName | required | none | The name of a <type>, defined in <types>, that describes the server request interprocess message. |
Example
This example populates the server request interprocess message defined by the <type> MyServerRequest from three different sources: an initializer, a mapped header and a mapped parameter.
<request type="MyServerRequest">
<initializers>
<initializer element="RequestCode" value="3" />
</initializers>
<mappings>
<mapping element="RequestInfo/ServerContext" name="ContextHeader"/>
<mapping element="RequestInfo/CustomerId" name="CustomerIdParameter"/>
</mappings>
</request>