× 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.



It all depends on how it was created... with binder language or not. Do
you know if that's the case?

If it was created using Binder Language, then you can create a new set of
bindings with a new signature, and the programs that aren't recompiled will
continue to use the old signature.

Example:

First you had:

STRPGMEXP SIGNATURE('v1.0')
EXPORT SYMBOL(proc1)
EXPORT SYMBOL(proc2)
ENDPGMEXP

Now you create proc3 and change your binder language to:

STRPGMEXP SIGNATURE('v2.0')
EXPORT SYMBOL(proc1)
EXPORT SYMBOL(proc2)
EXPORT SYMBOL(proc3)
ENDPGMEXP

STRPGMEXP SIGNATURE('v1.0') PGMLVL(*PRV)
EXPORT SYMBOL(proc1)
EXPORT SYMBOL(proc2)
ENDPGMEXP

Any program compiled will use the new signature, and old ones will use the
old one.

But, if you created your service program using EXPORT(*ALL) then you may
have issues and now would be a good time to learn how to use binder
language.

On Tue, Sep 20, 2022 at 8:08 AM Rich Loeber <rich@xxxxxxxxx> wrote:

I'm a newbie to service programs. If I have an existing service program
that is in use, how do I add a new module to it? Do I have to rebuild it
from scratch? If so, does that mean that I have to rebind all current
programs that are using the service program?

Rich Loeber
Kisco Systems LLC
https://www.kisco.com
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.

Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.

Help support midrange.com by shopping at amazon.com with our affiliate
link: https://amazon.midrange.com


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

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.