Re: PKA functions only deal with small data chunks?

2009-06-19 Thread R.S.

Henrique Seganfredo pisze:

Hello folks,

I am posting this one from office. 

I am doing some ICSF programming reasearch and figured out that the subset 
of PKA functions that allow me to cipher or decipher using assimetric keys are 
quite limited due the data length that can be supplied.


By example, the CSNDPKE function encrypts the supplied parameter 'keyvalue' 
which size is given with the variable 'keyvalue_length'. This variable has a 
maximum field size of 256 bytes.


So I assume that I may only do assimetric encription with small data chunks. 
Is that right? There is no other possibility?


DES encrypts 8 bytes at a time, but there is no problem with encrypting 
gigabyte files.


--
Radoslaw Skorupka
Lodz, Poland


--
BRE Bank SA
ul. Senatorska 18
00-950 Warszawa
www.brebank.pl

Sd Rejonowy dla m. st. Warszawy 
XII Wydzia Gospodarczy Krajowego Rejestru Sdowego, 
nr rejestru przedsibiorców KRS 025237

NIP: 526-021-50-88
Wedug stanu na dzie 01.01.2009 r. kapita zakadowy BRE Banku SA (w caoci 
wpacony) wynosi 118.763.528 zotych. W zwizku z realizacj warunkowego 
podwyszenia kapitau zakadowego, na podstawie uchway XXI WZ z dnia 16 marca 
2008r., oraz uchway XVI NWZ z dnia 27 padziernika 2008r., moe ulec 
podwyszeniu do kwoty 123.763.528 z. Akcje w podwyszonym kapitale zakadowym 
BRE Banku SA bd w caoci opacone.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


C.D. Keltie is away.

2009-06-19 Thread Colin Keltie
I will be out of the office starting  19/06/2009 and will not return until
22/06/2009.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


CEEDUMP Interruption Code

2009-06-19 Thread Ron MacRae
Hi all,
  I'm trying to debug an S0C4 from a JAVA program from a CEEDUMP. I'm 
more familiar with SYSMDUMPs etc. 

I'm getting - Current Condition:  
CEE3204S The system detected a protection exception (System Completion 
Code=0C4). 
and  
Machine State:  

  ILC. Interruption Code. 0004  


I'm trying to determine if this is an S0C4-4 or an S0C4-10/11.

Backing up one instruction looks like an instruction that is unlikely to fail 
as it's 
reading an area of storage just written to.

The instruction pointed to by the PSW is updating an area, which according to 
dump around the register address is full of zeros, which I suspect may have 
been freed.

Q1) Does the interupt code just tell me I've got an S0C4-anything or is it 
telling me I've got an S0C4-4. I suspect the former. Google didn't find any 
occurances where a CEEDUMP showed Interruption Code. 0010 or 11.
 
Q2) How does CEEDUMP display a non-getmained area of storage pointed to 
by a register?

Thanks in advance, Ron.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: PKA functions only deal with small data chunks?

2009-06-19 Thread Kirk Wolf
The most practical use for asymmetric keys is to encrypt (sign) a small
amount of data.   While they may in theory be used to encrypt large amounts
of data, asymmetric keys are typically several of orders of magnitude slower
than symmetric keys.   Protocols like SSL/TLS use asymmetric keys to
securely exchange a one-time symmetric key (aka session key) which is then
used to do the data encryption in both directions.


PGP, S/MIME, and CMS (RFC-2630) all create a symmetric session key to
encrypt data, and then only encrypt the session key with the asymmetric
key.   This is probably the approach that you would want to take to encrypt
data using asymmetric key pairs.

Kirk Wolf
Dovetailed Technologies
http://dovetail.com


On Thu, Jun 18, 2009 at 2:31 PM, Henrique Seganfredo 
henri...@seganfredo.com wrote:

 Hello folks,

 I am posting this one from office.

 I am doing some ICSF programming reasearch and figured out that the subset
 of PKA functions that allow me to cipher or decipher using assimetric keys
 are
 quite limited due the data length that can be supplied.

 By example, the CSNDPKE function encrypts the supplied parameter 'keyvalue'
 which size is given with the variable 'keyvalue_length'. This variable has
 a
 maximum field size of 256 bytes.

 So I assume that I may only do assimetric encription with small data
 chunks.
 Is that right? There is no other possibility?

 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: CEEDUMP Interruption Code

2009-06-19 Thread Binyamin Dissen
On Fri, 19 Jun 2009 04:50:21 -0500 Ron MacRae ronmac...@hotmail.co.uk wrote:

:  I'm trying to debug an S0C4 from a JAVA program from a CEEDUMP. I'm 
:more familiar with SYSMDUMPs etc. 

:I'm getting - Current Condition:  
:CEE3204S The system detected a protection exception (System Completion 
:Code=0C4). 
:and  
:Machine State:
  
:  ILC. Interruption Code. 0004
  

:I'm trying to determine if this is an S0C4-4 or an S0C4-10/11.

:Backing up one instruction looks like an instruction that is unlikely to fail 
as it's 
:reading an area of storage just written to.

:The instruction pointed to by the PSW is updating an area, which according to 
:dump around the register address is full of zeros, which I suspect may have 
:been freed.

Assuming the machine data is correct, you are getting a PIC-4 during
instruction fetch.

:Q1) Does the interupt code just tell me I've got an S0C4-anything or is it 
:telling me I've got an S0C4-4. I suspect the former. Google didn't find any 
:occurances where a CEEDUMP showed Interruption Code. 0010 or 11.
 
:Q2) How does CEEDUMP display a non-getmained area of storage pointed to 
:by a register?

--
Binyamin Dissen bdis...@dissensoftware.com
http://www.dissensoftware.com

Director, Dissen Software, Bar  Grill - Israel


Should you use the mailblocks package and expect a response from me,
you should preauthorize the dissensoftware.com domain.

I very rarely bother responding to challenge/response systems,
especially those from irresponsible companies.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: INFOZIP 2Gb

2009-06-19 Thread Vikesh Bhoola
I finally managed to get enough space for a ZFS to test the zip of a file  2Gb 
:
I successfully zipped a 4.7GB file (in USS).

Fri Jun 19 13:40:22 GMT 2009
/u/userid/zip31b: zip -av -1 /tmp/BIG_FILE.zip /tmp/big_file.txt 

Translating to ASCII... 
  adding: È_ø¬¿ñèë¡ÈÌÈ 
 (in=5043928330) (out=1440061937) (deflated 71%)
total bytes=5043928330, compressed=1440061937 - 71% savings
Fri Jun 19 14:07:38 GMT 2009

Also, I know it was mentioned by Timothy earlier that it may be possible to 
read directly from MVS files using // syntax.

I tried it using :
/u/userid/zip31b: zip -av -1 /tmp/BIG_FILE.zip //userid.BIG.FILE 
 got 
Translating to ASCII...  
zip warning: name not matched: //userid.BIG.FILE 
 
zip error: Nothing to do! (BIG_FILE.ZIP)   

Not sure if I got the syntax correct or if its just not build for MVS style 
dataset input.

Bob, please let me if you managed to get the -D_LARGE_FILE support working for 
cmsmvs/mvs.mki makefile
I tried to following your descriptions for the changes on this, but I still get 
zip error: Not supported (LARGE_FILE_SUPPORT enabled but OS not supporting 
it).

Thanks for all assistance thus far,
Vikesh
Please Note: This email and its contents are subject to our email legal notice 
which can be viewed at http://www.sars.gov.za/Email_Disclaimer.pdf 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: INFOZIP 2Gb

2009-06-19 Thread Steve Comstock

Vikesh Bhoola wrote:

I finally managed to get enough space for a ZFS to test the zip of a file  2Gb 
:
I successfully zipped a 4.7GB file (in USS).

Fri Jun 19 13:40:22 GMT 2009
/u/userid/zip31b: zip -av -1 /tmp/BIG_FILE.zip /tmp/big_file.txt 

Translating to ASCII... 
  adding: È_ø¬¿ñèë¡ÈÌÈ 
 (in=5043928330) (out=1440061937) (deflated 71%)
total bytes=5043928330, compressed=1440061937 - 71% savings
Fri Jun 19 14:07:38 GMT 2009

Also, I know it was mentioned by Timothy earlier that it may be possible to read directly from MVS files using // syntax.


I tried it using :
/u/userid/zip31b: zip -av -1 /tmp/BIG_FILE.zip //userid.BIG.FILE 
 got 
Translating to ASCII...  
zip warning: name not matched: //userid.BIG.FILE 
 
zip error: Nothing to do! (BIG_FILE.ZIP)   


Not sure if I got the syntax correct or if its just not build for MVS style 
dataset input.

Bob, please let me if you managed to get the -D_LARGE_FILE support working for 
cmsmvs/mvs.mki makefile
I tried to following your descriptions for the changes on this, but I still get zip 
error: Not supported (LARGE_FILE_SUPPORT enabled but OS not supporting it).

Thanks for all assistance thus far,
Vikesh
Please Note: This email and its contents are subject to our email legal notice which can be viewed at http://www.sars.gov.za/Email_Disclaimer.pdf 


You might try double quotes around the file name construct,
with single quotes embedded to prevent prefixing; so:

/u/userid/zip31b: zip -av -1 /tmp/BIG_FILE.zip //'userid.BIG.FILE'



Kind regards,

-Steve Comstock
The Trainer's Friend, Inc.

303-393-8716
http://www.trainersfriend.com

  z/OS Application development made easier
* Our classes include
   + How things work
   + Programming examples with realistic applications
   + Starter / skeleton code
   + Complete working programs
   + Useful utilities and subroutines
   + Tips and techniques

== Check out the Trainer's Friend Store to purchase z/OS  ==
== application developer toolkits. Sample code in four==
== programming languages, JCL to Assemble or compile, ==
== bind and test. ==
==   http://www.trainersfriend.com/TTFStore/index.html==

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IBM Software Secure Support via USA Citizens

2009-06-19 Thread Howard Brazee
On 17 Jun 2009 12:35:48 -0700, patrick.oke...@wamu.net (Patrick
O'Keefe) wrote:

If those are the US Government's rules then IBM would be foolish
not to set up such accounts, but the concept behind the rule
makes no sense.  It would make more sense (but would be 
impossible to implement) a rule that requires competency rather
than US citizenship.

Politics isn't concerned with competency, it is concerned with getting
elected.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IBM Software Secure Support via USA Citizens

2009-06-19 Thread Howard Brazee
On 18 Jun 2009 10:43:47 -0700, rfocht...@ync.net (Rick Fochtman)
wrote:

Like I keep saying: there's a fine line between security and paranoia; 
which side are we on?

I don't think the line is fine at all.   It is vague and nebulous.


There's a fine line between standing next to a lake, and fishing.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Determine who's PPRC'd

2009-06-19 Thread John Kelly
Is there any way to find out which DASD is a PPRIMARY, and it's PSECONDRY 
would be nice too? I know that the various derivatives of CQUERY will 
provide the data but that's a lot of SYSPRINT to go thru. What I'd like to 
do is make sure that all of the DASD is PPRC'd and if I can get an 
association, ie PPRIMARY to PSECONDRY, I could make sure that my CESTPAIR 
did what I thought that I told it. I was hoping that I could scan the UCBs 
and make this determination but I haven't found it yet.

What I've found is that the

DS P,xxxtell if a device is PPRIMARY or PSECONDRY or 
SIMPLEX but the relationship
FCQUERY DEVN(4XXX) gives about the same info as the DS P command

Since we have a Hitachi USP V SAN, our chances of getting any support from 
VION is minimal, at best. 

Jack Kelly
202-502-2390 (Office)

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Determine who's PPRC'd

2009-06-19 Thread O'Brien, David W. (NIH/CIT) [C]
Jack,

 Go ISMF 2;1
Wildcard your volume with an *
Page to page 3, duplex status eq PPrimary

That will list your PPRC'd volumes.

Thanks for reminding me. I hadn't checked mine yet today.

Dave O'Brien
NIH Contractor

From: IBM Mainframe Discussion List [ibm-m...@bama.ua.edu] On Behalf Of John 
Kelly [john_j_ke...@ao.uscourts.gov]
Sent: Friday, June 19, 2009 10:46 AM
To: IBM-MAIN@bama.ua.edu
Subject: Determine who's PPRC'd

Is there any way to find out which DASD is a PPRIMARY, and it's PSECONDRY
would be nice too? I know that the various derivatives of CQUERY will
provide the data but that's a lot of SYSPRINT to go thru. What I'd like to
do is make sure that all of the DASD is PPRC'd and if I can get an
association, ie PPRIMARY to PSECONDRY, I could make sure that my CESTPAIR
did what I thought that I told it. I was hoping that I could scan the UCBs
and make this determination but I haven't found it yet.

What I've found is that the

DS P,xxxtell if a device is PPRIMARY or PSECONDRY or
SIMPLEX but the relationship
FCQUERY DEVN(4XXX) gives about the same info as the DS P command

Since we have a Hitachi USP V SAN, our chances of getting any support from
VION is minimal, at best.

Jack Kelly
202-502-2390 (Office)

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Determine who's PPRC'd

2009-06-19 Thread Clifford McNeill
Jack,

You could write an ASM program to loop through UCBSCAN and issue the ANTRQST to 
retrive pprc information.  The information is returned similiar to CQUERY with 
UNFORMAT parameter.

Cliff McNeill

 
 Date: Fri, 19 Jun 2009 10:50:49 -0400
 From: obrie...@mail.nih.gov
 Subject: Re: Determine who's PPRC'd
 To: IBM-MAIN@bama.ua.edu
 
 Jack,
 
 Go ISMF 2;1
 Wildcard your volume with an *
 Page to page 3, duplex status eq PPrimary
 
 That will list your PPRC'd volumes.
 
 Thanks for reminding me. I hadn't checked mine yet today.
 
 Dave O'Brien
 NIH Contractor
 
 From: IBM Mainframe Discussion List [ibm-m...@bama.ua.edu] On Behalf Of John 
 Kelly [john_j_ke...@ao.uscourts.gov]
 Sent: Friday, June 19, 2009 10:46 AM
 To: IBM-MAIN@bama.ua.edu
 Subject: Determine who's PPRC'd
 
 Is there any way to find out which DASD is a PPRIMARY, and it's PSECONDRY
 would be nice too? I know that the various derivatives of CQUERY will
 provide the data but that's a lot of SYSPRINT to go thru. What I'd like to
 do is make sure that all of the DASD is PPRC'd and if I can get an
 association, ie PPRIMARY to PSECONDRY, I could make sure that my CESTPAIR
 did what I thought that I told it. I was hoping that I could scan the UCBs
 and make this determination but I haven't found it yet.
 
 What I've found is that the
 
 DS P,xxx tell if a device is PPRIMARY or PSECONDRY or
 SIMPLEX but the relationship
 FCQUERY DEVN(4XXX) gives about the same info as the DS P command
 
 Since we have a Hitachi USP V SAN, our chances of getting any support from
 VION is minimal, at best.
 
 Jack Kelly
 202-502-2390 (Office)
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html

_
Microsoft brings you a new way to search the web.  Try  Bing™ now
http://www.bing.com?form=MFEHPGpubl=WLHMTAGcrea=TEXT_MFEHPG_Core_tagline_try 
bing_1x1
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Determine who's PPRC'd

2009-06-19 Thread Jeffrey Deaver
 You could write an ASM program

The ISMF thing doesn't work for us as we snapshot our production volumes to
an offline set of volumes which are in the PPRC relationship.  We wrote a
little script that issues and then parses the CQUERY UNFORMAT information
for those volumes to get us the info when we need it.  Uses a DCOLLECT
report to drive the addresses needed for the CQUERYs as those snapshot
target addresses are all the production addresses + x'80'.

The DCOLLECT report generated in a job that runs once a day to get a list
of production volumes

//LISTCEXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//OUTDSDD DISP=OLD,DSN=SE.PADMIN.BATCH.PRDRGENR.DCOLL
//SYSINDD *
 DCOLLECT -
 OFILE(OUTDS) -
 NODATAINFO -
 VOLUME(**)
//*


The script we run to get the info we want on the snapshot targets in the
PPRC relationship.  You could expand it to parse the primary/secondary info
you're looking for
/* REXX

SSID.1 = 9080
SSID.2 = 9180
SSID.3 = 9280
SSID.4 = 9380
SSID.5 = 9480
SSID.6 = 9580
SSID.7 = 9680
SSID.8 = 9780
SSID.9 = 9880
SSID.10 = 9980
SSID.11 = 9A80
SSID.12 = 9B80
SSID.13 = 9C80
SSID.14 = 9D80
SSID.15 = 9E80
SSID.16 = 9F80
SSID.0 = 16
ALLOC DA('SE.PADMIN.BATCH.PRDRGENR.DCOLL') F(INFILE) SHR
EXECIO * DISKR INFILE(STEM VOLS. FINIS
FREE F(INFILE)

VOLSER. = UNDEFD
DO I = 1 TO VOLS.0
  PARSE VAR VOLS.I 25  31 . 77 U1 78 U2 79 .
  UU=RIGHT(D2X(C2D(U1)),2,'0')||RIGHT(D2X(C2D(U2)),2,'0')
  T2 = RIGHT(D2X(X2D(UU)+128),4,'0')  /* ADD HEX80 */
  VOLSER.T2 = 
END


  X = OUTTRAP( REP.)
  PENDING = 0
  DUPLEXD = 0
  DO J = 1 TO SSID.0
PRIM = SSID.J
DO I=0 TO 57
 DEVN=D2X(X2D(PRIM)+I)
  CQUERY DEVN(X'DEVN') UNFORMAT
   END
 END
 X = OUTTRAP(OFF)
 ALLOC DA(VCU) F(OUTFILE) NEW CATALOG DELETE DATACLAS(STD80PS)
 DO I = 1 TO REP.0 BY 7
   P3 = I + 2
   P6 = I + 5
   PARSE VAR REP.P3 UNIT,PORS,DUPORPEND,.
   PARSE VAR REP.P6 .,.,PERCENT,.
   IF DUPORPEND = PENDING THEN
 PENDING = PENDING + 1
   IF DUPORPEND = DUPLEX THEN
 DUPLEXD = DUPLEXD + 1
   IF PERCENT = THEN
 QUEUE VOLSER.UNIT UNIT DUPORPEND
   ELSE
 QUEUE VOLSER.UNIT UNIT DUPORPEND PERCENT %
   EXECIO 1 DISKW OUTFILE
  END
  SAY NUMBER OF PENDING VOLUMES IS PENDING
  PDUPLEX = DUPLEXD / 924
  SAY NUMBER OF DUPLEXD VOLUMES IS DUPLEXD
  SAY PERCNT OF DUPLEXD VOLUMES IS PDUPLEX
EXECIO 1 DISKW OUTFILE(FINIS
ISPEXEC EDIT DATASET(VCU)
FREE F(OUTFILE)


The result, for us, is a report that looks like this
NUMBER OF PENDING VOLUMES IS 0
***
01 MAGIC1 9080 DUPLEX
02 M99001 9081 DUPLEX
03 M99002 9082 DUPLEX
04 LRK108 9083 DUPLEX
05 LRK124 9084 DUPLEX
06 LRK140 9085 DUPLEX
07 LRK156 9086 DUPLEX
etc.

if the volume is not DUPLEX then it says what percentage is pending.


The UNFORMAT format layout is for message ANTP0091I and can be found in the
MVS System Messages Volume 1 manual...



Jeffrey Deaver, Engineer
Systems Engineering
jeffrey.dea...@securian.com
651-665-4231(v)
IS - Creating competitive advantage with technology.  Providing service
that excels.
OSS -  Where Innovation Happens

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Determine who's PPRC'd

2009-06-19 Thread John Kelly
I want to thank Jeffrey, Clifford and David for their replies. That's 
exactly what I need.
Thanks again...Jack

Jack Kelly
202-502-2390 (Office)

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


HYPERPAV Definitions

2009-06-19 Thread Kopischke, David G.
I've been trying to find doc that my meager intellect can understand,
but alas, I have failed yet again...

I defined a 2107 control unit.
I defined 192 3390B devices behind it.
I defined 64 3390A devices behind it.

During the prompts for the 3390A devices, HCD asks:
Parameter/
FeatureValue +
WLMPAV Yes 

Is Yes the proper response for HYPERPAV ??? I would expect that to
be proper for Dynamic PAV, but since this is my first foray into this
topic, I'm confused. The manuals I've come across aren't particularly
revealing on this topic either.

Any guidance is appreciated.

Thanks,
Dave K.

--
This e-mail transmission may contain information that is proprietary, 
privileged and/or confidential and is intended exclusively for the person(s) to 
whom it is addressed. Any use, copying, retention or disclosure by any person 
other than the intended recipient or the intended recipient's designees is 
strictly prohibited. If you are not the intended recipient or their designee, 
please notify the sender immediately by return e-mail and delete all copies. 
OppenheimerFunds may, at its sole discretion, monitor, review, retain and/or 
disclose the content of all email communications. 
==

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: INFOZIP 2Gb

2009-06-19 Thread Vikesh Bhoola
 You might try double quotes around the file name construct,
 with single quotes embedded to prevent prefixing; so:

 /u/userid/zip31b: zip -av -1 /tmp/BIG_FILE.zip //'userid.BIG.FILE'

Thanks, I tried that, still get :

/u/userid/zip31b: zip -av -1 /tmp/BIG_FILE.zip //'userid.BIG.FILE'
Translating to ASCII...   
zip warning: name not matched: //'userid.BIG.FILE'
  
zip error: Nothing to do! (/tmp/BIG_FILE.zip)
Please Note: This email and its contents are subject to our email legal notice 
which can be viewed at http://www.sars.gov.za/Email_Disclaimer.pdf 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Determine who's PPRC'd

2009-06-19 Thread Wissink, Brad [ITSYS]
I have an assembler program that is passed a device number and uses the
UCBSCAN macro to get device information.  It then uses the ANTRQST macro
to get PPRC information.  If you are intersted you can contact me
offline. 


Brad Wissink
Information Technology Services
Iowa State University
515-294-3088

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf Of O'Brien, David W. (NIH/CIT) [C]
Sent: Friday, June 19, 2009 9:51 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Determine who's PPRC'd

Jack,

 Go ISMF 2;1
Wildcard your volume with an *
Page to page 3, duplex status eq PPrimary

That will list your PPRC'd volumes.

Thanks for reminding me. I hadn't checked mine yet today.

Dave O'Brien
NIH Contractor

From: IBM Mainframe Discussion List [ibm-m...@bama.ua.edu] On Behalf Of
John Kelly [john_j_ke...@ao.uscourts.gov]
Sent: Friday, June 19, 2009 10:46 AM
To: IBM-MAIN@bama.ua.edu
Subject: Determine who's PPRC'd

Is there any way to find out which DASD is a PPRIMARY, and it's
PSECONDRY would be nice too? I know that the various derivatives of
CQUERY will provide the data but that's a lot of SYSPRINT to go thru.
What I'd like to do is make sure that all of the DASD is PPRC'd and if I
can get an association, ie PPRIMARY to PSECONDRY, I could make sure that
my CESTPAIR did what I thought that I told it. I was hoping that I could
scan the UCBs and make this determination but I haven't found it yet.

What I've found is that the

DS P,xxxtell if a device is PPRIMARY or PSECONDRY or
SIMPLEX but the relationship
FCQUERY DEVN(4XXX) gives about the same info as the DS P command

Since we have a Hitachi USP V SAN, our chances of getting any support
from VION is minimal, at best.

Jack Kelly
202-502-2390 (Office)

--
For IBM-MAIN subscribe / signoff / archive access instructions, send
email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO Search
the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions, send
email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO Search
the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: HYPERPAV Definitions

2009-06-19 Thread John Kelly
snip
WLMPAV Yes 
unsnip


We have a Hitachi box and they indicated to say 'yes' to WLM in the HCD. 
Also had to tell WLM (opt 8)

Dynamic alias management . . . . . . . . YES  (Yes or No)

and SETIOS to get it working.

HTH 


Jack Kelly
202-502-2390 (Office)

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: HYPERPAV Definitions

2009-06-19 Thread Dave Kopischke
On Fri, 19 Jun 2009 14:02:16 -0400, John Kelly wrote:

snip
WLMPAV Yes
unsnip


We have a Hitachi box and they indicated to say 'yes' to WLM in the HCD.
Also had to tell WLM (opt 8)

Dynamic alias management . . . . . . . . YES  (Yes or No)

and SETIOS to get it working.


Is this for HYPERPAV or Dynamic PAV ??? Or Both ??? I want HYPERPAV. From 
what I've read, WLM is involved in Dynamic PAV, but I didn't see reference to 
WLM in what I've found on HYPERPAV.

At this point, I'm not licensed for it, so I'll worry about the IOS change 
later. 
Right now, I'm just trying to get the device definitions correct so when I do 
SETIOS, it just lights up.

Thanks again,
  Dave K.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: PKA functions only deal with small data chunks?

2009-06-19 Thread Henrique Seganfredo
You are right, I think that the background idea of supplying PKA functions 
working with such small array sizes is to force the developer to think in 
another directions and avoid using too much assimetric encryption due 
performance issues that may arise.

So the way to go is really emulate the SSL model: encrypt a simetric key 
under an assimetric one and use the simetric one to decipher the bulk of data.

Thanks folks!

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: HYPERPAV Definitions

2009-06-19 Thread Swanson, Curt
Dave,

The 'WLMPAV' value of 'Yes' is correct for both Dynamic PAV  HYPERPAV.  The 
setup is the same for both; the only difference is the HYPERPAV feature added 
on the 2107 storage subsystem.  We had Dynamic PAV before HYPERPAV.

You can get by with fewer 3390A devices for HYPERPAV.

Regards,

Curt Swanson
z/OS Server Technologies
curt.swan...@meijer.com
These opinions are mine and not necessarily those of my employer, Meijer Great 
Lakes Limited Partnership

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of 
Kopischke, David G.
Sent: Friday, June 19, 2009 12:24 PM
To: IBM-MAIN@bama.ua.edu
Subject: HYPERPAV Definitions

I've been trying to find doc that my meager intellect can understand,
but alas, I have failed yet again...

I defined a 2107 control unit.
I defined 192 3390B devices behind it.
I defined 64 3390A devices behind it.

During the prompts for the 3390A devices, HCD asks:
Parameter/
FeatureValue +
WLMPAV Yes

Is Yes the proper response for HYPERPAV ??? I would expect that to
be proper for Dynamic PAV, but since this is my first foray into this
topic, I'm confused. The manuals I've come across aren't particularly
revealing on this topic either.

Any guidance is appreciated.

Thanks,
Dave K.

--
This e-mail transmission may contain information that is proprietary, 
privileged and/or confidential and is intended exclusively for the person(s) to 
whom it is addressed. Any use, copying, retention or disclosure by any person 
other than the intended recipient or the intended recipient's designees is 
strictly prohibited. If you are not the intended recipient or their designee, 
please notify the sender immediately by return e-mail and delete all copies. 
OppenheimerFunds may, at its sole discretion, monitor, review, retain and/or 
disclose the content of all email communications.
==

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: HYPERPAV Definitions

2009-06-19 Thread Dennis Trojak
Dave,
 My Hitachi guy told me to ignore WLMPAV when we installed our USP-V and
it is set to NO in my IODF.
Dennis 

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf Of Dave Kopischke
Sent: Friday, June 19, 2009 1:33 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: HYPERPAV Definitions

On Fri, 19 Jun 2009 14:02:16 -0400, John Kelly wrote:

snip
WLMPAV Yes
unsnip


We have a Hitachi box and they indicated to say 'yes' to WLM in the
HCD.
Also had to tell WLM (opt 8)

Dynamic alias management . . . . . . . . YES  (Yes or No)

and SETIOS to get it working.


Is this for HYPERPAV or Dynamic PAV ??? Or Both ??? I want HYPERPAV.
From 
what I've read, WLM is involved in Dynamic PAV, but I didn't see
reference to 
WLM in what I've found on HYPERPAV.

At this point, I'm not licensed for it, so I'll worry about the IOS
change later. 
Right now, I'm just trying to get the device definitions correct so when
I do 
SETIOS, it just lights up.

Thanks again,
  Dave K.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: HYPERPAV Definitions

2009-06-19 Thread Dave Kopischke
On Fri, 19 Jun 2009 15:02:12 -0400, Swanson, Curt wrote:

Dave,

The 'WLMPAV' value of 'Yes' is correct for both Dynamic PAV  HYPERPAV.  
The setup is the same for both; the only difference is the HYPERPAV feature 
added on the 2107 storage subsystem.  We had Dynamic PAV before 
HYPERPAV.




Excellent !!!

Thanks again to everyone for your help 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


CRECOVER or CESTPAIR MODE(RESYNC)

2009-06-19 Thread John Kelly
I think that I'm reading too much. After I suspend (CSUSPEND) a pair, what 
the best/only way to get the pair resynch?
From what I can read, a CESTPAIR MODE(RESYNC) will copy the changed 
cylinder from the PRIMARY to the PSECONDRY while a CRECOVER will recopy 
the PRIMARY to the PSECONDRY ? 
Also has anyone use conditional REXX checking to reset the pair, ie does 
condition code or RC indicate a failure?

TIA 

Jack Kelly
202-502-2390 (Office)

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Mainframe Express Software

2009-06-19 Thread Arun shan
Hi Guys
  Any one know about Mainframe Express Software
I want pirate Copy of the mainframe express... or give say equivalent
software ..
-- 
  Arun.s

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Mainframe Express Software

2009-06-19 Thread Ted MacNEIL
I want pirate Copy of the mainframe express... or give say equivalent software 
..

I honestly don't think, if I understand your request correctly, that you should 
be soliciting for a pirate copy of anything on a public forum!

-
Too busy driving to stop for gas!

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


ICSF: need pointers on generating a Certificate Signing Request based on PKDS keys

2009-06-19 Thread Henrique Seganfredo
We need to create a certificate request to be sent to a CA and after that it 
will be published in our website, so other companies can download it and use it 
to communicate us with some data transfer applications.
 
As far that I know, a certificate signing request (CSR)  is assembled with one 
of ours public keys and a digital signature (hash value encripted with our 
paired private key). 
 
RACF tool and SSL libraries for z/OS provide two ways to generate a 
Certificate Request without need of going deep. But:
 
1) RACF tool, called RACDCERT, offers a GENREQ function that allows me to 
create a certificate request but unhappily this certificate request must be 
based on an already existing certificate created by the GENCERT function, 
which also generates a key pair. So I have not much control over key creation 
and cannot point it to use my already existant PKDS keys.
 
2) Certificate Management Services (CMS) provide SSL library function 
gsk_create_certification_request() to create a CSR, but it also generates a 
new key pair. There is another function, called gsk_create_renewal_request () 
that seems to allow the input public and private key references to be used to 
assemble the CSR, but there is no mention if it may look on the PKDS for them.
 
So, what I want here is to create a certificate request based on an already 
existing pub/private key pair stored on our PKDS, just pointing to their labels 
and supplying some extra parameters (like those distinguished names, which 
message digest and assimetric algorithms are used for the digital signature, 
etc.). But I see no ICSF callable service allowing me to do this.

Looks like ICSF and SSL support on z/OS are two different worlds aimed for 
security purposes, but they do not communicate very well.

What can I do?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Mainframe Express Software

2009-06-19 Thread McKown, John
Are you out of your mind??? This is not a warez site.

--
John McKown 
Systems Engineer IV
IT

Administrative Services Group

HealthMarkets(r)

9151 Boulevard 26 * N. Richland Hills * TX 76010
(817) 255-3225 phone * (817)-961-6183 cell
john.mck...@healthmarkets.com * www.HealthMarkets.com

Confidentiality Notice: This e-mail message may contain confidential or 
proprietary information. If you are not the intended recipient, please contact 
the sender by reply e-mail and destroy all copies of the original message. 
HealthMarkets(r) is the brand name for products underwritten and issued by the 
insurance subsidiaries of HealthMarkets, Inc. -The Chesapeake Life Insurance 
Company(r), Mid-West National Life Insurance Company of TennesseeSM and The 
MEGA Life and Health Insurance Company.SM

 

 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:ibm-m...@bama.ua.edu] On Behalf Of Arun shan
 Sent: Friday, June 19, 2009 2:41 PM
 To: IBM-MAIN@bama.ua.edu
 Subject: Mainframe Express Software
 
 Hi Guys
   Any one know about Mainframe Express Software
 I want pirate Copy of the mainframe express... or give say equivalent
 software ..
 -- 
   Arun.s
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html
 
 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Mainframe Express Software

2009-06-19 Thread Ted MacNEIL
Are you out of your mind??? This is not a warez site.

I was politer, but I had the same attitude.

If I were the list admin, and I'm not, I would suspend him.

Those kinds of requests can impede the perceived integrity of a site like this.

-
Too busy driving to stop for gas!

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Mainframe Express Software

2009-06-19 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of Arun shan
 
 Hi Guys
   Any one know about Mainframe Express Software
 I want pirate Copy of the mainframe express... or give say equivalent
 software ..

We don't pirate software here.

-jc-

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Mainframe Express Software

2009-06-19 Thread August Carideo
this is what he posted on 2/21
does this give you an idea where he's going w/ all this



On Sat, Feb 21, 2009 at 9:08 PM, Arun shan arunsha...@gmail.com wrote:

 Hello Sir,
   I Am Arun, Now i am Working in Mainframe...
 Actually i am new to this i want to know the basic concepts and all
 could anyone suggest me website or materiel




   
 Ted MacNEIL   
 eamacn...@yahoo. 
 CATo 
 Sent by: IBM  IBM-MAIN@bama.ua.edu
 Mainframe  cc 
 Discussion List   
 ibm-m...@bama.ua Subject 
 .edu Re: Mainframe Express Software  
   
   
 06/19/2009 03:56  
 PM
   
   
 Please respond to 
   IBM Mainframe   
  Discussion List  
 ibm-m...@bama.ua 
   .edu   
   
   




Are you out of your mind??? This is not a warez site.

I was politer, but I had the same attitude.

If I were the list admin, and I'm not, I would suspend him.

Those kinds of requests can impede the perceived integrity of a site like
this.

-
Too busy driving to stop for gas!

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Mainframe Express Software

2009-06-19 Thread Bill Washburn
Yes,
Please send your full name, IP address, and bank account information.
We will FTP the software to you and also send you one million dollars.



   
 Arun shan 
 arunsha...@gmail 
 .COM  To 
 Sent by: IBM  IBM-MAIN@bama.ua.edu
 Mainframe  cc 
 Discussion List   
 ibm-m...@bama.ua  Fax to 
 .edu 
   Subject 
   Mainframe Express Software  
 06/19/2009 03:42  
 PM
   
   
 Please respond to 
   IBM Mainframe   
  Discussion List  
 ibm-m...@bama.ua 
   .edu   
   
   




Hi Guys
  Any one know about Mainframe Express Software
I want pirate Copy of the mainframe express... or give say equivalent
software ..
--
  Arun.s

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


EDGINERS erase problem

2009-06-19 Thread R.S.

I have a problem with EDGINERS ERASE job and 3490E-C22 standalone drives.
The following job:
//K10  EXEC PGM=EDGINERS
//SYSPRINT DD SYSOUT=*
//TAPE DD UNIT=(3490,,DEFER)
//SYSINDD *
 ERASE VOLUME(E12345) RACK(E12345)

Ends with


IOS000I 0572,**,SIM,**,**06,,**,,SRSKEDG 

EDG6601E I/O ERROR ERASING VOLUME E12345,SRSKEDG ,K10 
,0572,T,,**- OP,UNKNOWN COND.  ,**,
 EXCP 

EDG6601E CONT:- 

IOS000I 0572,**,SIM,**,**06,,**,,SRSKEDG 

EDG6624E VOLUME E12345 ERASE FAILED 


EDG6631I UTILITY EDGINERS COMPLETED WITH RETURN CODE 12

I tried the same job on other drives. It fails on any 3490E-C22. It 
works on 3590-H and 3592 (with other media of course).
The 3490E drives can be used for read or write without problems. The 
problem occurs with EDGINERS only.


Any clue?

--
Radoslaw Skorupka
Lodz, Poland


--
BRE Bank SA
ul. Senatorska 18
00-950 Warszawa
www.brebank.pl

Sąd Rejonowy dla m. st. Warszawy 
XII Wydział Gospodarczy Krajowego Rejestru Sądowego, 
nr rejestru przedsiębiorców KRS 025237

NIP: 526-021-50-88
Według stanu na dzień 01.01.2009 r. kapitał zakładowy BRE Banku SA (w całości 
wpłacony) wynosi 118.763.528 złotych. W związku z realizacją warunkowego 
podwyższenia kapitału zakładowego, na podstawie uchwały XXI WZ z dnia 16 marca 
2008r., oraz uchwały XVI NWZ z dnia 27 października 2008r., może ulec 
podwyższeniu do kwoty 123.763.528 zł. Akcje w podwyższonym kapitale zakładowym 
BRE Banku SA będą w całości opłacone.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


ADCD V1.R10 and missing volumes

2009-06-19 Thread Mike Myers

Hi to other ADCD users.

I have recently installed ADCD v1.10 only to find that any attempt to 
bring up DB2 wants DSN910.* data sets which are cataloged as being on 
ZADB91, but the 5-disk set I got has no disc containing files for these 
volumes. It also doesn't have ZADB92, which is referenced in the online 
description of the distribution at 
http://dtsc.dfw.ibm.com/MVSDS/'HTTPD2.ADCD.GLOBAL.HTML(READM110)'.


Anyone know what's supposed to be happening here? Can I get these 
volumes somewhere? Am I supposed to change all references to DSN910 data 
sets to DSB810 so that I can get DB2 going?


Mike Myers
Mentor Services Corporation

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Storage

2009-06-19 Thread Ward, Mike S
Hello all, I tried to issue these command from my MCA security exit, but
received this error:

DUMP TITLE=SEDQ,ABN= 047-,C=L8200.600.CHIN,M=CSQXDISP,P
   SW=478D040098F90F76
+CSQX111E SEDQ CSQXDISP User channel exit error, TCB=008C02B0 888
 reason=047000-


I checked the APF table and my loadlib is in there:

+Z7SMS2  SSF1.MQEXIT.LOADLIB

And the dataset is on the volume:
SSF1.MQEXIT.LOADLIB ,, Z7SMS2


My program is linkedited with the AC=1 attribute
11 //LKED   EXEC PGM=IEWL,COND=(0,NE),
   //  PARM='RENT,NCAL,LIST,AMODE=31,RMODE=ANY,AC=1'

And the code that got it was:


 MODESET KEY=ZERO,MODE=SUP
 STORAGE OBTAIN,LENGTH=WORKLEN,LOC=(RES,ANY),ADDR=(1),SP=132

Why do I get the 047 abend?
==
This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity
to which they are addressed. If you have received this email in error please 
notify the system manager. This message
contains confidential information and is intended only for the individual 
named. If you are not the named addressee you
should not disseminate, distribute or copy this e-mail. Please notify the 
sender immediately by e-mail if you
have received this e-mail by mistake and delete this e-mail from your system. 
If you are not the intended recipient
you are notified that disclosing, copying, distributing or taking any action in 
reliance on the contents of this
information is strictly prohibited.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: EDGINERS erase problem

2009-06-19 Thread Pinnacle
- Original Message - 
From: R.S. r.skoru...@bremultibank.com.pl

Newsgroups: bit.listserv.ibm-main
Sent: Friday, June 19, 2009 4:44 PM
Subject: EDGINERS erase problem



I have a problem with EDGINERS ERASE job and 3490E-C22 standalone drives.
The following job:
//K10  EXEC PGM=EDGINERS
//SYSPRINT DD SYSOUT=*
//TAPE DD UNIT=(3490,,DEFER)
//SYSINDD *
 ERASE VOLUME(E12345) RACK(E12345)

Ends with


IOS000I 0572,**,SIM,**,**06,,**,,SRSKEDG
EDG6601E I/O ERROR ERASING VOLUME E12345,SRSKEDG ,K10 ,0572,T,,**- 
OP,UNKNOWN COND.  ,**,

 EXCP
EDG6601E CONT:-
IOS000I 0572,**,SIM,**,**06,,**,,SRSKEDG
EDG6624E VOLUME E12345 ERASE FAILED
EDG6631I UTILITY EDGINERS COMPLETED WITH RETURN CODE 12

I tried the same job on other drives. It fails on any 3490E-C22. It works 
on 3590-H and 3592 (with other media of course).
The 3490E drives can be used for read or write without problems. The 
problem occurs with EDGINERS only.


Any clue?


Open a PMR on the software side and a hardware ticket to look at the control 
unit.  SIM is usually a hardware failure, but can be caused by an incorrect 
channel program.  You can also try to POR the tape controller.


Regards,
Tom Conley 


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: ADCD V1.R10 and missing volumes

2009-06-19 Thread Edward Jaffe

Mike Myers wrote:

Hi to other ADCD users.

I have recently installed ADCD v1.10 only to find that any attempt to 
bring up DB2 wants DSN910.* data sets which are cataloged as being on 
ZADB91, but the 5-disk set I got has no disc containing files for 
these volumes. It also doesn't have ZADB92, which is referenced in the 
online description of the distribution at 
http://dtsc.dfw.ibm.com/MVSDS/'HTTPD2.ADCD.GLOBAL.HTML(READM110)'.


We have a z/OS 1.10 system based on ADCD. I just checked and it has 
hundreds of DSN910.* data sets on ZADB91 and about 150 files on ZADB92.


--
Edward E Jaffe
Phoenix Software International, Inc
5200 W Century Blvd, Suite 800
Los Angeles, CA 90045
310-338-0400 x318
edja...@phoenixsoftware.com
http://www.phoenixsoftware.com/

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: HYPERPAV Definitions

2009-06-19 Thread Zaromil Tisler
On Fri, 19 Jun 2009 14:16:47 -0500, Dave Kopischke 
dgkopisc...@oppenheimerfunds.com wrote:

On Fri, 19 Jun 2009 15:02:12 -0400, Swanson, Curt wrote:

Dave,

The 'WLMPAV' value of 'Yes' is correct for both Dynamic PAV  HYPERPAV.
The setup is the same for both; the only difference is the HYPERPAV feature
added on the 2107 storage subsystem.  We had Dynamic PAV before
HYPERPAV.

You still have to set WLMPAV to YES if you want ASM to exploit HYPERPAV, 
search in the archives for HYPERPAV postings from Jim Mulder.

-- 
Zaromil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


RES: EDGINERS erase problem

2009-06-19 Thread Roberto Pacheco
It think the problem is related to MIH (Missing Interrupt Handling), Try to
increase the number to 30 minutes for 3490-c22 tape addresses.

Regards
Roberto Pacheco
GFS Technical Support
Phone: +55 11 3817 6300
e-mail: pach...@gfs.com.br
web:    www.gfs.com.br




-Mensagem original-
De: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] Em nome de
R.S.
Enviada em: sexta-feira, 19 de junho de 2009 17:43
Para: IBM-MAIN@bama.ua.edu
Assunto: EDGINERS erase problem

I have a problem with EDGINERS ERASE job and 3490E-C22 standalone drives.
The following job:
//K10  EXEC PGM=EDGINERS
//SYSPRINT DD SYSOUT=*
//TAPE DD UNIT=(3490,,DEFER)
//SYSINDD *
  ERASE VOLUME(E12345) RACK(E12345)

Ends with


IOS000I 0572,**,SIM,**,**06,,**,,SRSKEDG 

EDG6601E I/O ERROR ERASING VOLUME E12345,SRSKEDG ,K10 
,0572,T,,**- OP,UNKNOWN COND.  ,**,
  EXCP 

EDG6601E CONT:- 

IOS000I 0572,**,SIM,**,**06,,**,,SRSKEDG 

EDG6624E VOLUME E12345 ERASE FAILED 

EDG6631I UTILITY EDGINERS COMPLETED WITH RETURN CODE 12

I tried the same job on other drives. It fails on any 3490E-C22. It 
works on 3590-H and 3592 (with other media of course).
The 3490E drives can be used for read or write without problems. The 
problem occurs with EDGINERS only.

Any clue?

-- 
Radoslaw Skorupka
Lodz, Poland


--
BRE Bank SA
ul. Senatorska 18
00-950 Warszawa
www.brebank.pl

Sąd Rejonowy dla m. st. Warszawy 
XII Wydział Gospodarczy Krajowego Rejestru Sądowego, 
nr rejestru przedsiębiorców KRS 025237
NIP: 526-021-50-88
Według stanu na dzień 01.01.2009 r. kapitał zakładowy BRE Banku SA (w
całości wpłacony) wynosi 118.763.528 złotych. W związku z realizacją
warunkowego podwyższenia kapitału zakładowego, na podstawie uchwały XXI WZ z
dnia 16 marca 2008r., oraz uchwały XVI NWZ z dnia 27 października 2008r.,
może ulec podwyższeniu do kwoty 123.763.528 zł. Akcje w podwyższonym
kapitale zakładowym BRE Banku SA będą w całości opłacone.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: ADCD V1.R10 and missing volumes

2009-06-19 Thread Mike Myers

Edward:

That's good. Where did you get the ZADB91 and ZADB92 volume .gz files? 
They were not in the 5 disk set that i received from IBM.


Mike

Edward Jaffe wrote:

Mike Myers wrote:

Hi to other ADCD users.

I have recently installed ADCD v1.10 only to find that any attempt to 
bring up DB2 wants DSN910.* data sets which are cataloged as being on 
ZADB91, but the 5-disk set I got has no disc containing files for 
these volumes. It also doesn't have ZADB92, which is referenced in 
the online description of the distribution at 
http://dtsc.dfw.ibm.com/MVSDS/'HTTPD2.ADCD.GLOBAL.HTML(READM110)'.


We have a z/OS 1.10 system based on ADCD. I just checked and it has 
hundreds of DSN910.* data sets on ZADB91 and about 150 files on ZADB92.




--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Storage

2009-06-19 Thread John Kelly
snip
Why do I get the 047 abend?
unsnip

if you're sure that the lib is the running system's APF list (like from 
ISRDDN APF) the it's usually a STEPLIB that contains an unauthorized 
library.

Jack Kelly
202-502-2390 (Office)

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Storage

2009-06-19 Thread Wayne Driscoll
Linking with AC=1 only means that this program will run APF authorized 
when run as jobstep program with all libraries in the STEPLIB (or JOBLIB) 
concatenation are defined in the APF list.  However, exits are not run as 
jobstep programs, so as such inherit APF authorization from the jobstep 
TCB they are running under.  Apparently this particular exit does NOT run 
APF authorized, so the ABEND047 is perfectly valid.  I know nothing about 
MQ so I don't know if there is a way to get this exit invoked with APF 
authorization or not, but clearly in your case it does not.  I believe 
that there are lists that specialize in MQ and this query might be better 
answered on one of them.  What you should probably do is issue a TESTAUTH 
macro to see if you are authorized, and if not (as in this case) don't 
issue the MODESET and don't attempt to allocate storage from an authorized 
subpool.

===
Wayne Driscoll
OMEGAMON DB2 L3 Support/Development
wdrisco(AT)us.ibm.com
===



Ward, Mike S mw...@ssfcu.org 
Sent by: IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu
06/19/2009 03:52 PM
Please respond to
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu


To
IBM-MAIN@bama.ua.edu
cc

Subject
Storage






Hello all, I tried to issue these command from my MCA security exit, but
received this error:

DUMP TITLE=SEDQ,ABN= 047-,C=L8200.600.CHIN,M=CSQXDISP,P
   SW=478D040098F90F76
+CSQX111E SEDQ CSQXDISP User channel exit error, TCB=008C02B0 888
 reason=047000-


I checked the APF table and my loadlib is in there:

+Z7SMS2  SSF1.MQEXIT.LOADLIB

And the dataset is on the volume:
SSF1.MQEXIT.LOADLIB ,, Z7SMS2


My program is linkedited with the AC=1 attribute
11 //LKED   EXEC PGM=IEWL,COND=(0,NE),
   //  PARM='RENT,NCAL,LIST,AMODE=31,RMODE=ANY,AC=1'

And the code that got it was:
 

 MODESET KEY=ZERO,MODE=SUP
 STORAGE OBTAIN,LENGTH=WORKLEN,LOC=(RES,ANY),ADDR=(1),SP=132

Why do I get the 047 abend?
==
This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity
to which they are addressed. If you have received this email in error 
please notify the system manager. This message
contains confidential information and is intended only for the individual 
named. If you are not the named addressee you
should not disseminate, distribute or copy this e-mail. Please notify the 
sender immediately by e-mail if you
have received this e-mail by mistake and delete this e-mail from your 
system. If you are not the intended recipient
you are notified that disclosing, copying, distributing or taking any 
action in reliance on the contents of this
information is strictly prohibited.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Storage

2009-06-19 Thread Chuck Arney
Or, the exit is not invoked APF authorized.  The AC(1) specification for
the load module only applies to the executed (job step) program.  Not to
just any program that is invoked.

Chuck Arney
illustro Systems International, LLC
http://www.illustro.com
Internet-enable your applications with z/Ware V2
Voice: 214-800-8900 X#5562
--
This e-mail is private and may be confidential and is for the intended
recipient only. If misdirected, please notify us by telephone and
confirm that it has been deleted from your system and any copies
destroyed. If you are not the intended recipient you are strictly
prohibited from using, printing, copying, distributing or disseminating
this e-mail or any information contained in it.  
  
We use reasonable measures to virus scan all E-mails leaving illustro
but no warranty is given that this E-mail and any attachments are virus
free. You should ensure you have adequate measures in place for your own
virus checking.

 -Original Message-
 From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
 Behalf Of John Kelly
 Sent: Friday, June 19, 2009 4:24 PM
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: Storage
 
 snip
 Why do I get the 047 abend?
 unsnip
 
 if you're sure that the lib is the running system's APF list (like
from
 ISRDDN APF) the it's usually a STEPLIB that contains an unauthorized
 library.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: INFOZIP 2Gb

2009-06-19 Thread Bob Woodside
On Friday 19 June 2009, Vikesh Bhoola wrote:
  You might try double quotes around the file name construct,
  with single quotes embedded to prevent prefixing; so:
 
  /u/userid/zip31b: zip -av -1 /tmp/BIG_FILE.zip
  //'userid.BIG.FILE'


This should do the trick:

/u/userid/zip31b: zip -av -1 /tmp/BIG_FILE.zip //\'userid.BIG.FILE\'

The single quotes have to be escaped. (If this is the same userid you're 
currently logged in as, you don't need to specify the userid or the 
quotes.)

It's not relevant for this file, but if the MVS file you are 
referencing in Unix land is a PDS member, you have to escape the 
parentheses, too, like this:

//\'userid.BIG.PDS\(MEMBER\)\'


Cheers,
Bob


Bob Woodside
Woodsway Consulting, Inc.
rwoodsi...@woodsway.com
http://www.woodsway.com


 Thanks, I tried that, still get :

 /u/userid/zip31b: zip -av -1 /tmp/BIG_FILE.zip //'userid.BIG.FILE'
 Translating to ASCII...
 zip warning: name not matched: //'userid.BIG.FILE'

 zip error: Nothing to do! (/tmp/BIG_FILE.zip)
 Please Note: This email and its contents are subject to our email
 legal notice which can be viewed at
 http://www.sars.gov.za/Email_Disclaimer.pdf

 -
- For IBM-MAIN subscribe / signoff / archive access instructions, send
 email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: BPXF135E RETURN CODE 00000081, REASON CODE 0594003D. THE MOUNT FAILED FOR FILE SYSTEM SVS.RESZS1.OMVS.ROOT.

2009-06-19 Thread Bob Woodside
On Thursday 18 June 2009, Bonno, Tuco wrote:
 or, get into omvs itself  ( at ispf6, do a tso omvs command ) and
 then issue the df command -- 

Or just oshell df.


Cheers,
Bob


Bob Woodside
Woodsway Consulting, Inc.
rwoodsi...@woodsway.com
http://www.woodsway.com

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: INFOZIP 2Gb

2009-06-19 Thread Bob Woodside
On Tuesday 16 June 2009, Kirk Wolf wrote:
 Try it - it seems to give you an archive with no files in it.   After
 all, what would the file name in the zip directory be?

Well, yes and no. Let's just say no named files. Unzip shows 
something like this:

 unzip -l ../backup.zip
 Archive:  ../backup.zip
   Length Date   TimeName
     
 20480  06-19-09 20:27   -
     ---
 20480   1 file


Reading a little further in the man page, we find:

 The backup can be restored using the command

   unzip -p backup | tar xf -

It's sort of using zip in place of gzip or bzip2.

It's a little strange, but it actually works. 


Cheers,
Bob


Bob Woodside
Woodsway Consulting, Inc.
rwoodsi...@woodsway.com
http://www.woodsway.com



 On Mon, Jun 15, 2009 at 6:30 PM, Bob Woodsideibm...@woodsway.com 
wrote:
  On Monday 15 June 2009, Kirk Wolf wrote:
  I could be wrong, but I don't believe that zip allows input from
  stdin. If info-zip uses fopen() to open files, then it might be
  possible to read mvs datasets directly as input files.
 
     I've never tried it, but here's a quote from the zip man page:
         zip  also  accepts a single dash (-) as the name of a
  file to be compressed, in which case it will  read  the  file
   from standard  input, allowing zip to take input from another
  program. For  example:
 
                tar cf - . | zip backup -
 
  Cheers,
  Bob
 
  
  Bob Woodside
  Woodsway Consulting, Inc.
  rwoodsi...@woodsway.com
  http://www.woodsway.com
 
  ---
 --- For IBM-MAIN subscribe / signoff / archive access instructions,
  send email to lists...@bama.ua.edu with the message: GET IBM-MAIN
  INFO Search the archives at
  http://bama.ua.edu/archives/ibm-main.html

 -
- For IBM-MAIN subscribe / signoff / archive access instructions, send
 email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: INFOZIP 2Gb

2009-06-19 Thread Bob Woodside
On Friday 19 June 2009, Vikesh Bhoola wrote:
 I finally managed to get enough space for a ZFS to test the zip of a
 file  2Gb : I successfully zipped a 4.7GB file (in USS).

Great! It looks like you're getting the same results I did.

 Translating to ASCII...
   adding: È_ø¬¿ñèë¡ÈÌÈ

See comments on the Info-ZIP forum where I offer some SWAG 
theorizing about how I must have broken the name display  --  and 
somebody (EG, I think) explains the use of the 3 name fields.

 Also, I know it was mentioned by Timothy earlier that 
 ...it may be possible to read directly from MVS files 
 using // syntax. 
 I tried it using :
 /u/userid/zip31b: zip -av -1 /tmp/BIG_FILE.zip //userid.BIG.FILE

See my other post from a few minutes ago.

 Bob, please let me if you managed to get the -D_LARGE_FILE support
 working for cmsmvs/mvs.mki makefile I tried to following your
 descriptions for the changes on this, but I still get zip error: Not
 supported (LARGE_FILE_SUPPORT enabled but OS not supporting it).

As well as I recall, I had that version building cleanly, and 
working with small files, but I hadn't the chance yet to try it with a 
large one.

I've been really busy this week with that darn day job, and haven't 
had time to follow up on this since last weekend. (Can't really 
complain about that in today's economy, a week like that is a Good 
Thing!). 

I have posted a few comments on the Info-ZIP forum, and read some 
comments from Lutz, EG, and sms, but that's about it. Maybe this 
weekend I can refresh my memory of what I did and send you a proper 
diff.


Cheers,
Bob


Bob Woodside
Woodsway Consulting, Inc.
rwoodsi...@woodsway.com
http://www.woodsway.com


 Thanks for all assistance thus far,
 Vikesh
 Please Note: This email and its contents are subject to our email
 legal notice which can be viewed at
 http://www.sars.gov.za/Email_Disclaimer.pdf

 -
- For IBM-MAIN subscribe / signoff / archive access instructions, send
 email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html