In choosing a service-oriented architecture framework that needs to work with .NET and with Java, what to look for?

Posted by cm007 on Programmers See other posts from Programmers or by cm007
Published on 2012-10-29T21:39:32Z Indexed on 2012/10/29 23:19 UTC
Read the original article Hit count: 136

Filed under:

I planning to write an application in which there will be a service (call it A) listening for particular commands. This service will then relay those commands to other services (call them B and C) which are written, respectively, in .NET and Java (service A chooses which of service B or C to which to relay depending on the contents of the request to service A).

I am looking for a framework that will allow for interoperability with both .NET and with Java, for example WCF or JAX-WS, or writing a custom framework (e.g., JSON REST commands over HTTP, similar to http://code.google.com/p/selenium/wiki/JsonWireProtocol).

What questions/aspects should I consider in deciding?

© Programmers or respective owner

Related posts about soa