XDataWeb.. componets in VCL

With WeB Core have managed to get CRUD app working fine with XData server using XDataWebConnction, XDataWebDataSet and WebDataSource components.

But when using same components with VCL app, i can't get data showing at runtime. At design-time all entries and fields show ok.

Using these to get data:

procedure TForm1.ButtonLoadDataClick(Sender: TObject);
begin
  XDataWebdataSet.Load;
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
  XdataWebConnection.Open;
end;

Found this older topic about same thing, seems that TXDataWebDataSet doesn't work with VCL.

1 Like

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.