Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. server - client
    Log in to post

    • UNSOLVED Qt 5.12.3 QtWebEngine + QWebPage + SSL: verify server cert on client side (picture inside)
      QtWebEngine • qtwebengine ssl server - client certificate qwebpage • • forca  

      2
      0
      Votes
      2
      Posts
      1012
      Views

      @forca maybe you need to do some additional steps From QSslSocket documentation: Describes the peer verification modes for QSslSocket. The default mode is AutoVerifyPeer, which selects an appropriate mode depending on the socket's QSocket::SslMode. QSslSocket::QueryPeer 1 QSslSocket will request a certificate from the peer, but does not require this certificate to be valid. This is useful when you want to display peer certificate details to the user without affecting the actual SSL handshake. This mode is the default for servers. Note: In Schannel this value acts the same as VerifyNone. And looking at this QWebEnginePage browser example, check the Downloading Favicons code snippet, which may help you accessing the underlying QSslSocket
    • UNSOLVED Ethernet communication (RPI and PC) in Qt
      Mobile and Embedded • server - client raspberry pi3 windows desktop ethernet in qt • • bublee_jessie  

      7
      1
      Votes
      7
      Posts
      782
      Views

      @bublee_jessie And what is the problem? On the server side check the client IP which is trying to connect and only accept connection if correct IP and not connected yet.
    • SOLVED HTTP
      General and Desktop • server - client post http get • • Pranit Patil  

      13
      0
      Votes
      13
      Posts
      2653
      Views

      @Prince_0912 Thank you for your guidlines
    • SOLVED Need Help with getting a slot executed in the correct thread
      General and Desktop • qtcpsocket network qtcpserver server - client qthreadpool • • Curtwagner1984  

      8
      0
      Votes
      8
      Posts
      2085
      Views

      @VRonin said in Need Help with getting a slot executed in the correct thread: the default implementation of QThread::run starts an event loop so if you use the method described in that link everything will work out of the box Indeed it does! Thanks!
    • UNSOLVED run fortune Client Example on Amazon AWS Server
      General and Desktop • qtcpsocket qtcpserver server server - client • • Allerknappe  

      3
      0
      Votes
      3
      Posts
      757
      Views

      @Allerknappe should your question better suited for AWS support team? or cloud forum? It seems not related to Qt itself. Anyway, from little experience with a (non Qt) REST server running in AWS, in that case the server was configured with "internal" IP and then the AWS security team forwarded the proper port(s) so the solution could be available from outside.
    • UNSOLVED Dynamically loading C++ components
      General and Desktop • c++ qtquick server - client security isolation • • romsharkov  

      21
      1
      Votes
      21
      Posts
      7681
      Views

      @ganeshkbhat Allowing to load and run 3rd C++ inside your main applications's process is very dangerous and we have not found any easy way to sandbox C++ so far, only just have a few ideas worth trying. I've described this issue here in a little more detail.
    • SOLVED Server with model-, view-clients & authentication
      General and Desktop • qthread server - client mongodb authentication qt networking • • danyright  

      6
      0
      Votes
      6
      Posts
      3265
      Views

      Frankly, I forgot about it. Then it also depends also on what tools fits best your needs. There's no silver bullet that will cover everything you need. Also limiting yourself to only one language is not a good idea in the long run. There are good and bad things in every language thus knowing more than one allows to have a better grasp at what can be done, how easy/hard the maintenance would be etc.
    • UNSOLVED SSL Client/Server Handshake
      General and Desktop • ssl server - client client handshake • • marlenet15  

      4
      0
      Votes
      4
      Posts
      5336
      Views

      The handshake is the process that establishes the secure connection, in Qt QSslSocket::connectToHostEncrypted and QSslSocket::startServerEncryption take care of the handshake. The "Hello Word" sent across is just normal TCP communication that could be done even without encryption (i.e. using QTcpSocket)
    • SOLVED Create Server-Client Application
      General and Desktop • windows application server - client • • M4RZB4Ni  

      2
      0
      Votes
      2
      Posts
      696
      Views

      How about the Fortune example? Cheers.
    • UNSOLVED Pass data between QWidgets
      General and Desktop • c++ server - client send • • mandruk1331  

      9
      0
      Votes
      9
      Posts
      1681
      Views

      @mrjj Com_Network is my own class which I use for Communication between Client and Server. Ok, I will give it a try.
    • UNSOLVED Remote object sharing (OO RPC)
      General and Desktop • network serialization server - client network socket rpc • • Hamed.Masafi  

      3
      1
      Votes
      3
      Posts
      2141
      Views

      @SGaist Hi, However is in my plan.
    • [solved] Server - client communication over LAN
      General and Desktop • server - client lan • • catalin1122  

      10
      0
      Votes
      10
      Posts
      3020
      Views

      Yes, that's a standard approach that has worked quiet well already for a long time :-)