Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Remote Procedure Call

Status
Not open for further replies.

taixut

Programmer
Oct 27, 2003
39
ES
Hi,

Does anybody know how to make a remote procedure call with Java?

Thanks in advance.
 
I can think on two ways:

1.- If you have an RPC native call already done in C/C++ you can invoke it from Java with JNI (Java Native Interface)

2.- If you want a pure Java solution, take a look at RMI (Remote Method Invocation)

Cheers,

Dian
 
RPC can be any protocol that allows remote machines to issue instructions or invoke methods to other remote machines. There are many implementations using Java - RMI, JMX (which can use RMI as its base protocol), XML-RPC, or can grow your own - its all up to you !

--------------------------------------------------
Free Database Connection Pooling Software
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top