mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 00:05:53 +01:00
60 lines
1.1 KiB
ObjectPascal
60 lines
1.1 KiB
ObjectPascal
unit Unit1;
|
|
|
|
interface
|
|
|
|
uses
|
|
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
|
|
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
|
|
|
|
type
|
|
TForm1 = class(TForm)
|
|
Button1: TButton;
|
|
Label1: TLabel;
|
|
Button2: TButton;
|
|
procedure Button1Click(Sender: TObject);
|
|
procedure Button2Click(Sender: TObject);
|
|
private
|
|
{ Private-Deklarationen }
|
|
public
|
|
{ Public-Deklarationen }
|
|
end;
|
|
|
|
var
|
|
Form1: TForm1;
|
|
|
|
implementation
|
|
|
|
uses
|
|
MVCFramework.RESTClient;
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
procedure TForm1.Button1Click(Sender: TObject);
|
|
var
|
|
Clt: TRestClient;
|
|
begin
|
|
Clt := MVCFramework.RESTClient.TRestClient.Create('http://localhost', 8080, nil);
|
|
try
|
|
// Clt.ProxyServer := 'localhost';
|
|
// Clt.ProxyPort := 8888;
|
|
ShowMessage(Clt.doGET('/div/10/20', []).BodyAsString);
|
|
finally
|
|
Clt.Free;
|
|
end;
|
|
end;
|
|
|
|
procedure TForm1.Button2Click(Sender: TObject);
|
|
var
|
|
Clt: TRestClient;
|
|
begin
|
|
Clt := MVCFramework.RESTClient.TRestClient.Create('http://localhost', 8080, nil);
|
|
try
|
|
ShowMessage(Clt.doPOST('/hello', [], '{"name":"Bob äöüß"}').BodyAsString);
|
|
finally
|
|
Clt.Free;
|
|
end;
|
|
end;
|
|
|
|
end.
|