Jump to content

MikeMon

Members
  • Content Count

    147
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by MikeMon

  1. Hi I have an issue with loading a local image in a local HTML file on iOS. On Android it loads correctly. Here is the code I use to get the file including its path: FileName:= 'Image.jpg'; FileName:= TPath.Combine(TPath.GetDocumentsPath, FileName); I checked and the file exists. The image in the local HTML file is assigned as: <img alt="Nov" src="file://the filename above"> I also checked with starting the source with "file:///". It STILL doesn't work on iOS but does on Android. Any ideas?
  2. I found a solution by embedding the image as a base64 encoded string and it's working fine on iOS.
  3. Hi Has anyone faced a similar issue?
  4. MikeMon

    XCode 12 compile error

    Actually, I think this has to do with Firebase using Kastri. with SDK 13.7 it was working fine.
  5. MikeMon

    XCode 12 compile error

    After applying the patch, and adding the iOS Device 64-bit SDK 14.2, I'm getting the following error: [DCC Error] E2597 ld: warning: dwarf DW_FORM_strp (offset=0xFFFFFFDC) is too big in c:\program files (x86)\embarcadero\studio\20.0\lib\iOSDevice64\Release\libibtogo.a(ail.o). Switch to 13.7, everything's fine.
  6. Hi I use Interbase XE3. How can I give access to a user to see ONLY the metadata of the tables and fields he/she has privileges for. Currently, he/she can see the metadata of the whole database. Kindly, advise
  7. MikeMon

    Interbase Metadata View User Privileges

    @Sriram& @Dany Marmur Thank you for your input. Dany, allow me to disagree with you in the sense that you are assuming that firstly, I want to HIDE the metadata, and secondly, that what's important in terms of protection is just the data and NOT the metadata. What I really want is to show the metadata of ONLY the tables or views that I've given a user a view access to; which should be the default behavior in my opinion. Only the database owner and the sysdba should have full access to view all the metadata by default. To give you an example, I've created a view and given view access to a user to just view the data in that view, but that user can connect to the database, let's say with IBConsole, and view the metadata of the whole database. In this way, they can use the metadata for their own use, e.g. set up their own database. For me this is a no-brainer. Why would I give a view access to a user for a single view, but be OK for that user to see my database's whole metadata?
  8. It IS connected with older Windows versions which use TLS 1.1 or below. But as long as Postman works on those older Windows versions, there should be a solution with TRESTClient. Would you share the Quality Central issue link for me to follow up as well?
  9. No solution yet. A solution has to be found because, like I said, other software, e.g. Postman, work fine.
  10. I've already added the registry values. No luck. It is very weird that the Postman is working. Obviously, it is overriding the default protocols.
  11. I checked the site using https://www.ssllabs.com/ssltest. It uses TLS1.2. In the handshake simulation, IE11 / Win7 and IE11 / Win8.1 return with "Server sent fatal alert; handshake_failure" message. Just FYI, as I wrote above, the problem is on a Windows Server 2012 R2. On my Windows 10 computer, it's working properly. Moreover, on the same Windows Server 2012 R2, the Postman software is working fine.
  12. Disabling TLS v1.2 on Postman is producing the same error. Disabling all other options and leaving only TLS v1.2 is working fine on Postman. So, I disabled the TLS13 in the TRESTCLient.SecurityProtocols, but I'm getting the same error. BTW, this is on a Windows Server 2012 R2 (which was working correctly until 2 days ago). On my Windows 10 computer, it's working properly.
  13. Hi I'm using Delphi 10.3.3. I have a problem with TLabels on Android. There are horizontal or vertical lines on some letters in the TLabel. As you can see on the attached image, the "d", "y" and "A" of the label "Cloudy Apple Juice" have lines on them. So do the "h", "O", "u", "c" and "e" of the label "Fresh Orange Juice". I'm using Java JDK version 1.8.0_261. I don't know if this has anything to do with it, but lately I had to uninstall the JDK (of which I don't remember what the version was) and reinstall it (version 1.80._261). Has anyone encountered this before? And what is the default version installed by Delphi 10.3.3.
  14. MikeMon

    Andoid TLabels Have Lines on the Letters

    Hi Alexander Thank you for your input. That's weird because this just started happening lately with the latest app we are developing.
  15. MikeMon

    Andoid TLabels Have Lines on the Letters

    Anyone has any ideas?
  16. MikeMon

    Andoid TLabels Have Lines on the Letters

    On all devices. Most of the times.
  17. Hi I'm using Delphi 10.3.3. I have a problem with TLabels on Android. There are horizontal or vertical lines on some letters in the TLabel. As you can see on the attached image, the "d", "y" and "A" of the label "Cloudy Apple Juice" have lines on them. So do the "h", "O", "u", "c" and "e" of the label "Fresh Orange Juice". I'm using Java JDK version 1.8.0_261. I don't know if this has anything to do with it, but lately I had to uninstall the JDK (of which I don't remember what the version was) and reinstall it (version 1.80._261). Has anyone encountered this before?
  18. MikeMon

    ZXing Delphi for 10.4

    Hi Does anyone know if ZXing Delphi is compatible with Delphi 10.4? or is there a version for Delphi 10.4?
  19. MikeMon

    ZXing Delphi for 10.4

    After some testing, I found out the following: The advancedTestApp is crashing on Android and not compiling on iOS using Delphi 10.4. The reason is that the FMX.Media.Android.pas and FMX.Media.AVFoundation.pas (and maybe the FastUtils.pas) provided by ZXing Delphi are not compatible with Delphi 10.4. AdvancedTestApp works just fine with the original files coming with Delphi 10.4. But unfortunately, by using the originals, the app is VERY slow both on iOS and Android. Any third party camera controls recommended for Firemonkey (Android and iOS) except winsoft?
  20. MikeMon

    ZXing Delphi for 10.4

    Camera is true and the AccessCameraPermissionRequestResult IS in the main thread. The error on 10.3.3 is on Android ONLY.
  21. MikeMon

    ZXing Delphi for 10.4

    1.) Thank you for your valuable help. I will check the iOS code above. Just FYI, the Android version is not working, either. When running the advancedTestApp, though it IS asking for permission and I'm choosing yes, the minute I'm using the "Scan off/on" button, the app is freezing. 2.) In addition to the above, I'm getting the following error on some Android devices and using Delphi 10.3.3, Assertion failure (FastUtils.pas, line 172), which is Assert((ASrcHeight and 3) = 0); Any ideas?
×