MappingFiles Element

The MappingFiles element in the Web.config file identifies the two configuration files that the Orders System uses to process an order.

The following table lists the attributes of the MappingFiles element.

Attribute

Data Type

Description

PipelineMappingFilename

String

The name of the file that maps the member variables of the Orders runtime objects to pipeline dictionary entries. This value can also be a fully-qualified path and file name.

The default value is "OrderPipelineMappings.xml" in the current working directory.

StorageMappingFilename

String

The name of the file that maps the member variables of the PurchaseOrder object to columns in the database tables. This value can also be a fully-qualified path and file name.

The default value is "OrderObjectMappings.xml" in the current working directory.

Example

<MappingFiles 
    PipelineMappingFilename="MyOrderPipelineMappings.xml"
    StorageMappingFilename="MyOrderObjectMappings.xml"/>

See Also

Other Resources

Web.Config Configuration Settings

What Are the Orders Mapping Files?