EntireX Version 9.7
 —  EntireX RPC Programming  —

Introduction to RPC Programming

This document covers the following topics:


RPC Technology

A Remote Procedure Call (RPC) is a protocol that one program can use to request a service from a program located in another computer in a network without having to understand network details. (A procedure call is also sometimes known as a function call or a subroutine call.)

RPC uses the client/server model. The requesting program is a client and the service-providing program is the server. Like a regular or local procedure call, an RPC is a synchronous operation requiring the requesting program to be suspended until the results of the remote procedure are returned. However, the use of lightweight processes or threads that share the same address space allows multiple RPCs to be performed concurrently.

When program statements that use RPC are compiled into an executable program, an interface object is included in the compiled code that acts as the representative of the remote procedure code. When the program is run and the procedure call is issued, the interface object receives the request and forwards it to a client runtime program in the local computer. The client runtime program has the knowledge of how to address the remote computer and server application and sends the message across the network that requests the remote procedure. Similarly, the server includes a runtime program and interface object that interface with the remote procedure itself. Results are returned the same way.

Some examples of RPC technology are Software AG's EntireX/Natural RPC, Microsoft RPC, and DCE RPC.

Top of page

RPC-based Components

This section covers the following topics:

Introduction

The production of RPC-based components is called "wrapping" (Java Wrapper, XML/SOAP Wrapper, DCOM Wrapper, .NET Wrapper etc.). The wrapped components are perfectly embedded in their environments, for example:

graphics/rpc.png

Advantages of RPC-based Components

Connectivity Matrix

Connection Feature
Client Extraction Client Generation Server Extraction Server Generation Client Connectivity Server Connectivity
Web Service x x x x x x
XML Service x x x x x x
Java   x   x x x
.NET   x   x x x
PHP, Perl, Ruby via WSDL/XSD       x  
COBOL   x x x x x
PL/I   x x x x x
Natural x x x x x x
RPG           x
CL           x
C   x   x x x
Assembler            
WebSphere MQ   x   x x x
webMethods Integration Server   x x x x x

Top of page

Reliable RPC

In the architecture of modern e-business applications (such as SOA), loosely coupled systems are becoming more and more important. Reliable messaging is one important technology for this type of system.

Reliable RPC is the EntireX implementation of a reliable messaging system. It combines EntireX RPC technology and persistence, which is implemented with units of work (UOWs).

graphics/reliableRpc_concept.png

Top of page