Previous in Contents Next in Contents

MicroPipe.Execute Method

The Execute method runs the pipeline component specified by the SetComponent method, applying its actions to the specified object.

Execute returns a Long result containing one of the following values:

Syntax

MicroPipe.Execute(Object, PipeContext, Reserved)

Parameters

Object
The data object to be processed by the components in the pipeline. For an OPP, Object is usually an initialized OrderForm. For a Commerce Interchange Pipeline (CIP), Object is a transport dictionary used to store various properties during the execution of the pipeline.
PipeContext
The PipeContext object is a Dictionary object that references a group of initialized objects containing information needed by the pipeline.
Reserved
This value is not used and must be set to zero (0).

Remarks

The way in which you call the MicroPipe object from a page depends on the pipeline component. Each pipeline component has a private way to set its component configuration from the component's administrative property pages. The two most common ways are:

Other pipeline components may have different methods for providing input to the component. The MicroPipe supports all methods of setting the configuration of a pipeline component.

After the script has used the MicroPipe object, it must release the object, using the following script:

set MicroPipe = nothing

© 1997-2000 Microsoft Corporation. All rights reserved.