Calling C# dll from java applications

  • Thread starter Thread starter meetranjeesh
  • Start date Start date
M

meetranjeesh

Hi,
Anybody experimented calling C# components from java applications?
I'm facing problems with the same. Any clue's are most appreciated.

Thanks in advance.
Ranjeesh
 
Anybody experimented calling C# components from java applications?
I'm facing problems with the same. Any clue's are most appreciated.

Java---(Java call)---Java wrapper---(JNI call)---unmanaged C++---(COM
call)---C# code

looks like the way to go.

You can code it yourself or find a prepackaged product
that will look like:

Java---(Java call)---X---(COM call)---C# code

but in reality does the same as the previous.

Arne
 
Thanks for all your replies. I got a sample code from codeproject where
it says the different layers that I need to create to make it happen.
Let me try...

Thanks,
Ranjeehs
 
Back
Top