× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of Aaron Bartell
Sent: Friday, October 19, 2007 2:06 PM
To: 'RPG programming on the AS400 / iSeries'
Subject: RE: Objects and such

To "simulate" either, you need IF/WHEN.

If I understand what you mean by IF/WHEN, I am not so sure
you DO need them to have dynamic invocation of a service
programs sub procedure. The reason I say this is because I
have done it! :-) You can use system API's to "activate" and
"bind" to a service program sub proc at runtime. I use this
approach to dispatch web service requests to the appropriate
"handler". I use the SOAPAction HTTP request header to chain
to a PF and retrive the service program and sub proc to call.


I think the IF/WHEN is there...you're just letting the DB do it for you ;)

The point is the programer has to explictly decide which function to call ahead of time given certain
input

---Overriding in RPG---
I also had a customer this week that wanted me to modify one
of my API's, and being that I couldn't get the mod made,
tested and released in time for their needs I started looking
for alternatives and stumbled across "overriding" in RPGILE.
I didn't know I could override in RPG, but it works as I
expect it (see below). I have an API named MOD_subProc that
is exported out of a *SRVPGM named 'MOD'. I wanted to
massage data before it made it to MOD_subProc, and normally
that wouldn't be a big deal, but in this case MOD_subProc was
called A LOT in this particular program. So I needed a way
to "intercept" the call, and the below does just that :-)
Maybe this would more be "super" inheritance, being that the
external MOD_subProc is being intercepted locally and then
"inherits" whatever processing was done? Yeah, I know that
is streathcing the terms a bit ;-)


H dftactgrp(*no) bnddir('MYBND')

/copy proto

/free

MOD_subProc('parm');
*inlr = *on;

/end-free



P MOD_subProc b
D MOD_subProc pi
D pValue 30a const varying

D MOD_subProcExt pr extproc('MOD_SUBPROC')
D pValue 30a const varying
/free

pValue = pValue + 'something';

// Now call the external version of MOD_subProc
MOD_subProcExt(pValue);

/end-free
P e


Cool, but I think your stretching to call this override or inheritence. <grin>


Charles


This e-mail transmission contains information that is intended to be confidential and privileged. If you receive this e-mail and you are not a named addressee you are hereby notified that you are not authorized to read, print, retain, copy or disseminate this communication without the consent of the sender and that doing so is prohibited and may be unlawful. Please reply to the message immediately by informing the sender that the message was misdirected. After replying, please delete and otherwise erase it and any attachments from your computer system. Your assistance in correcting this error is appreciated.


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.