Re: Communication between two computer systems (LPARS or physical)

2021-08-11 Thread Gibney, Dave
CA-ENF has supports inter-LPAR (and other platforms) communication over a variety of mechanisms. > -Original Message- > From: IBM Mainframe Discussion List On > Behalf Of Brian Westerman > Sent: Wednesday, August 11, 2021 9:34 PM > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: Re: Communicati

Re: Communication between two computer systems (LPARS or physical)

2021-08-11 Thread Brian Westerman
That's right, I think CA's ENF product (now Broadcom) does that. I think it uses TCP/ip but maybe it's VTAM or something else. Brian -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@list

Re: Communication between two computer systems (LPARS or physical)

2021-08-11 Thread kekronbekron
> However, this requires that all systems are in the same sysplex. Or... that the automation product can communicate across sysplexes through its own connector. I know of at least one product that has a few different options to communicate with other instances even outside a sysplex. Have manage

Re: DLL linkage vs static linkage

2021-08-11 Thread Frank Swarbrick
Haha, sorry for the bad assumption! I was just looking at the CSECT lengths for each entry in CSFDLL31 and they seemed to be larger than I would expect for a simple stub procedure. Frank On Wed, 11 Aug 2021 16:24:10 -0400, Eric D Rossman wrote: >To be clear: I'm the author of CSFDLL31 (as we

Re: Connecting to IMS DB in SpringBoot

2021-08-11 Thread Larry Zhang
Any insigts on this error: 2021-08-11 15:30:35.774 ERROR 12564 --- [nio-8080-exec-1] com.ibm.j2ca                             : CWYBS0497E: The Resource Bundle com.ibm.connector2.ims.ico.LogMessages using Locale en_US cannot be loaded.2021-08-11 15:30:35.780 ERROR 12564 --- [nio-8080-exec-1] co

Re: DLL linkage vs static linkage

2021-08-11 Thread Eric D Rossman
To be clear: I'm the author of CSFDLL31 (as well as much of the ICSF LE libraries). I guarantee CSFDLL31 is just stubs (they are pretty much the LE linkage equivalent to the OS linkage stubs in SCSFSTUB). The only patches (so far) have been to add new callable service entry points. I do agree w

Re: DLL linkage vs static linkage

2021-08-11 Thread Frank Swarbrick
It appears you CAN explicitly link in the actual DLL ("INCLUDE SIEALNKE(CSFDLL31)"), but I believe that to be unwise for several reasons 1) It acts as if you are simply trying to add your application to the DLL (with your new name), rather than simply utilizing the DLL. That is, your bind step

Re: DLL linkage vs static linkage

2021-08-11 Thread Eric D Rossman
I would like to point out that the stubs in SCSFSTUB use OS linkage and the entry points in CSFDLL31 use LE linkage. You should use whichever matches the linkage declared (or defaulted) for the ICSF callable services. It is never correct to specify both SCSFSTUB and an ICSF side-deck in the sa

Re: [External] Unix time zone

2021-08-11 Thread Carmen Vitullo
found it, in /etc/profile there is a execution of a script from CA agentsworks.profile  /cai/agent/agentworks.profile that sets many options, one. TZ=EST5EDT Thanks all for all your input Carmen On 8/11/2021 12:57 PM, Carmen Vitullo wrote: from what I've found so far; ISHELL starts

Re: [External] Unix time zone

2021-08-11 Thread Carmen Vitullo
from what I've found so far; ISHELL starts a shell process in the background to find out the user's TZ setting from /etc/profile and $HOME/.profile. If the TZ setting is found, this value is used when displaying file time stamps. If not found, GMT is assumed. The environment variable BPXWISHTZ

Re: [External] Unix time zone

2021-08-11 Thread Carmen Vitullo
I believe you are correct Allan, but I'm not sure where the ISHELL setting are located, I checked ISPF variables, I'm not sure where else to check Carmen On 8/11/2021 12:36 PM, Allan Staller wrote: Classification: Confidential Check you ISHELL settings. IIRC, EST5CDT is the setting distribut

Re: DLL linkage vs static linkage

2021-08-11 Thread Frank Swarbrick
I've now been successful in implementing your suggestion. Some comments follow. The following is successful for a static link. Cobol compiler options "NODYNAM NODLL" and the inclusion of SYS1.SCSFSTUB in the binder SYSLIB. //CSFLINK JOB NOTIFY=&SYSUID // JCLLIB OR

Re: [External] Unix time zone

2021-08-11 Thread Allan Staller
Classification: Confidential Check you ISHELL settings. IIRC, EST5CDT is the setting distributed by IBM. -Original Message- From: IBM Mainframe Discussion List On Behalf Of Carmen Vitullo Sent: Wednesday, August 11, 2021 11:27 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: [External] Unix

Re: DLL linkage vs static linkage

2021-08-11 Thread Frank Swarbrick
I was using SCSFMOD0 as indicated in the documentation for an earlier release: https://www.ibm.com/docs/en/zos/2.1.0?topic=cca-linking-program-icsf-callable-services It does look like more recent documentation recommends the SCSFSTUB library, as you say. https://www.ibm.com/docs/en/zos/2.4.0?topic

Re: Communication between two computer systems (LPARS or physical)

2021-08-11 Thread Lennie Dymoke-Bradshaw
Steff, Looking through the various answers here, I note that someone has mentioned the need for some kind of security, so that others cannot trigger actions they are not supposed to. I think those security issues conflict with your requirement to run synchronisation without any authorisation.

Re: [External] Unix time zone

2021-08-11 Thread Carmen Vitullo
I'm not sure my replies are being sent but this is what I've checked; I do have a .profile - there's no timezone settings /etc/profile - has TZ=CST6CDT also /etc/rc has no timezone (TZ) settings I am displaying the timezone (TZ) value from the ISHELL ECHO $TZ command Carmen -

Re: Secondary sources for DFP and DFSMS

2021-08-11 Thread Steve Smith
I think Wikipedia should consider that there are some nuances about what "primary sources" really means in relation to computing technology vs. say, historical research. Nevertheless, SHARE and other conference publications should fit in nicely. sas On Wed, Aug 11, 2021 at 10:15 AM Mark Jacobs <

Re: [External] Unix time zone

2021-08-11 Thread Pommier, Rex
Overriding it in a ".profile" ? -Original Message- From: IBM Mainframe Discussion List On Behalf Of Carmen Vitullo Sent: Wednesday, August 11, 2021 10:27 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: [External] Unix time zone I have a strange issue between my prod LPAR's and the test LPAR I

Re: EXTERNAL EMAIL: Unix time zone

2021-08-11 Thread Jerry Whitteridge
Carmen TZ can be set almost anywhere /etc/rc, /etc/profile ~/.ptrofile but the first place I'd look is in your personal .profile Jerry Whitteridge jerry.whitteri...@albertsons.com Manager Mainframe Systems & HP Non-Stop Albertsons Companies -Original Message- From: IBM Mainframe Discuss

Unix time zone

2021-08-11 Thread Carmen Vitullo
I have a strange issue between my prod LPAR's and the test LPAR I have that's been around for a while; values for TZ (time zone) my PROD LPAR shows the correct timezone values TZ=CST6CDT echo $TZ shows CST6CDT on my test LPAR an echo of TZ shows EST5EDT both LPAR's /etc/profile contains the sa

Re: Secondary sources for DFP and DFSMS

2021-08-11 Thread kekronbekron
Glenn from IBM DFSMS frequents this list, I believe. I'm sure he can point to other sources. - KB ‐‐‐ Original Message ‐‐‐ On Wednesday, August 11th, 2021 at 7:44 PM, Mark Jacobs <0224d287a4b1-dmarc-requ...@listserv.ua.edu> wrote: > Maybe Share documents/presentations will suffice.

Re: Secondary sources for DFP and DFSMS

2021-08-11 Thread Mark Jacobs
Maybe Share documents/presentations will suffice. Mark Jacobs Sent from ProtonMail, Swiss-based encrypted email. GPG Public Key - https://api.protonmail.ch/pks/lookup?op=get&search=markjac...@protonmail.com ‐‐‐ Original Message ‐‐‐ On Wednesday, August 11th, 2021 at 9:30 AM, Seymour J

Re: Secondary sources for DFP and DFSMS

2021-08-11 Thread Seymour J Metz
Yes, primary sources are the most authoritative, but wiki believes otherwise. The downside is that another editor might delete the article if I don't play their game. The best description of wiki poicy is probably

Re: Secondary sources for DFP and DFSMS

2021-08-11 Thread Pew, Curtis G
On Aug 11, 2021, at 8:30 AM, Seymour J Metz wrote: > > I'm editing the wikipedia article [[Data Facility Storage Management > Subsystem (MVS)]] and another editor has tagged it as relying too much on > primary sources, e.g., IBM announcement letters, IBM manuals. Can anybody > suggest seconda

Secondary sources for DFP and DFSMS

2021-08-11 Thread Seymour J Metz
I'm editing the wikipedia article [[Data Facility Storage Management Subsystem (MVS)]] and another editor has tagged it as relying too much on primary sources, e.g., IBM announcement letters, IBM manuals. Can anybody suggest secondary sources for the dates and features of, e.g., DFDS, DFEF, DFS

Re: Easytrieve Question (silly)

2021-08-11 Thread ste...@copper.net
I have the manuals. That is what it is. It is a sample personnel file being used to demonstrate a kind of payroll report (each lesson in the manual builds on the next for doing control breaks, summaries, etc.). Regards, Steve Thompson --- 01c91f408b9e-dmarc-requ...@listserv.ua.edu wrote:

Re: Communication between two computer systems (LPARS or physical)

2021-08-11 Thread Peter Relson
We have global data pointed to by a name-token that is available to all the address spaces in each computer system. But this is problematic since the required SVC (34) requires that the program be authorized. FWIW, the program already had to be authorized in order to obtain "global dat

Re: Easytrieve Question (silly)

2021-08-11 Thread Gadi Ben-Avi
I found the job that creates the file. Now the samples run. -Original Message- From: IBM Mainframe Discussion List On Behalf Of Richards, Robert B. (CTR) Sent: Wednesday, August 11, 2021 2:24 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Easytrieve Question (silly) After a google searc

Re: DLL linkage vs static linkage

2021-08-11 Thread Barry Lichtenstein
Hi Frank, Two things I'd check: * You've invoked the binder with the DYNAM=DLL parm * The reference(s) are dynamic (descriptors) so that they can be satisfied by the IMPORT Otherwise the binder cannot resolve them dynamically and since you now told it to not autocall... Barry On Tue, 10 Aug

Re: Easytrieve Question (silly)

2021-08-11 Thread Richards, Robert B. (CTR)
After a google search, I am inclined to say the sample meant Personnel, as in personnel file. Bob -Original Message- From: IBM Mainframe Discussion List On Behalf Of Richards, Robert B. (CTR) Sent: Wednesday, August 11, 2021 7:18 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Easytrieve

Re: Easytrieve Question (silly)

2021-08-11 Thread Richards, Robert B. (CTR)
If you can buy a few vowels, it might be PERSONAL. 😊 -Original Message- From: IBM Mainframe Discussion List On Behalf Of Gadi Ben-Avi Sent: Wednesday, August 11, 2021 7:15 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Easytrieve Question (silly) Hi, I was asked to install Easytrieve and make

Easytrieve Question (silly)

2021-08-11 Thread Gadi Ben-Avi
Hi, I was asked to install Easytrieve and make sure it works. The basic installation went fine, and I'm trying to run sample programs. Most of the sample programs mention a data file called PRSNL. Is this file part of the installation? Where would I find it. Gadi ---

Re: Communication between two computer systems (LPARS or physical)

2021-08-11 Thread Rob Scott
If this was my code, I would be using one of : (o) IXCNOTE (o) IXCSETUS with XCF groups (o) IXCSEND/RECV All the above are really easy to code and built for exactly this sort of thing. If you absolutely must use problem state code, then a couple of ideas : (o) SYSTEMS scope ISGENQ with USERDATA