Jump to content

robinhodemorais

uniGUI Subscriber
  • Posts

    166
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by robinhodemorais

  1. good night, i'm trying to use ssl, following the guidance of the link http://unigui.com/doc/online_help/generate_a_self-signed_certifi.htm I generated the 3 files, put my .exe in this folder (I'm where testing site ) I put the libeay32.ddl and ssleay32.dll dlls (opensll version 1.0.2j) together with my .exe, in the ServerModule in SLL, I marked Enabled = true and in SSLPassword I put the password that informs the creation of the certificates, when I run http : // localhost: 8077 does not open, when I run https: // localhost: 8077 it gives It was not possible to load the SSL library, which I am doing wrong.
  2. I'm trying to use uniwebcam with self signed ssl, but it opens and everything is blank, no error
  3. Perfeito @Marlon Nardi, funcionou corretamente. Fazendo assim também, ele criou para cada campo do json um parâmetro, mas prefiro pegar em json e depois tratar no delphi, obrigado
  4. I am doing some external communications with unigui through socket.io, through the external api of socket.io is sending information in json format and when I retrieve it through ajaxevent it returns me as [object Object], how can I convert to json and read in unigui ? when I start the application I create the connection to socket.io that way on the console I retrieve the json this is my return from ajaxevent, see that on return i get [object object], how do i get that [object object] that is my json and read it?
  5. got it top.ajaxRequest(top.MainmForm.form,'senderHash', ['hash='+hash]);
  6. I have a function in javascript where I wanted to trigger the return of it to mainmForm, but I'm not getting it, how to do it? I'm trying that way function hashPagSeguro() { PagSeguroDirectPayment.onSenderHashReady(function (response) { if (response.status == 'error') { console.log(response.message); return false; } var hash = response.senderHash; ajaxRequest(MainmForm,'senderHash', ['hash='+hash]); console.log(hash); }); } but I am having this error
  7. Hello friends, it is with great happiness that I announce that today the application is running smoothly, as we can see in the image we hit 354 sessions and we had no problem with performance, of course I had a job analyzing my codes and improving, but mainly we doubled to 16gb memory, 8 processors and 1gigabite network.
  8. I need help with my application I'm having this error Project1.exe: 000015F8: 11:16:04 [201.5.88.15]: EUniSessionException: Invalid session or session timeout. (Session not found: 23_VVwFj8bixu1079F49B9): Addr: $ 00767622 the application is over 300 simultaneous accesses, but it is not taking it anymore, what can I do more with the hyperserver to improve?
  9. I'm trying to get some data from a mobile application, but the user's browser, version and operating system does not return procedure TMainmForm.UnimFormShow(Sender: TObject); var C : TUniClientInfoRec; SessionID:String; IPAddress:String; BrowserType: string; BrowserVersion: Integer; OSType: string; begin SessionID:=UniApplication.UniSession.SessionID; IPAddress:=UniApplication.RemoteAddress; C:=UniApplication.ClientInfoRec; BrowserType:=C.BrowserType; BrowserVersion:=C.BrowserVersion; OSType:=C.OSType; criaArquivoLog('Browser: '+BrowserType); criaArquivoLog('vVersaoBrowserUsuario: '+IntToStr(BrowserVersion)); criaArquivoLog('vSOUsuario: '+OSType); criaArquivoLog('SessionID: '+SessionID); criaArquivoLog('IPAddress: '+IPAddress); end; this is my return
  10. I'm having this error below when I open the webcam screen when the application is on the server, I already checked and the js files are in the right folder.
  11. Oops, I will answer in English not to change this topic to the br rs, of course there will be several needs, but so far, all the reports I need to do with this type of calculation, I will not have the need to make it dynamic, not least because if there is a way to do this in the pivotgrid, it would be easy to create a way for the user to choose a form and then assemble it, an example is to use the pivot in a report where the user selects which columns he wants to see.
  12. Thanks for the tip, I saw through the console that the file webcam.min.js is missing in the files folder, as it only has webcam.js, so I made a webcam.min.js from webcam.js and it worked. thank you.
  13. thanks, I managed to change, compile and install, but testing the demo of the WebCam, it is not listing the webCam of the notebook, what can it be?
  14. I can't install on unigui 1.90.0.1535, it gives error [dcc32 Fatal Error] UniGUIOS.dpk(31): E2202 Required package 'uniGUI25' not found
  15. build 1.90.0.1534 An example is attached when you click on the discount it shows the edit line DBGrid.rar
  16. How can I enable only the field that has the editor enabled? It is enabling all other fields in the edition and allowing to change the same defined fields or readonly = true in each field of the grid And why does the image appear in her html, as shown in the image?
  17. what I'm trying to do now is to trigger a ServerModule event in the Main form, I made several attempts and without success, is there a possibility? I believe that will end my doubt, thank you.
×
×
  • Create New...