WsClearResultItems

Clear all key-value pairs associating the result keys and previously set target DCO variables. Call this action if you need to send a new set of result items for your next call to any web service.

Syntax

bool WsClearResultItems ()

Parameters

None.

Returns:

True, if the action succeeds. Otherwise, False.

Level

All levels.

Example

WsSetParameter("FromCurrency", "USD", false)
        WsSetParameter("ToCurrency", "GBP", false)
        WsSetResultItem("double", "@B.ConversionRate")
        WsGetvalues("http://www.webservicex.net/CurrencyConvertor.asmx/ConversionRate?", "", "", "", "", "")
        WsClearParameters()
        WsClearResultItems()
        WsSetParameter("address", "10 Downing Street, London", false)
        WsSetParameter("sensor", "false", false)
        WsSetResultItem("GeocodeResponse/result/geometry/location/lat", "@B.Latitude")
        WsSetResultItem("GeocodeResponse/result/geometry/location/lng", "@B.Longitude")
        WsGetvalues("http://maps.googleapis.com/maps/api/geocode/xml?", "", "", "", "", "")