

Json
Members-
Content Count
6 -
Joined
-
Last visited
Everything posted by Json
-
Seems like PAServerManager looking for PAServer-24.0 but Delphi 13 is shipping PAServer-37.0 Delphi 12:s PAServer is PAServer-23.0 Anyone else got this problem? Apparently And shouldn't the manager be able to handle different version of PAServers? Renaming PAServer-37.0 to PAServer-24.0 solved my issue
-
Delphi 12.3 web install - I selected Android as well as Windows but did not install Android SDK NDK
Json replied to rudy999's topic in Delphi IDE and APIs
I needed to uninstall both Eclipse OpenJDK 17 and Android SDK 25.2.5 and then reinstall them. -
unit Unit2; interface uses System.Classes; type TTestClass = class public procedure Test<T: record>; end; implementation //procedure TTestClass.Test<T: record>; //begin // [dcc32 Error] Unit2.pas(21): E2029 ',', ';' or '>' expected but ':' found //end; procedure TTestClass.Test<T>; begin end; end. Delphi 11.3 Why do I need to leave out : record in the implementation for the code to compile?
-
Trying to load a website with TWebBrowser, the site have self signed certificates which will be flagged as not safe. I am ending up with a blank page. TWebBrowser.OnDidFailLoadWithError never trigger. The blank page occur on IOS and Android. On Windows there is a warning page, (NET::ERR_CERT_AUTHORITY_INVALID) What is the best way of catching the certificate errors or even better ignore them so the page can load? The application is only talking with its own web servers so the security isn't a problem here.
-
TWebBrowser - how catch or ignore ssl and certificate errors?
Json replied to Json's topic in Cross-platform
Yes I agree with you all. The problem is customer tends to use that sort of solutions in their test environments. So at least catch the errors is needed. More code to look after but will be replacing TWebBrowser with my own TcatchSSLErrorWebBrowser. -
Delphi 12 - PAClient Error - Locating Simulator Error when Delploying
Json replied to Shano's topic in Cross-platform
Another day in the apple deploy lottery 😞 I needed to restart the mac for it to work