views:

35

answers:

1

For a company that has their stack built on Apache Tomcat and JSP what would be the best web service platform to be leveraged by that infrastructure that would be consumed by .NET client.

From the .NET side I know the answer would be Windows Communication Foundation (WCF) but I'm not sure from the other side.

+2  A: 

JAX-WS. CXF is a good implementation. JAX-WS RI as well.

These don't require an application server to run. Both can be run on tomcat (RI example)

Bozho