Hi,
I have defined service function in the service contract like this:
function getOrder(launcher: string; taskcount: Integer = 2000): TJSONArray;
with taskcount default value 2000
When I call the function only with first param like this
Response := Await(dmDataModule.xdtwbclntClientXData.RawInvokeAsync('IWEBService.getOrder', ['test1']));
I get an error "Missing value for parameter taskcount"
Why ?
The taskcount parameter has default value 2000.