On Wed, Aug 26, 2015 at 2:25 PM, Monnier, Gary <Gary.Monnier@xxxxxxxxx> wrote:
[In response to questions about the use of DDM to implement remote
program calls from one LPAR to another:]
If you require a password utilize the
ADDSVRAUTE Add Server Auth Entry
CHGSVRAUTE Change Server Auth Entry
DSPSVRAUTE Display Server Auth Entries
RMVSVRAUTE Remove Server Auth Entry
commands. If you use these command system value QRETSVRSEC must be set to '1'.
The DDM server name for these commands is QDDMSERVER.
I'm sure it works nicely once it's all configured, but if you don't
already have it configured, it feels like a very cumbersome solution
to me. Especially if you're in a situation like mine, where I don't
have *IOSYSCFG authority, or the expertise to properly administer
stuff like this; and the person who does have the authority and
expertise is completely backlogged, and who knows when he would be
able to set DDM up for me, even assuming my request is accepted by my
manager.
For communicating between LPARs, including both remote program
execution and real-time data transfer, my preferred method is RPC.
Conceptually, this is similar to Web services. Actually, depending on
who you ask, Web services are a specific form of RPC which happens to
utilize the HTTP protocol.
It will not surprise those who know me that the reason I like RPC is
that Python's standard library comes with facilities that make this
very, very easy. Ludicrously easy. With zero knowledge about sockets,
I just followed the examples in the Python documentation and had RPC
up and running in minutes.
(By "follow the examples" I just mean copy and paste straight out of
the docs for the "SimpleXMLRPCServer" class. The program that runs on
the "server" is 32 lines of code, including comments and blank lines
for readability; the "client" needs just 2 lines of code to start
communicating, and then the remaining lines in the short example
demonstrate the functions defined by the server.)
Of course I already had Python installed. If you have to install
Python from scratch, and you're not an administrator but have
authority to restore objects to production, I still recommend
iSeriesPython (instead of IBM's official Python). I think most people
can download and install iSeriesPython in less than half an hour
(probably much less).
Once you have the example up and running, you just have to modify it
to suit your needs. If you (not just OP, but anyone who is reading
this) is interested in this and needs further references, tips, or
help, just send me an e-mail.
John Y.
As an Amazon Associate we earn from qualifying purchases.