[Solved]Accessing Qt Application from Lan
-
That is way too broad a definition of the problem. How do you want to access the app? Do you want to use SOAP, or RPC, plain HTML, or maybe some other beast, like custom protocol?
In any case, the a look at "QNetworkAccessManager":http://qt-project.org/doc/qt-5.0/qnetworkaccessmanager.html.
-
Welcome to the dev net.
You can start with network "examples":http://doc.qt.nokia.com/4.7-snapshot/examples-network.html..
-
Thank you for your replay.
We have developed that application with QMainWindow. We want to make the .exe file (which is in centralized system) accessible in Lan. i.e., the client should able to execute the project from his system. I don't know what type of protocol to use..
-
prabuqt: Having an application on an network share does not make it client/server:-)
-
[quote author="Andre" date="1347003641"]Ah, so you just want to dump the .exe file on the network. Then, make sure that you put all the needed libraries right next to it. See the "documentation on deploying":/doc/qt-4.8/deployment-windows.html a Qt application.[/quote]
Thank you for your replay. The problem was solved by dumping .exe file on the network. Thank you very much.