c++ - WCF service with Qt? -
I want my Qt application to expose a service. Is there any help in Qt to implement WCF services?
There is no 'native' QT support for AFAIK WCF or extension; However, as you know, WCF can consume a web service (other than WCF or Remoting Service etc.) and expose it, what you have to do to expose it as a web service to another NAT app Need
But it brings an interesting aspect; Normally you will write a Windows service (I think you are on Windows) which has come up as QT one web service instead of one. Qt is not ideal because it is a GUI framework (and very good); You will be involved in some interesting situations, as is usually easier to consume a web service with Qt.
Do you have the option to use some other stacks like ASP.Net or WCF or Java?
Comments
Post a Comment