RAD Server Samples in RAD Studio 10.2
April 7, 2017
With RAD Studio 10.2, we provide great RAD Server demo projects to get you started. With 10.2, you can deploy RAD Server to Linux servers, in addition to Windows servers. Below is a list of sample projects that highlight RAD Server’s capabilities and are designed…
Creating a Linux Daemon (service) in Delphi.
April 5, 2017
Author: Craig Chapman
With the introduction of the Linux target for Delphi, a wide range of possibilities are opened up to Delphi developers, to create Linux server applications. Unfortunately there are currently a limited number of project types available from the RAD…
10.2 Tokyo TJsonSerializer and JSON.Converters
April 4, 2017
Author: h.mohri
First declare with Pascal to use the converter and generics.
////
unit Unit2;
interface
uses
System.JSON.Converters, System.JSON.Serializers, System.Generics.Collections;
type
TListString = TList<String>;
TDictionaryStrStr = class(TDictionary<String, String>)
constructor Create; overload;
end;
TTJsonListConverterString =…
Author: h.mohri
Made a DLL with Visual C++. And I tried to use it in C++Builder. Common is 64 bits.
First I will make a VC++ side DLL.
////
extern "C" CONSOLEAPPLICATION1_API int test1(int i1)
{
///This function only increments.
++i1;
return i1;
}
extern "C"…
New FireMonkey styles for macOS and Android Wear in 10.2
March 30, 2017
In Delphi, C++Builder and RAD Studio 10.2 we are providing two new FireMonkey styles: a dark blue style for Android Wear devices and a dark graphite style for macOS.
You can access the FireMonkey styles at…
Manual uninstall of RAD Studio/Delphi/C++Builder 10.2
March 24, 2017
Author: Christopher M424
Launch the License Manager from the bin folder (by default “C:\Program Files (x86)\Embarcadero\Studio\19.0\bin\LicenseManager.exe”) and delete any trial or beta (Test Field) license that you can find. Check it under “License Details” in the center column.
Under your Control Panel’s Program and Features Add/Remove Program uninstall the…
O RAD Studio 10.2 Tokyo está pronto!
March 22, 2017
Author: Alan J52653
Hoje a Embarcadero anunciou o lançamento do Delphi, C ++ Builder e RAD Studio 10.2 Tokyo. A nova versão do produto inclui o nosso novo compilador Delphi de 64 bits para Linux!
Iniciamos 2017 falando sobre o novo compilador Linux no Delphi Academy…
Delphi for Linux is Coming
March 17, 2017
Author: cupboy
Does Linux Matter?
I’m personally going to switch my current server from Windows to Linux, and save quite some money in the process, but this is what other developers told us…
RAD Server EMS Package to get data from a remote database through a REST API call and display the data on an EMS Client application.
March 17, 2017
Author: rkondner
Embarcadero’s Enterprise Mobility Services (EMS)is a turnkey middleware solution, part of RAD Server that supports secure, encrypted communication using an industry-standard REST interface. With built-in support for users and groups, EMS is a perfect platform for exposing your custom REST endpoints to a wide range of authorized clients.
Developers will especially…