Re: Card processing application

2023-04-25 Thread rpinion865
Take a look at https://cvsystems.com/cv-payment-processing/ Sent with Proton Mail secure email. --- Original Message --- On Tuesday, April 25th, 2023 at 7:55 AM, Radoslaw Skorupka <0471ebeac275-dmarc-requ...@listserv.ua.edu> wrote: > I'm looking for card processing

Re: cyberark efforts

2023-04-25 Thread Radoslaw Skorupka
W dniu 24.04.2023 o 18:15, Bill Giannelli pisze: our company is pushing forward with cyberark for all platforms. the statement was made that cyberark and the like are becoming the industry standard. Is that true for z/OS systems? thanks Bill It is neither z/OS nor industry standard. It is

Re: interfacing C with Rexx

2023-04-25 Thread Colin Paice
If you are running on z/OS I have some C code which I call from Rexx. For example /* REXX */ *trace r v = CPQUERY("QR","P.","1+bySlG9Ug/c2TbK6o++",100,2); say v; say P.rc say P.rsn* If you contact me offline, I'll give you the C code, the glue assembler code, and the JCL to compile it

How to call zEDC functions from an HLL other than C [was: RE: Unzip on z/OS ?]

2023-04-25 Thread Farley, Peter
I submitted an RCF on the subject of examples for actually using zEDC functions from HLL's other than C not long after this message chain and received no response at all from the RCF team. A follow-up email requesting status or at least an acknowledgement that the documentation addition

Re: Card processing application

2023-04-25 Thread Phil Smith III
Radoslaw Skorupka wrote: >I'm looking for card processing application. I mean a system which >support ATMs, POS (shop terminals), customers PIN & account >verification, etc. (note, full core-banking system is not an option). >Oh, z/OS based. :-) Fiserv has the former First Data's VisionPLUS. I

Re: cyberark efforts

2023-04-25 Thread Doug Henry
They are different id's but you can use profile prefix command to set your HLQ for unquoted dataset names. Of course all cyberarks id's are defined to RACF Doug On Tue, 25 Apr 2023 11:18:19 -0500, Bill Giannelli wrote: >thank you all for the responses and information. >alot on z/OS is based

Re: cyberark efforts

2023-04-25 Thread Bill Giannelli
thank you all for the responses and information. alot on z/OS is based off of your RACF id and is used as a HLQ for alot of software. when setting up cyberark ids, are they identical to the racf id to resolve this? in our shop they want us to us completely different ids On Tue, 25 Apr 2023

Re: cyberark efforts

2023-04-25 Thread Bill Giannelli
can anyone on this thread reach out to me that has had a successful implementation of cyberark when accessing z/OS? thanks Bill On Tue, 25 Apr 2023 12:02:09 -0500, Bill Giannelli wrote: >is that a TSO command? >On Tue, 25 Apr 2023 12:01:07 -0500, Doug Henry wrote: > >>They are different id's

Re: cyberark efforts

2023-04-25 Thread Bill Giannelli
is that a TSO command? On Tue, 25 Apr 2023 12:01:07 -0500, Doug Henry wrote: >They are different id's but you can use profile prefix command to set your HLQ >for unquoted dataset names. Of course all cyberarks id's are defined to RACF > >Doug >On Tue, 25 Apr 2023 11:18:19 -0500, Bill

Re: cyberark efforts

2023-04-25 Thread Doug Henry
We use Cyberark and yes it does connect to z/OS via SSH. Doug On Mon, 24 Apr 2023 19:34:46 +, Mark Jacobs wrote: >Sorry. I have no idea how the whole thing works from an infrastructure POV. >I'm just a user, these were my observations at my $currentjob. > >Mark Jacobs > > > >> Hi, >>

interfacing C with Rexx

2023-04-25 Thread Rick Troth
hello I have a project where I want to call C from Rexx. I've done this with Regina several times. Can someone tell me how, or point to doco, or (best) lend a hand, calling C from ooRexx? danku -- R; <>< -- For IBM-MAIN

Re: interfacing C with Rexx

2023-04-25 Thread Rick Troth
good questions The library that I want to call is "just C", pretty clean, standard POSIX. My development platform is PC Linux. The package gets built and tested on other platforms as often as I can drive that, notably FreeBSD. I don't have access to USS for dev/test. (But if anyone is

Re: interfacing C with Rexx

2023-04-25 Thread Rony G. Flatscher
On 25.04.2023 14:48, Rick Troth wrote: good questions The library that I want to call is "just C", pretty clean, standard POSIX. My development platform is PC Linux. The package gets built and tested on other platforms as often as I can drive that, notably FreeBSD. I don't have access to

Card processing application

2023-04-25 Thread Radoslaw Skorupka
I'm looking for card processing application. I mean a system which support ATMs, POS (shop terminals), customers PIN & account verification, etc. (note, full core-banking system is not an option). Oh, z/OS based. :-) -- Radoslaw Skorupka Lodz, Poland

Re: interfacing C with Rexx

2023-04-25 Thread Dave Jones
Dear Mr. Troth. It is not hard at all, at least in the Linux environment. Drop me a note off list and I can get you started straight-away. DJ -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to

Re: interfacing C with Rexx

2023-04-25 Thread Seymour J Metz
What are you trying to do, on what platform? In many cases, calling a command, main program or subroutine just requires using the ADDRESS statement with an appropriate environment. If you want the program to access Rexx variables, or to return a value to REXX, then you need a bit more

Re: XLC architecture level question

2023-04-25 Thread Charles Mills
ARCH level is a "problem" I have dealt with for 12 or so years. I say "problem" in quotes because it is not much of a problem -- you only have to revisit it once every two years, and even then it is not an urgent problem. So you don't need a solution that runs on autopilot -- you can just

Re: interfacing C with Rexx

2023-04-25 Thread Jeremy Nicoll
On Tue, 25 Apr 2023, at 13:29, Rick Troth wrote: > hello > > I have a project where I want to call C from Rexx. > I've done this with Regina several times. Can someone tell me how, or > point to doco, or (best) lend a hand, calling C from ooRexx? Do you have ooREXX running on a mainframe? Which

Unlike data sets concatenation

2023-04-25 Thread Pierre Fichaud
I'm trying to read a concatenation of unlike data sets using QSAM. The first dataset is VBS with LRECL=200,BLKSIZE=1000 The second dataset is VBS with LRECL=230,BLKSZIE= 1150. I've coded a DCB OPEN exit that sets a re-read flag. I've also got a SYNAD exit and DCBEROPT has X'80'. I read the 1st

Re: How to call zEDC functions from an HLL other than C [was: RE: Unzip on z/OS ?]

2023-04-25 Thread Farley, Peter
To be more clear: I am asking for examples of non-C-language un-authorized HLL calls to the "zlib" un-authorized functions and a list of any COPY/INCLUDE members necessary to accomplish those calls, not the zEDC authorized functions nor the hardware-level DFLTCC instruction. Peter

JES2 $SUBMIT Command

2023-04-25 Thread Mark Jacobs
Just wondering if anyone has implemented it and what use cases did you come up with. Mark Jacobs Sent from [ProtonMail](https://protonmail.com), Swiss-based encrypted email. GPG Public Key - https://api.protonmail.ch/pks/lookup?op=get=markjac...@protonmail.com

Re: JES2 $SUBMIT Command

2023-04-25 Thread Paul Gilmartin
On Tue, 25 Apr 2023 19:04:41 +, Mark Jacobs wrote: >Just wondering if anyone has implemented it and what use cases did you come up >with. > Curious, I did a search and found: ...SUBMITLIB ... The

Re: XLC architecture level question

2023-04-25 Thread Charles Mills
Setting ARCH is like playing Blackjack or Twenty-one: guess too low and it is sub-optimal; guess too high and you bust. Note that everything we have said here about ARCH and TUNE applies equally to COBOL as to C/C++. Of course if you are writing programs for in-house use your universe of

Re: Unlike data sets concatenation

2023-04-25 Thread Paul Gilmartin
On Tue, 25 Apr 2023 15:00:12 -0500, Pierre Fichaud wrote: >I'm trying to read a concatenation of unlike data sets using QSAM. >The first dataset is VBS with LRECL=200,BLKSIZE=1000 >The second dataset is VBS with LRECL=230,BLKSZIE= 1150. > Why not simply override in your DD/Allocation to

Re: Card processing application

2023-04-25 Thread Graham Harris
https://www.lookupmainframesoftware.com/soft_detail/dispsoft/162 On Tue, 25 Apr 2023 at 13:01, rpinion865 < 042a019916dd-dmarc-requ...@listserv.ua.edu> wrote: > Take a look at > > https://cvsystems.com/cv-payment-processing/ > > > > > Sent with Proton Mail secure email. > > --- Original

Re: XLC architecture level question

2023-04-25 Thread Farley, Peter
SWAG, so I won't be surprised to be dead wrong: As an INCLUDE in the SYSIN to the binder with an ENTRY statement naming the CSECT you include. Your inserted code then has to branch to the "real" main entry point for C++, whatever that may be (I've not written or run any C++ on z/OS so I can’t

Re: Unlike data sets concatenation

2023-04-25 Thread Tony Harminc
On Tue, 25 Apr 2023 at 16:00, Pierre Fichaud wrote: > [...] > Also the section in DFSHS;Using Data Sets on "Concatenating Unlike Data > Sets" mentions the DCBE but doesn't say that it is required. > I don't have one. Is a DCBE necessary for this technique ? > I think it's unlikely, because

Re: Unlike data sets concatenation

2023-04-25 Thread Seymour J Metz
I take it that you're setting DCBOFLGS,DCBOFPPC in the OPEN exit. I'm a bit confused about setting the reread flag before reading the first record of the first data set; won't that cause you to skip the record inappropriately? Did you do a SYNADAF? What did it return? What was the DCB at the

Re: interfacing C with Rexx

2023-04-25 Thread David Crayford
On 25/4/23 20:48, Rick Troth wrote: good questions The library that I want to call is "just C", pretty clean, standard POSIX. My development platform is PC Linux. The package gets built and tested on other platforms as often as I can drive that, notably FreeBSD. I don't have access to USS

IKJPARS PCL/Parameters

2023-04-25 Thread Joseph Reichman
Hi I have a PCL defined as such LISTAPCL IKJPARM ADDR1 IKJIDENT 'ADDRESS..',RANGE,UPPERCASE,MAXLNTH=17,FIRST=ANY,OTHER=AX NY,VALIDCK=LSTVALAD What I would like it to be is

Re: XLC architecture level question

2023-04-25 Thread David Crayford
On 26/4/23 05:26, Charles Mills wrote: Setting ARCH is like playing Blackjack or Twenty-one: guess too low and it is sub-optimal; guess too high and you bust. We have products that build using multiple ARCH options and dynamically load code for the target architecture at runtime. Here's

Re: Card processing application

2023-04-25 Thread Frank Swarbrick
I've been working with the CV Systems card system (as a client) for over 20 years, if you have any questions. -Original Message- From: IBM Mainframe Discussion List On Behalf Of rpinion865 Sent: Tuesday, April 25, 2023 6:01 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Card processing

Re: IBM RCF Documentation email address?

2023-04-25 Thread Linda Chui
On Mon, 24 Apr 2023 16:41:38 +0100, Colin Paice wrote: >mhvr...@us.ibm.com is the right address for z/OS products.They are not >very good at replying or acknowledging. >Colin > >On Mon, 24 Apr 2023 at 16:31, Farley, Peter < >031df298a9da-dmarc-requ...@listserv.ua.edu> wrote: > >> Is