<request> element

SOAP/AM Server Development > Service Definition File Reference > Schema Reference >

<request> element

Previous pageReturn to chapter overviewNext page

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.

 

Children must appear in the order shown.

 

parents

method

children

initializers[0:1] mappings[0:1]

Attributes

attribute name

data type

usage

default value

description

 

type

xsd:NCName

required

 

The name of a <type>, defined in <types>, that describes the server request interprocess message.

Remarks

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>