Re: FW: RMM Question

2022-10-08 Thread jan De Decker
On 6/10/2022 19:07, Steve Beaver wrote: Does anyone in the group have the following Redbook on their PC or Laptop SG24-4998-01, Converting to Removable Media Manager: A Practical Guide I migth have it on a backup. Any idea of the date? Best regards. j@n.

System REXX AXRCMD not returning all the output of a display command

2014-12-06 Thread jan de decker
Hi list, I have a problem with AXRCMD returning not all the lines of a JES2 display command. A system rexx is coded as follows: rc = axrcmd('$DPROCLIB','proclib.',5) if rc 0 then do say 'axrcmd $DPROCLIB returned non-zero return code:' rc return(rc) end say

Tracing the name of executed Rexx execs

2014-08-15 Thread jan de decker
Hi list, A big clean-up is planned at our site and I was asked to deliver a list of executed rexx execs, preferably with the jobname (or TSO user) and the dataset where the rexx resides. I tried different things but the only result sofar is: I modified IRXTSPARMS and IRXPARMS MODNAME_TIRXEXEC

REGION size IEFUSI question

2014-08-12 Thread jan de decker
Hi list, A client asked me to revise an old IEFUSI exit. Part of the logic flow is: If REGION=x is coded in the JCL and x 16M or x = 0M then do add 96K to REGION limit below Q1: Why 96K? end else do Take the region size below from LDASIZA substract LDAHIAL substract 384K Q2: Why 384K

Validation of a resource name

2014-03-05 Thread jan de decker
Hi list, I am building a small web application that interfaces with RACF. On the client side I only have the IBM default supplied classes. I want validate as much as possible on the client before sending it to the server. For the moment I have the following checks: - For all classes, never

Validation of a resource name,

2014-03-05 Thread jan de decker
Hi list, Thanks to all who responded. The purpose of the Javascript is to give as much feed-back to the user as possible before sending it to zOS, who will repeat the validations and a lot more for the dynamic CDT and ICHRRCDE user defined classes. Uppercase ALPHANUM is not checked because

Compiled rexx fails on readfile

2014-01-31 Thread jan de decker
Hi list, I have a problem with a compiled simple rexx program (seee output below). I searched but could find no explanation for the rc(1) of the readfile command. The purpose is to implement this as a CGI program but for the moment it even fails the same way from the OMVS command line. The

Re: Compiled rexx fails on readfile

2014-01-31 Thread jan de decker
de decker jan.je...@gmail.com wrote: Hi list, I have a problem with a compiled simple rexx program (seee output below). I searched but could find no explanation for the rc(1) of the readfile command. The purpose is to implement this as a CGI program but for the moment it even

Re: Compiled rexx fails on readfile

2014-01-31 Thread jan de decker
V On Fri, Jan 31, 2014 at 4:11 PM, John McKown john.archie.mck...@gmail.comwrote: On Fri, Jan 31, 2014 at 8:41 AM, jan de decker jan.je...@gmail.com wrote: Hi list, John, thanks for the suggestions but the first one gives me a n rc of -1, the second one gives an rc of 127

Compiled rexx program runs native in OMVS but not as CGI

2014-01-29 Thread jan de decker
Hi list, I am trying to set up a zOS HTTP server that uses compiled Rexx programs as CGI. Example: A Rexx program runs as CGI when interpreted After compilation with the REXXOEC procedure it runs when directly invoked from within OMVS When itrying to invoke the same compiled program from HTML

zOS server REXX CGI problem

2013-12-28 Thread jan de decker
Hi list, I corrected the errors that Steve found but to no avail. The structure of the file system on the HTTP server is /jedsp/web/pub underneath are directories for cgi, css and images The HTML is beneath /jedsp/web/pub The link is pppa href=../cgi/getenv.rexxEnvironment/a/p In

zOS server REXX CGI problem

2013-12-27 Thread jan de decker
Hi all, I installed a HTTP server on zOS and sofar as HTML is concerned all goes well but I cannot manage to get a REXX CGI program to do something. The brower (Firefox) keeps showing connecting. In the http.conf file I defined: Exec CGI/* /jeds.web/cgi/* The Rexx program is in

zOS server REXX CGI problem

2013-12-27 Thread jan de decker
Hi all, Thanks for the suggestions. I implemented them all. Now I get IMW0254E Error 404IMW0229E The file was not found, even after searching on any extensions to the file name. The file does not exist or is read-protected.

NFS mount problem between zOS and Linux

2013-12-26 Thread jan de decker
Hi all First of all a happy good year. I can not mount a zOS NFS directory from my Linux machine. I searched the web and tried the command examples from the IBM manual but every variation failed. From the Linux machine I can do a showattr of the zOS server if I only supply the zOS host name.

NFS mount problem between zOS and Linux

2013-12-26 Thread jan de decker
Hi all, Thanks Mark for your quick reply. The message after the mount command is the mount help information. JEDSP is a MVS FLQ I changed the EXPORTS dsn to include /hfs/jedsp/web WEB and removed the old jedsp entries. but to avail. I am running Ubuntu 12.04 kernel 3.2.0.57 Can somebody

NFS mount problem between zOS and Linux

2013-12-26 Thread jan de decker
Hi all, Mark, I agree that maybe it is a bad practice to touch the root system but in my case the zOS has a /jedsp/web directory because I did not want the pollute the default install directories Underneath /jedsp/web there are directories for pub, cgi, css images. The zOS HTTP server has no

NFS mount problem between zOS and Linux

2013-12-26 Thread jan de decker
Hi all, The mount command I tried last, after several variartions was the example from the IBM manual: mount -t nfs4 -o sec=sys proto=tcp Catweazle-zOS/hfs/jedsp/web /jedsp/web There are no error messages in the zOS log nor in the NFSS STC Hope somebody can help. Thanks j@n

Re: Parameter list changes between calling and called program

2013-03-18 Thread jan de decker
Hi, Sorry about the error in the copy/paste from my previous mail. I skipped the line -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: Parameter list changes between calling and called program

2013-03-18 Thread jan de decker
Hi, In the copy/paste from my preious mail, I skipped the line: LR RB,RF so that RB points to the top of my CSECT Sorry about that. Best regards, j@n -- For IBM-MAIN subscribe / signoff / archive access

Re: Parameter list changes between calling and called program

2013-03-16 Thread jan de decker
be helpful. Thanks Lizette -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of jan de decker Sent: Friday, March 15, 2013 3:57 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Parameter list changes between calling and called program

Parameter list changes between calling and called program

2013-03-15 Thread jan de decker
Hi list, I am struggling with a curious phenomenom: Program YEMI0070 builds a parameter list for program YEXC using macro YEIOWTOD. The last things YEIOWTOD does is to point register 1 to the parameter list and BALR into YEXC. This created ABEND's. I dumped just before the BALR and

Where are the zOS elements and features?

2013-02-27 Thread jan de decker
Hi list, Since a few days I have www-03.ibm.com not found problems. Looking up zOS Elements and features on Google all point to this link. I use the site daily in my work as a zOS systems programmer. And I prefer the simulated BookManager since it allows you to search an entire shell.

Problem with SYSEVENT QVS

2013-02-20 Thread jan de decker
Hi List, I am struggling with the SYSEVENT QVS macro. Coding: MVC QVSLEN,=AL4(QVS_LEN) LAR1,QVS SYSEVENT QVS Bottom of the program IRAQVS QVS=YES, + DSECT=NO And included the CVT macro CVT

Re: Problem with SYSEVENT QVS solved

2013-02-20 Thread jan de decker
...@valley.netwrote: On 2/20/2013 7:47 AM, jan de decker wrote: 378 0 320+ L 15,CVTSRM-CVT(,15) ASMA044E Undefined symbol - CVT The base of the CVT is named CVTMAP, not CVT. IBM tends to be extremely inconsistent about naming. Gerhard Postpischil