Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. Deployment methods such as ISAPI, Apache and etc. you need to configure SSL in those tools using particular instructions.
  3. Today
  4. Update: It turns out that "swapping" UniGUI version of Indy with the sgcIndy is not that difficult at all. Had to make some minor changes in the uniGUI\Source\Core\*.pas files so that it uses Id**** files instead of uId**** files. As a result, our uniGUI server is now loading OpenSSL 3.0 dlls and using TLS 1.3. Of course, design properties are not updated so one cannot set the SSL method in the ServerModule property, but SSL.SSLOptions.Method can be changed at runtime.
  5. But the guide you tell me does not cover the implementation of SSL in isapi modules, perhaps for isapi applications we cannot implement SSL?
  6. Hi, You can create a unigui application (localhost:8000 for example) in which the scanner or printer is managed, as if it were a normal desktop VCL application. This application must run on the PC where the scanner is installed. In the application that runs in the browser you need to call "localhost:8000" and pass the necessary parameters and receive the desired output.
  7. Finally I solve it. Maybe its my mistake.
  8. Hello, Did you see : https://www.unigui.com/doc/online_help/index.html?ssl_configuration.htm
  9. Hello, Using the scanner from a browser requires integration with a local application or the use of specialized libraries and browser extensions.
  10. Hello, I have an application that uses a digital certificate that is installed on the computer (digital certificate from the FNMT, Spain), when I run it in CGI mode on my computer with localhost:8077, the application recognizes the certificate and in principle Everything works perfectly, but when I run it in ISAPI mode and on the IIS WEB server I am not able to call the certificate.
  11. Sorry team , I solve this problem. Simply reinstall UniGUI after intalation on DELPHI 12.1
  12. Yesterday
  13. Hi I did suggested by sarcos I and now I see this compiler error. [dcc32 Fatal Error] uniGUI29VCL.dpk(50): F2051 Unit uniXDBGrid was compiled with a different version of uniDBGrid.IUniDBGrid I can not find "uniXDBGrid.pas" where is it ? I'm with uniGUI professional edition. Please help to install frame work.
  14. Same problem with me: [dcc32 Fatal Error] uniGUI29Chartdcl.dpk(36): E2202 Required package 'uniGUI29Chart' not found during framework installation after installation of "Embarcadero® Delphi 12 Version 29.0.51961.7529 " How could I fix it.
  15. Norm

    Get data HTML

    I can work out an example for you. Can you explain what data you want to receive from the html.
  16. MVakili

    Get data HTML

    Is it my files? no I cant I download this projects from Github or web
  17. No. Without user involvement on the client side, the web browser won't grant access to the file system. Browsers are designed with security in mind to prevent unauthorized access to files on the user's computer. Therefore, any file operations on the client side must be initiated by the user, such as through file input controls on web pages.
  18. I would like to upload a file to a UniGUI application as part of the URL and the ServerModule will receive it via the OnHttpCommand event and process it. Something like, https://myapp.com?file=c:\fred\mytextfile.csv Is this possible? -- Frederick (UniGUI Complete - Professional Edition 1.95.0.1577)
  19. Hi, Does anyone have an idea on how to integrate flat bed scanner with UniGui?
  20. Чет не понятно как Вы это сделали))
  21. Sherzod

    Get data HTML

    Can you make a completed test project?
  22. Добрый день! В принципе да, я думаю, что это возможно. Вот что говориться в документации: "Multiple inputs aren't supported, you can achieve them by using html and preConfirm parameters."
  23. OK, I understand now, this is possible security problem. This get my attention now ! @Sherzod, can you help with some code ?
  24. Добрый день! SweetAlert клевый компонент, хотелось бы его использовать для ввода логина и пароля, что бы не городить собственные формы. Возможно ли в него добавить два поля для ввода? Спасибо.
  25. lets say i want to kick a specific session off my database (firebird). In a classic windows application i can just delete this sessions' attachment, which triggers the OnConnectionRecover event of firedac. In this event i can let the user choose to try to reauthorize or end the program altogether. In the latter case Application.Terminate is called, which ends the program. If the user is doing stuff at the moment, this work is interrupted by the disconnect and the program never resumes that work. In UniGUI, this does not work the same way. Since Session.Terminate does not actually end the session, the program (after setting the Session.Terminate flag in OnConnectionRecover) resumes the work it was doing before the disconnect. This is not what i want. I want the session to end immediately when i call Session.Terminate. However, the session tries to finish the work which was queued up before the disconnect. So basically this: VCL: do some work -> delete attachment -> OnConnectionRecover -> Application.Terminate -> program ends UniGUI: do some work -> delete attachment -> OnConnectionRecover -> Session.Terminate -> returns to "do some work" at the same point it left, and the session is still active. So i need a way to completely kill a session, not just set its Terminate flag.
  1. Load more activity
×
×
  • Create New...