tags:

views:

30

answers:

1

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):

  1. google's protocol buffers
  2. facebook's thrift
  3. CORBA
  4. and a gazillion of others...
Zoran Regvart
Yep, SOAP will do the work. Glad to know that Qt has SOAP support. Thanks for the tips.
Tong Wang
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