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 RACF

Re: SSD in DFSMS

2014-03-05 Thread Vernooij, CP (SPLXM) - KLM
I remembered having heard or read this and the first Google hit was: http://pic.dhe.ibm.com/infocenter/zos/v1r12/index.jsp?topic=%2Fcom.ibm.zos.r12.idas200%2Fs2082.htm Is this what you are looking for? kees. -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.

Re: SSD in DFSMS

2014-03-05 Thread R.S.
Yes, I mean Solid State Drive. -- Radoslaw Skorupka Lodz, Poland W dniu 2014-03-06 02:35, Lizette Koehler pisze: Are you asking about solid state dasd or some other item? Lizette -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Beha

Re: Validation of a resource name

2014-03-05 Thread David Crayford
On 6/03/2014 2:11 PM, Arthur T. wrote: On 5 Mar 2014 10:05:58 -0800, in bit.listserv.ibm-main (Message-ID:) jan.je...@gmail.com (jan de decker) wrote: 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 val

Re: Validation of a resource name

2014-03-05 Thread Arthur T.
On 5 Mar 2014 10:05:58 -0800, in bit.listserv.ibm-main (Message-ID:) jan.je...@gmail.com (jan de decker) wrote: 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 clie

Re: IDCAMS if-else

2014-03-05 Thread CM Poncelet
... actually, drop the last line "ELSE SET MAXCC EQ 8" otherwise it will return CC=08 if "Print indataset( empty filea)" ends with CC=00 :-( CM Poncelet wrote: Try this: Print indataset( empty filea) If MAXCC ne 0 THEN DO SET MAXCC EQ 0 Print indataset(emptyfb)

zAware certificate need on RACF

2014-03-05 Thread Jake anderson
Hello, Cross Posted on IBM MAIN and RACF-L Are there anyone who has set AT-TLS for zAware on Z/OS. I have been referring a RED book on enabling at-tls but I am not able to understand the need of importing zAware certificates to RACF. If my Understanding is correct zAware does not have any interac

Re: ISPF Storage Protection

2014-03-05 Thread Shmuel Metz (Seymour J.)
In , on 03/05/2014 at 11:41 AM, John Gilmore said: >It is frequently necessary to depress authority, and it is therefore >necessary to elevate it too in order to restore the status quo ante. Nonsense; there are mechanisms to temporarily reduce authority with any tricks to reinstate the origin

Re: SSD in DFSMS

2014-03-05 Thread Lizette Koehler
Are you asking about solid state dasd or some other item? Lizette > -Original Message- > From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On > Behalf Of R.S. > Sent: Wednesday, March 05, 2014 12:24 PM > To: IBM-MAIN@LISTSERV.UA.EDU > Subject: SSD in DFSMS > > z/OS 1

Re: IDCAMS if-else

2014-03-05 Thread Paul Gilmartin
On Wed, 5 Mar 2014 20:06:14 -0500, Micheal Butz wrote: >I do a print indataset for count(1) if the dataset is just catalogued I should >get a non 0 return code > >Can I use unix from a IDCAMS job ? > Probably not, unless IDCAMS has an escape-to-host-command facility. Your use of "IDCAMS job ste

Re: IDCAMS if-else

2014-03-05 Thread CM Poncelet
Try this: Print indataset( empty filea) If MAXCC ne 0 THEN DO SET MAXCC EQ 0 Print indataset(emptyfb) If MAXCC ne 0 then set maxcc = 8 Else Set maxcc = 0 END /* IF */ ELSE SET MAXCC EQ 8 Not sure whether this is wh

Re: IDCAMS if-else

2014-03-05 Thread Micheal Butz
I do a print indataset for count(1) if the dataset is just catalogued I should get a non 0 return code Can I use unix from a IDCAMS job ? Sent from my iPhone > On Mar 5, 2014, at 8:03 PM, Paul Gilmartin wrote: > >> On Wed, 5 Mar 2014 18:21:34 -0500, Micheal Butz wrote: >> >> I have 2 files a

Re: IDCAMS if-else

2014-03-05 Thread Paul Gilmartin
On Wed, 5 Mar 2014 18:21:34 -0500, Micheal Butz wrote: > >I have 2 files and would li[k]e to see >If one or both or none exist > >I am using IDCAMS ... > "exist" or "are nonempty"? This is another thing it's ridiculously easy to do with z/OS UNIX: File1="SYS1.MACLIB(SPLEVEL)" File2="SYS1.MACLIB(

Re: IDCAMS if-else

2014-03-05 Thread Micheal Butz
I understand but take a look at this Print indataset( empty filea) If lastcc ne 0 Print indataset(emptyfb) If lastcc ne 0 then set maxcc = 8 Else Set maxcc = 0 If both files are empty the condition code should be 8 But I always get

Re: IDCAMS if-else

2014-03-05 Thread CM Poncelet
But LASTCC applies only to the instruction that is being checked. As soon as a new instruction is issued (or a higher level nested instruction completes), LASTCC becomes the CC of this instruction. E.g. Consider the following: IF 1 EQ 1 DO SET LASTCC EQ 8 END The LASTCC following the above

Re: IDCAMS if-else

2014-03-05 Thread Micheal Butz
I tried interrogating lastcc and setting MAXCC still comes up with 0 Sent from my iPhone > On Mar 5, 2014, at 6:37 PM, CM Poncelet wrote: > > Try setting MAXCC EQ instead of LASTCC. > > Micheal Butz wrote: > >> Hi, >> >> I have 2 files and would lime to see If one or both or none exist >>

Re: IDCAMS if-else

2014-03-05 Thread CM Poncelet
Try setting MAXCC EQ instead of LASTCC. Micheal Butz wrote: Hi, I have 2 files and would lime to see If one or both or none exist I am using IDCAMS if-else sequence With a command of print for this However I am always coming up with a cc of 0 in the jcl for this step E.G. Let's say fil

IDCAMS if-else

2014-03-05 Thread Micheal Butz
Hi, I have 2 files and would lime to see If one or both or none exist I am using IDCAMS if-else sequence With a command of print for this However I am always coming up with a cc of 0 in the jcl for this step E.G. Let's say filea is empty so is fileb Print indataset(filea) count (1) If lastc

Re: 0C4 from TSOEXEC IEBCOMPR

2014-03-05 Thread Jim Mulder
>I am trying to compare two PDSEs. I found Example 8: Compare Two > PDSEs in the z/OS V1R12.0 DFSMSdfp Utilities (SC26-7414-07). I am > trying to get IEBCOMPR to work from REXX like I got IEBCOPY to work. > We are running z/OS V1R13. > > "ALLOC FI(SYSUT1) DA('PMSBDH.VPS.LRS.AFP.V2R10.FDEFLI

0C4 from TSOEXEC IEBCOMPR

2014-03-05 Thread Hansen, Dave L - Eagan, MN
Dear Group, I am trying to compare two PDSEs. I found Example 8: Compare Two PDSEs in the z/OS V1R12.0 DFSMSdfp Utilities (SC26-7414-07). I am trying to get IEBCOMPR to work from REXX like I got IEBCOPY to work. We are running z/OS V1R13. "ALLOC FI(SYSUT1) DA('PMSBDH.VPS.LRS.AFP.V2R10.FD

Re: Problem Using XMITIP

2014-03-05 Thread George Rodriguez
Thanks, I'll join the group tomorrow. What I did was comment out the if and else statement and what I got as Sender was: grodrig%p...@pal6.palmbeach.k12.fl.us The email still hasn't shown up, so I'll look at what you did and use that! Thanks again! Thanks! George Rodriguez Specialist II - IT So

Re: Problem Using XMITIP

2014-03-05 Thread Greg Shirey
Fix what? Have you determined what's changed? If you're just wanting the from address to have certain values, you can code that in the REXX. Here's what we do: /* - * * Setup the From Default* * This

Re: ISPF Storage Protection

2014-03-05 Thread Elardus Engelbrecht
dpewenwrote: >I started this thread and I appreciate all the input I received from this list. Good. >I have solved the problem by adding code to my user svc that is part of the >product. I added two functions to the svc: 1. to turn on the APF-auth bit in the job step TCB 2. to turn off the APF

Re: Problem Using XMITIP

2014-03-05 Thread George Rodriguez
>From the mainframe side, nothing... On the server side probably... We've been using gmail for a while, but the vendor is making changes constantly... Perhaps the vendor cares that it's wrong... What do I do to fix it? *George Rodriguez* *Specialist II - IT Solutions* *IT Enterprise Applications

Re: Validation of a resource name

2014-03-05 Thread John Gilmore
Radislaw Skorupka's "alphanumeric" characters limitation for resource names is correct as IBM uses the barbarous word 'alphameric'. It includes majuscules, numerics, and the four extender characters, @, #, $, and _. (The first three of these are sometimes also called 'national cvharacters', so th

SSD in DFSMS

2014-03-05 Thread R.S.
z/OS 1.13 AFAIK, IBM provides some interface that allow to choose SSD in DFSMS routines. Actually the only information I found is MSR parameter in Storage Class. I would like to read more about it, maybe some examples of implementations. Where can I find more information about DFSMS and SSD

Re: Problem Using XMITIP

2014-03-05 Thread Greg Shirey
George, Here's a guess - it looks to me like this section of code is being executed: if from_center = center then from_default = uid||AtSignC||center"."domain The variable "domain" has not been assigned a value, so the value is 'DOMAIN' and "center" has been assigned the value "PAL6".

Re: ISPF Storage Protection

2014-03-05 Thread Tom Marchant
On Wed, 5 Mar 2014 07:10:11 -0800, dpewen : >I added two functions to the svc: >1. to turn on the APF-auth bit in the job step TCB >2. to turn off the APF-auth bit in the job step TCB > >This allows me to issue the MODESET svc successfully. Congratulations! You have made it easy for any program t

Re: Validation of a resource name

2014-03-05 Thread R.S.
Jan, Your applications should use resource names, not profile names. Resource is discrete "by definition", example: MVS.CANCEL.TSU.W* - a profile (with generic) MVS.CANCEL.TSU.WILLSMIT - a resource. Regarding your application: simply use alphanumerics as allowed characters. Usually application (

Re: z/OS WIKI access from a mianframe (TSO)

2014-03-05 Thread Miklos Szigetvari
Hi Thank you for all the answers, I gave up this, but seems to "simple" to export/import the WIKI text files to PC. I say "simple" as I got some viruses during the WIKI/Tomact download ..., and I'm using the DATASET reference in the documentation so something instead of the DATASET ref

Re: Validation of a resource name

2014-03-05 Thread Walt Farrell
On Wed, 5 Mar 2014 19:05:52 +0100, jan de decker wrote: >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 t

Re: Validation of a resource name

2014-03-05 Thread Charles Mills
Uppercase "IBM alphamerics" only, right? Charles -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of jan de decker Sent: Wednesday, March 05, 2014 10:06 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Validation of a resource name Hi list, I am

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 all

Thanks and an invitation

2014-03-05 Thread Charles Mills
Thanks everyone for all of your help over the years. This has really been an invaluable resource. If anyone is curious what all of my questions were about, and you're going to be at SHARE, fall by booth 216 (CorreLog) and we can talk bits and bytes. Or if by any chance the auditors or your CISO ar

Re: Problem Using XMITIP

2014-03-05 Thread George Rodriguez
Greg, Here's what I have fro those values: /* - * * append_domain * * if not null then used to append to e-mail addresses * * that are specified without a domain. * * Note: do NOT c

Re: ISPF Storage Protection

2014-03-05 Thread Rob Scott
> In my view, simply, no facility should *ever* elevate the authority of its > caller. An admirable desire, however as pointed out earlier, there are circumstances where even standard IBM software has had to go down this route - eg TSO and AUTHTSF/PGM/CMD. Rob Scott Lead Developer Rocket Softw

Re: Problem Using XMITIP

2014-03-05 Thread Greg Shirey
There are several variables in XMITIP that can influence the value for SENDER. Have you checked how your XMITIPCU member assigns the following: append_domain from_center from_default fromreq restrict_domain HTH, Greg Shirey Ben E. Keith Company -Original Message- From: IBM Mainframe Di

Re: ISPF Storage Protection

2014-03-05 Thread John Gilmore
The problem is not, or not only, that of elevating the authority of a 'caller'. It is frequently necessary to depress authority, and it is therefore necessary to elevate it too in order to restore the status quo ante. Worse, it is possible to do things with SRBs that cross address-space boundaries

Re: ISPF Storage Protection

2014-03-05 Thread Shmuel Metz (Seymour J.)
In <1394032211.10894.yahoomail...@web181501.mail.ne1.yahoo.com>, on 03/05/2014 at 07:10 AM, dpewen said: >I started this thread and I appreciate all the input I received from >this list. I have solved the problem by adding code to my user svc >that is part of the product. I added two functions

Re: ISPF Storage Protection

2014-03-05 Thread Paul Gilmartin
On Wed, 5 Mar 2014 15:32:03 +, Rob Scott wrote: >Please use google and search the IBM-Main archives for JSCBAUTH for *many* >discussions about why you should not be flipping it on and off. > >Apart from the fact that it is difficult to secure any facility that elevates >the authority of the

Re: ISPF Storage Protection

2014-03-05 Thread John Gilmore
Needing better illumination at his workstation, he built a device for turning on all of the lights in his offfice building. Apart from the security exposure, this use of the JSCBAUTH bit is ugly and inelegant, akin to setting a two-penny nail with a pile driver that you happen to have at hand. J

Problem Using XMITIP

2014-03-05 Thread George Rodriguez
This is going to sound like a very strange question, but all of a sudden the SENDER card that generated by XMITIP is coming back as: Sender: GRODRIG@PAL6.DOMAIN and the DOMAIN should be PALMBEACH.K12.FL.US . I would appreciate any help! *George Rodriguez* *Specia

Re: ISPF Storage Protection

2014-03-05 Thread Wayne Driscoll
Instead of adding function codes to the SVC to allow setting and resetting of the JSCBAUTH bit, add function codes to the SVC to perform the code that requires authorization. As others have mentioned, this type of "magic" SVC destroys any concept of system integrity. ==

Re: ISPF Storage Protection

2014-03-05 Thread Ed Jaffe
On 3/5/2014 7:10 AM, dpewen wrote: Hello, I started this thread and I appreciate all the input I received from this list. I have solved the problem by adding code to my user svc that is part of the product. I added two functions to the svc: 1. to turn on the APF-auth bit in the job step TCB 2.

Re: ISPF Storage Protection

2014-03-05 Thread Rob Scott
Please use google and search the IBM-Main archives for JSCBAUTH for *many* discussions about why you should not be flipping it on and off. Apart from the fact that it is difficult to secure any facility that elevates the authority of the caller, there is also the multi-tasking aspect to consider

Re: ISPF Storage Protection

2014-03-05 Thread John McKown
If this is part of a vendor product, and we were looking at said product, and I learned that it did this, I would _strongly_ recommend against acquiring the product. Having this around is like having small bottles of fulminate of mercury scattered around in the kids' play room. It is most likely go

Re: ISPF Storage Protection

2014-03-05 Thread Binyamin Dissen
On Wed, 5 Mar 2014 07:10:11 -0800 dpewen wrote: :>Hello, :> :>I started this thread and I appreciate all the input I received from this list. :>I have solved the problem by adding code to my user svc that is part of the product. :>I added two functions to the svc:  :>1. to turn on the APF-auth

Re: ISPF Storage Protection

2014-03-05 Thread Rob Scott
Do NOT do this ! This is a serious system integrity exposure. Rob Scott Lead Developer Rocket Software 77 Fourth Avenue . Suite 100 . Waltham . MA 02451-1468 . USA Tel: +1.781.684.2305 Email: rsc...@rs.com Web: www.rocketsoftware.com -Original Message- From: IBM Mainframe Discussion Li

ISPF Storage Protection

2014-03-05 Thread dpewen
Hello, I started this thread and I appreciate all the input I received from this list. I have solved the problem by adding code to my user svc that is part of the product. I added two functions to the svc:  1. to turn on the APF-auth bit in the job step TCB 2. to turn off the APF-auth bit in the

Re: Access to IBM link

2014-03-05 Thread Roger Lowe
Peter, I assume you are referring to IBM Service Request (SR) .. 1. Once you are logged into SR, on the left hand side, you should see a menu item called 'Manage Support Registrations' - select sub option 'User Administration'. 2. You should then see 'User Adminisistration' wit

Access to IBM link

2014-03-05 Thread mf db
Hello, I am having challenge to grant access to IBM link application for my colleague.(As I am the primary service Administrator). Could someone walk through me the process of granting the access to IBM link to any registered IBM ID. Peter --