Jump to content

robinhodemorais

uniGUI Subscriber
  • Posts

    166
  • Joined

  • Last visited

  • Days Won

    4

Posts 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 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

    image.thumb.png.2fe82ae52f12abb16ae55c37e3f00be0.png

    on the console I retrieve the json

    image.thumb.png.84ecae4cabdb1ff0bb2dd337c76cd8be.png

    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?

    Quote

    Ajax=1
    IsEvent=1
    Obj=O9EB
    Evt=pushWhats
    return=[object Object]
    _S_ID=lK3d6bJKt910810F6F3
    _seq_=17

     

  3. 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

     

    image.png.749e39539eb821050e9d56893a68f024.png

  4. 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.

     

    photo4961229462662392183.jpg.b84dbf430729c0b34614bedf03243e38.jpg

    • Like 2
  5. 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?

    • Like 1
  6. 
     

    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

     

    Quote

    Browser: 
    vVersaoBrowserUsuario: 0
    vSOUsuario: 
    SessionID: yU2E8P8xUK1079AB450
    IPAddress: 127.0.0.1
     

     

  7. 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.

  8. On 4/11/2020 at 9:46 PM, Hayri ASLAN said:

    UniWebcam and UniVideoPanel.

     

    UniVideoPanel is a web video player built from the ground up for an HTML5 world. It supports HTML5 video and modern streaming formats, as well as YouTube, Vimeo, and even Flash.

    Screenshot_37.thumb.png.f84745788478e4a5f7a6aaaaa3b60e81.png

     

    UniWebCam : HTML5 Webcam Image Capture Library with Flash Fallback

    NOTE: YOU HAVE TO USE HTTPS TO WORK WITH CAMERAS.

    Screenshot_38.png.82c23599bbeb8d9158ff9eed8ef60e9c.png

     

     

    UniGUIOpenSource.zip

    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

×
×
  • Create New...