I'm working on a project that uses an RFID reader, which only works with a library in C#. The thing is I'd really like to work with Java (develop the rest of the program, GUI, etc), and use the C# program just to ask the reader to read the information and return a string to the Java program.

So, is there a way I could do this?

Thanks in advance.

link|improve this question
Possible duplicate of: stackoverflow.com/questions/468198/… – kubal5003 Nov 4 '11 at 23:42
feedback

3 Answers

One way to approach this is to look at it as a problem of interprocess communication. There are a bunch of options (assuming Java has access to the necessary Windows API's which I'm assuming it does, but I'm not really a Java dev).

Named Pipes, TCP/IP, Filesystem, Mailslots, etc.

Here's a good article on some options: http://msdn.microsoft.com/en-us/library/windows/desktop/aa365574(v=vs.85).aspx

Another option, which I don't know enough to speak about, is trying to load a .Net library into your java process.

link|improve this answer
Thanks for the tips. The one i found most usable, among those which you listed, were the Named Pipes. Though, would it be an issue that the processes are in different computers? And as far as I read, there are no flow control protocols in it, are there? – Patrick Toy Nov 6 '11 at 15:51
feedback

If you don't mind delving too deep you could use the Java Native Interface to generate code to marshall calls from Java to C# and back again. You'd need to build a "bridge" in c/c++ (c++ is generally slightly easier).

This way you get in-process communication, which is the fastest way to work :-)

link|improve this answer
feedback

Couldn't you use sockets? They both do support it, but I never tried to do it between different languages.
Good luck.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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