Test Namespace::BuildBaseRequest

The BuildBaseRequest method accepts as input parameters the MPS Namespace and the MPS Procedure that you intend to call. The BuildBaseRequest method then returns an XML document object that represents the basic structure of an MPF request. You will also need to provide additional nodes in the request to place the input data properly within the <data/> node.

Arguments

Input argument Required Description

NamespaceToCall

Yes

The name of the MPS namespace to call.

ProcedureToCall

Yes

The name of the MPS procedure to call.

Remarks

No remarks.

Sample Code

Example XML Request

<request> 
    <data/> 
    <procedure> 
        <execute namespace="Test Namespace" procedure="Write Request"> 
        <before source="data" destination="executeData" mode="insert"/> 
        <after source="executeData" destination="data" mode="merge"/> 
        </execute> 
    </procedure> 
</request> 

Example XML Response

No example XML response.

Applies To

for:

  • Hosted Messaging and Collaboration version 4.5

  • Hosted Messaging and Collaboration version 4.0

  • Hosted Messaging and Collaboration version 3.5

  • Hosted Messaging and Collaboration version 3.0

  • Windows-based Hosting version 4.5

  • Windows-based Hosting version 4.0

  • Windows-based Hosting version 3.5

  • Windows-based Hosting for Applications version 1.0

See also

Tasks

Test Namespace::SubmitRequest