I have service interface method declared like this
IPriceInterfaces = interface( IInvokable)
['{D330D32F-6975-4385-8808-C4A3B08CA52D}']
function updateprices(xlsx: TStream):TInterfaceresult;
My server side code works nicely (tested with postman)
Should TXdataClient support this ?
Looks like it doesn't .
lPriceMethod := xClient.Service;
ms := TMemoryStream.Create;
ms.LoadFromFile(edtExcelName.FileName);
r := lPriceMethod.updateprices(ms);