Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am planning to use .NET Client along with a Java Server.

Are there any options / tools which help in .NET to Java connectivity apart from programming against web services.?

share|improve this question

4 Answers

up vote 1 down vote accepted

Here are a few I've seen for .NET to Java interop:

JIntegra: http://j-integra.intrinsyc.com/

JNBridge: http://www.jnbridge.com/

These seem to be pretty expansive and flexbile, but also expensive. Achieving true interop between Java and .NET can be a bit involved. If XML-based web services are an option, that might be the easiest route.

One slightly unrelated technology is IKVM.NET http://www.ikvm.net/ - this tool allows you to compile Java bytecode into .NET IL (e.g. compile a .jar into a .NET DLL), so that you can use compiled Java code "natively" with .NET. This isn't necessarily good for interop, but a cool technology none-the-less.

share|improve this answer

You can always use a socket with XML message passing. Both Java and .NET have rich abilities to marshal and unmarshal XML.

share|improve this answer

Take a look at Thrift (apache project)... It was developed at facebook, and claims:

Thrift is a software framework for scalable cross-language services development. It combines a software stack with a code generation engine to build services that work efficiently and seamlessly between C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, Smalltalk, and OCaml.

http://incubator.apache.org/thrift/

share|improve this answer
  • WebServices: preferred
  • JNBridge: see this
  • DB or Messaging: see this (could be suited for older versions, robotics etc)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.