Skip to content
QtWS25 Last Chance
  • 1 Votes
    1 Posts
    603 Views
    No one has replied
  • 0 Votes
    6 Posts
    4k Views
    JonBJ
    @PaulR I don't do any "Qt web server app", so I don't know if that has any special requirements, but just to say I do all my Qt install stuff just from the release version for Ubuntu 18.04 via apt-get (including apt-get qt5-default, plus any extras I then find I need) and never do any source/compiling. Simplez :)
  • 0 Votes
    2 Posts
    1k Views
    SGaistS
    Hi, AFAIK, no. IIRC KDevelop has some stuff already implemented for Docker, but not Qt Creator.
  • 0 Votes
    4 Posts
    2k Views
    V
    The most compatible with qt is GE Predix (https://www.predix.io/) - https://github.com/IndeemaSoftware/QPredix
  • Passing values between apps and webserver

    Unsolved QML and Qt Quick webserver cloud
    2
    0 Votes
    2 Posts
    2k Views
    LorenzL
    Hi Phils, You are mixing up some things here. Your app is split in two parts: server part (not written in qt, might be provided by a third party or written by you in a server language such as PHP) client app (qt) Thus, you won't necessarily need to upload your app to the cloud. However, you might need a webserver if you intend to host your app on your own. There are different ways to implement a web service and choosing the correct one depends on your needs. If you only want to store some simple key - value pairs on a server, a mobile backend as a service, such as the WebStorage offered by V-Play could be a solution for you. If you need very complex tasks, you might want to implement an API on your own. You might want to have a look at this tutorial. No matter what kind of API your application will use, you will most likely talk to it using JSON or XML using XMLHttpRequest.. You can find a small code snippet that shows you how to read and parse JSON from a server using XMLHttpRequest here. You can use this snippet to play around with the fake-APIs provided here. A very complete example where an API is used is the Qt World Summit 2017 app. Instead of the asset-url used here, also a http:// url could be used. Let me know what you would like to do and I can try to give you more guidance. Best, Lorenz
  • Cloud db for mobile app

    Mobile and Embedded cloud mobile
    5
    0 Votes
    5 Posts
    2k Views
    guidupasG
    OK JKSH. Thanks