...
Click on "Edit" button to edit data source. Service method is now displayed on screen and specify input parameters.
Additional Options
All standard SOAP headers are automatically handled by system but in some scenarios you may need set additional SOAP headers transfer information.
While invoking service after specifying request body you may give secondary object to as headers body. If service definition has matching header by name, specified value is imported to the SOAP message.
Code Block | ||
---|---|---|
| ||
var result = $Services.GlobalWeather.GlobalWeatherSoap.GetWeather({
CityName : 'Amsterdam',
CountryName : 'Netherlands',
}, {
MyHeader : 'MyHeaderValue'
}); |