InputEnvelope Object
Relevant for: API testing only
Description
Accesses the input property envelope for Web Service, HTTP Request, and SOAP Request activities.
Syntax
this.<activity>.InputEnvelope.<supported object/method>
Supported Objects and Methods
This object is a standard object of the XML Document class. All supported objects and methods for the XML Document class can be used with this object.
Example
var GetFlights_Input_Arrival_City = GetDataSource("WebServiceData!Input").GetValue(this.Loop2.CurrentIterationNumber-1, "ArrivalCity").ToString();
StServiceCallActivity4.InputEnvelope.SelectSingleNode("/*[local-name(.)='Envelope'][1]/*[local-name(.)='Body'][1]/*[local-name(.)='GetFlights'][1]/*[local-name(.)='ArrivalCity'][1]").InnerText = GetFlights_Input_Arrival_City;