I'm trying to use records with web services application in Delphi 32, the records defined as
TMyRec = record
Val1:integer;
Val2:string;
end;
TMyClass = class(TRemotable)
private fMyRec:TMyRec;
published
property MyRec:TMyRec read fMyRec write fMyRec;
end;
ITMyService = interface(IInvokable)
['{6283B8DA-C567-4814-906E-321729B1AE72}']
function GetMyClass(id:Integer):TMyClass;stdcall;
end;
but it doesn't exposed as on WSDL file, so is there problem when using records?
I'm using Delphi 2009