Is there any integration library/framework available? If not, what would be the best way to achieve this integration? Thanks in advance.
+2
A:
There are numerous integration options, but a thing that might be most suitable from a QT standpoint could be SOAP or REST. Both are supported in spring via spring-ws, or spring-mvc respectively. Another integration protocol that you might consider, but for one that I could not find direct QT support is hessinan, that has C++ client library.
Dig into remoting chapter of the spring manual, to find a common ground.
Other than that there are the usual suspects (not spring or QT related):
- google's protocol buffers
- facebook's thrift
- CORBA
- and a gazillion of others...
Zoran Regvart
2010-01-09 19:01:18
Yep, SOAP will do the work. Glad to know that Qt has SOAP support. Thanks for the tips.
Tong Wang
2010-01-09 19:07:54
Be sure to checkout CXF (http://cxf.apache.org/) on the Java side for a very easy to configure / spring enabled SOAP stack.
Zoran Regvart
2010-01-09 19:12:59