vote up 1 vote down star
1

Dear all,

I must get two different client application talk without any kind of broker or server. What is the best method for IPC beween two process, Java and .NET?

It must able to be work in multi-user termainl server, so no socket please. I wish that it is lightweight and simple, something plug and run, so no RMI/WS please.

I'm now thinking about JNI to access Mutex and Named pipes, am I going to a right direction?

Any ideas welcome!

Thanks Dennis

flag

52% accept rate

4 Answers

vote up 1 vote down check

You can access WinAPI through JNI(Java) and PInvoke(C#). Use following WinAPI functions: CreateEvent SetEvent WaitForSingleObject CreateMutex ReleaseMutex CreateFileMapping (for share memory) MapViewOfFile UnmapViewOfFile

link|flag
vote up 0 vote down

I would use protobuf.

link|flag
vote up 0 vote down

I've read protobuf documents.

The Protocol Buffer library does not include an RPC implementation.

I have to do my own implementation, or use any open-source anyway. What do you suggest?

link|flag
vote up 0 vote down

I am author of jni4net, open source interprocess bridge between JVM and CLR. It's build on top of JNI and PInvoke. No C/C++ code needed. I hope it will help you.

link|flag

Your Answer

Get an OpenID
or

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