I have a Python program that needs to access a Java RMI API from a third party system in order to fetch some data.
I have no control over the third party system so it MUST be done using RMI.
What should be my approach here? I have never worked with RMI using Python so I'm kind of lost as to what I should do..
Thanks in advance!
How about a little java middle ware piece that you can talk to via REST and the piece in turn can to the remote API?