Hello, we are using the TMS BIZ components, specifically the HTTP Client.
You had created a module that connected and worked correctly, working with Delphi 10.4.
The question is that we bought the TMS ALL-ACCESS subscription and updated the BIZ Sparkle components. Unfortunately we have deleted the installer of the previous version and now we get Undeclared identifier error for the following properties:
-
CreateRequest
-
Uri
-
Method and several more, in particular this is part of the code that gives us error.
=================
RespB := nil;
ReqB := FClient.CreateRequest;
try
ReqB.Uri := UrlToken.Text;
ReqB.Method := 'POST';
vUsuario.Lines.LoadFromFile('C:\Etimodule\DHL_Usuario.json');
ReqB.SetContent(TEncoding.UTF8.GetBytes(vUsuario.Lines.Text));
ReqB.Headers.SetValue('content-type', 'application/json');
RespB := FClient.Send(ReqB);
FillResponse(RespB);
Application.ProcessMessages;
ReqB.Free;
RespB.Free;
Except
Beep;ShowMessage('ATENCIÓN, NO HA SIDO POSIBLE SOLICITAR AUTORIZACIÓN DE ACCESO AL WEBSERVICE DE DHL' + CHR(13) + '----------------------------------------------------------------------------------' + CHR(13) + 'POR FAVOR CONTACTE CON EL DPTO. DE OYS '); exit; end;
=======
It is as if these components do not have these properties now.
Please let me know what the problem may be.
It is very urgent.
Thank you.