I'm trying to find a suitable development platform to implement a client side GUI to a fairly elaborate multi platform (Linux/Windows/HP-UX) server implemented in C++.
Originally, the server was a Windows Service with a COM interface. We implemented an IIS/ASP web that provided a thin client front end to our server application. We also implemented some utilities in Visual Basic to talk to the server via DCOM.
In the meantime, we have modified the server so that it also runs as a Unix daemon. We now have to address the front end issue as IIS/ASP, COM/DCOM nor Visual Basic are no longer feasible options. Alternatives that spring to mind are JSP, Java, SOAP, CORBA, multi platform GUI's like QT or a combination of these.
I'm particularly interested in QT because it is C++ and therefore, we should be able to use the same class framework on both client and server side (perhaps with the help of SOAP). Before I delve into this area in order to assess the implications of such an implementation, I'd love to hear any comments from any other QT users who have some experience with similar projects.
Many thanks in advance!