Re: z/OS and Linux on same z/VM Image

2008-03-18 Thread Timothy Sipples
John McKown writes:
We have, if I remember, one vendor product which is based on
the MSU rating of the system.

Yes, that would be the exception. In fairness there are a few IBM products
charged according to full capacity, but all the ones I've run into are
products that predated (by a lot) the introduction of VWLC.  And in many of
those cases they're withdrawn products.

If you do have software charged by full capacity MSUs, then that might be a
factor, but of course you'd have to weigh that together with all the other
factors. YMMV.

- - - - -
Timothy Sipples
IBM Consulting Enterprise Software Architect
Specializing in Software Architectures Related to System z
Based in Tokyo, Serving IBM Japan and IBM Asia-Pacific
E-Mail: [EMAIL PROTECTED]
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Assembler to C or C++ Conversion

2008-03-18 Thread Timothy Sipples
Perhaps a dumb question, but what kind of Assembler? (Can we assume 390?)
And what does it do? Does it run with any middleware involved?

- - - - -
Timothy Sipples
IBM Consulting Enterprise Software Architect
Specializing in Software Architectures Related to System z
Based in Tokyo, Serving IBM Japan and IBM Asia-Pacific
E-Mail: [EMAIL PROTECTED]

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


Re: Cloning a RACF user profile

2008-03-18 Thread Support, DUNNIT SYSTEMS LTD.
David,

That did the trick.

A big thanks and a virtual beer to you. And thanks to the other responders, as 
always.

Jerry

On Mon, 17 Mar 2008 20:25:48 -0400, David Andrews 
[EMAIL PROTECTED] wrote:

On Mon, 2008-03-17 at 17:26 -0500, Support, DUNNIT SYSTEMS LTD. wrote:
 --- TSO/E LOGON --

 IKJ56487I THE ACCOUNT NUMBER ACCT# HAS NOT BEEN AUTHORIZED FOR
 THIS USERID
 What am I doing wrong or what else needs to be done or is there a surefire
 way to clone a new userid from an existing one?

RDEF ACCTNUM  UACC(NONE)
AU  ... TSO(ACCTNUM()...)
PE  CL(ACCTNUM) ID()
SETR REFR RACL(ACCTNUM)

--
David Andrews
A. Duda and Sons, Inc.
[EMAIL PROTECTED]

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


Re: Cloning a RACF user profile

2008-03-18 Thread Jan MOEYERSONS
A big thanks and a virtual beer to you. And thanks to the other responders, as
always.

 What am I doing wrong or what else needs to be done or is there a surefire
 way to clone a new userid from an existing one?

Being confronted with similar issue, I would like to know if indeed there is
a sure-fire way of cloning a userid and all of its permissions from an
existing one? How would one go about that?

Thanks,

Jantje.

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


RACF, Cloning Userids ADCD

2008-03-18 Thread Terry Sambrooks
Hi,

On the general question of is there a sure-fire way of cloning a userid
within RACF, I cannot provide an answer but am able to offer insight I think
based on experience with the ADCD and a smattering of knowledge gained in
such an environment.

Remember that Userids in RACF belong to Groups and if access authorities to
other resources such as ACCTNUM, TSOPROC, JCL, OPE, Data sets etc., are
granted at the group level, then any new Userid added to that group
automatically picks up the same access authorities.

Unfortunately the Userids IBM provided with the ADCD system were granted
access to resources at the Userid rather Group level. (Check the Access List
for ACCTNUM/ACCT# and a list of Userids prefixed by ADCD will be shown.)
This inhibits simple cloning, whereas Group access aids it.

One lesson which was given to me by a colleague was to switch from using the
ISPF/RACF panels and revert to raw ISPF commands, held in a PDS member and
executed via batch TSO. This provides both a visible record of what has been
done, and the capability to reproduce the same if required.

Kind regards - Terry 

Terry Sambrooks
Director
KMS-IT Limited
228 Abbeydale Road South
Dore, Sheffield, S17 3LA, UK

Tel: +44 (0)114 262 0933
WEB: www.legac-e.co.uk

Company Reg: 3767263 at the above address

All outgoing E-mail is scanned, but it remains the recipient's
responsibility to ensure their system is protected from spy-ware, trojans,
viruses, and worms.  

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


Re: Assembler to C or C++ Conversion

2008-03-18 Thread Don Higgins
Has anyone run across a software package that will successfully convert 
Assembler code to working C or C++ code or, alternatively, allow Assembler 
code to run in a server-based environment more or less as is (much like 
MicroFocus does for COBOL code)?

Thanks in advance - John Bachiochi

John, all

If you need the speed of native code and portability, then check out 
http://www.smltd.com/.  They offer mainframe assembler to C and COBOL.  
However any such conversion requires extensive testing and both the initial 
conversion and the support of the generated code my be expensive 
particularly if you are going to continue to maintain the origianl code also.

Another option to consider is to use the z390 portable mainframe assembler 
and emulator SOA approach.  The latest z390 v1.4.01 with z9 and z10 opcode 
support can run SOA services on any Windows or Linux server.  Client 
applications in any language running on a TCP/IP connected network can then 
invoke those z390 mainframe assembler services via TCP/IP sockets messaging.

There is a demo that installs with z390 that does the following:

1.  First the demo main program which calls two separate subroutines to 
perform 2 different integer and decimal floating point numeric calculation 
services can be assembled, linked, and executed using z390 standard static 
linking.  Run soa\demo\DEMOSTD.BAT on Windows or Linux.

2.  Second the same 3 demo source code programs can be automatically 
assembled and linked into an SOA application with the following generated 
executable components:

a.  DEMOMAIN.390 - executable application main client program linked with 
generated stub CSECT for each called service which dynamically links to client 
soa manager.

b.  DEMOCMGR.390 - generated client SOA manager for this application which 
packages service requests into TCP/IP socket messages, sends them to SOA 
service manager, waits for response, moves updated parameter field results 
back to original parameter areas, and returns to caller.

c.  DEMOSMGR.390 - generated service SOA manager for this application 
which can run on any Windows or Linux server on the TCP/IP netowrk and 
waits for TCP/IP socket connections, receives requests, loads service modules 
if not already loaded, calls service module, returns updated paramters to 
caller.

d.  DEMOSUB1.390 - subroutine 1 linked as separate loadable service.

e.  DEMOSUB2.390 - subroutine 2 linked as separate loadable service. 

3.  You can generate this demo SOA applicaton from the 3 source programs 
and a single SOA generator definition macro call which drives the macro driven 
generation process.   Once generated, you can run this demo on any 
combination of Windows and/or Linux client and server processors.  For 
example, you can start the DEMOSMGR.390 server program running on your 
Windows XP/Vista desktop and then run one or more copies of the client 
appication DEMOCMGR.390 on your wireless laptop on the same wireless router 
as your desktop to provide TCP/IP connectivity.  You can pick the port 
number you want to use at generation time.  Of course, you also can run both 
the server and the client on the same PC as well. 

For more details on this z390 SOA option visit the following page:

http://z390.sourceforge.net/z390_Service_Oriented_Architecture_Support.htm

Don Higgins
[EMAIL PROTECTED]
 

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


Re: Cloning a RACF user profile

2008-03-18 Thread Anthony Saul Babonas
We're fortunate enough to have the Vanguard products which do this easily.
I did write a process that 
read through the IRRDBU00 output for all instances of the user profile from
which you wish to clone.  Once 
the data is collected it's simple enough to create commands from the output.

A 2 step dfsort job can do it all. 

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Jan MOEYERSONS
Sent: Tuesday, March 18, 2008 3:25 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Cloning a RACF user profile

A big thanks and a virtual beer to you. And thanks to the other 
responders, as always.

 What am I doing wrong or what else needs to be done or is there a 
 surefire way to clone a new userid from an existing one?

Being confronted with similar issue, I would like to know if indeed there is
a sure-fire way of cloning a userid and all of its permissions from an
existing one? How would one go about that?

Thanks,

Jantje.

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email
to [EMAIL PROTECTED] 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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Assembler to C or C++ Conversion

2008-03-18 Thread Andreas F. Geissbuehler
On Mon, 17 Mar 2008 12:56:09 -0500, John Bachiochi 
Has anyone run across a software package that will successfully convert
Assembler code to working C or C++ code or, alternatively, allow
Assembler code to run in a server-based environment more or less as is
(much like MicroFocus does for COBOL code)?

In all such conversions the interfaces and the quality of the sourse code 
are the two foremost, major issues.

Your Assembler code may depend on information contained in OS control 
blocks, take advantage of various features of the OS, the file/data services, 
its memory mangement, exception handling, ...  No matter what, these issues 
require human intervention.

Most older Assembler programs are of very poor quality. Without a lot of pre 
and post conversion cleanup, (re-) structuring, the computer generated C 
code will be incomprehensible (to most humans).

As a pre-requisite I'd consider pre-conversion cleaanup as Stage-1 (there are 
a number of us who do things like that for a living...). Then I'd re-evaluate 
my 
options. For example, I view Don Higgin's approach as a far superior option 
than the prospect of maintaining artificial C code full of booby traps.

Andreas F. Geissbuehler
AFG Consultants Inc.
http://www.afgc-inc.com/

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


Re: Easy way to convert IEFBR14 and IDCAMS deletes to HDELETE

2008-03-18 Thread Staller, Allan
snip
1)  Does IDCAMS keyword NOSCRATCH make HSM bring in a dataset before 
deleting it just like NONVSAM does?  I may have observed that
behavour...job 
had NONVSAM NOSCRATCH and HSM brought it in first, after I removed the 
NONVSAM and I think it still came in (didn't confirm conclusively) until
I 
removed the NOSCRATCH.  BTW this was on a user-specific brodcast
dataset.
/snip

No. Delete NSCR only references the catalog entry, not the dataset. I
have used this quirk in a few recovery situations.

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


Re: z/OS 1.7 to z/OS 1.9 Migration - Increase in CPU/MSU Consumption

2008-03-18 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of Cheryl Walker
 
 John,
 
 Where are you getting the message.  It certainly should be 
 available to the public, and many of my readers have recently 
 downloaded it.  Here is a direct link - 
 http://www-03.ibm.com/support/techdocs/atsmastr.nsf/WebIndex/PRS268.
 
 Does it occur when you try to download just the program or 
 the program plus Java?  Is anyone else having trouble?  It 
 only supports Windows XP.

Program with Java (not sure if I need the IBM Java; my workstation
already has the Java 6 JRE installed).  I get an error box with
Internet Explorer was not able to open this Internet site.  The
requested site is either unavailable or cannot be found. Please try
again later.  Same result for the program without Java (just now tried
that).

When I manually navigate to the correct folder on
ftp.software.ibm.com, right-click on either package and select Copy
to Folder..., I get the access denied error.

A colleague said he downloaded it earlier yesterday morning.  I wonder
if IBM has their server configured to remember domains that have
downloaded it, and limit each requesting domain to one download?

-jc-

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


Re: Cloning a RACF user profile

2008-03-18 Thread Walt Farrell
On Tue, 18 Mar 2008 03:25:05 -0500, Jan MOEYERSONS
[EMAIL PROTECTED] wrote:

A big thanks and a virtual beer to you. And thanks to the other responders, as
always.

 What am I doing wrong or what else needs to be done or is there a surefire
 way to clone a new userid from an existing one?

Being confronted with similar issue, I would like to know if indeed there is
a sure-fire way of cloning a userid and all of its permissions from an
existing one? How would one go about that?

The IBM Tivoli zSecure Admin product can clone users for you.

Alternatively, you can get the DBSYNC tool from the RACF Downloads page at
http://www-03.ibm.com/servers/eserver/zseries/zos/racf/goodies.html and with
a bit of work it can do what you want.

It will take as input the flat file generated by IRRDBU00, and then generate
commands to recreate the database.  From those commands, you could select
all the commands that reference the existing user ID, and then change the ID
to a new one, and run the commands.  Then you'd have a user just like the
original one, except for the password that you'd have to specify.

-- 
  Walt Farrell, CISSP
  IBM STSM, z/OS Security Design

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


Re: Cloning a RACF user profile

2008-03-18 Thread Mark Zelden
On Tue, 18 Mar 2008 03:25:05 -0500, Jan MOEYERSONS
[EMAIL PROTECTED] wrote:

Being confronted with similar issue, I would like to know if indeed there is
a sure-fire way of cloning a userid and all of its permissions from an
existing one? How would one go about that?


Not that I know of, unless you have one of the ISV RACF admin products like
BETA88,  Vanguard, Consul/RACF (purchased by IBM, now Tivoli RACF admin).

That is one of the things I always liked about ACF2.  You just copy a userid,
or add a new one with the correct UID and everything works.  Every shop
I've ever been at (and I've been at a lot - especially when I was consulting),
it was always a battle after my userid was added.   A permit here, a permit
there and eventually I got everything I needed.

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:[EMAIL PROTECTED]
z/OS Systems Programming expert at http://expertanswercenter.techtarget.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html

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


netstat -t concerns

2008-03-18 Thread Joe Messineo
When running the netstat -t command, I am getting a lot of established 
connections which do not have an ApplName or and LuName tied to them.  
These have bytes in and bytes out counts.

I have tried lowering the values to the TIMEMARK and SCANINTERVAL 
parameters but this has no effect on these occurences.   These can account 
for 20-30% of the total connections during peak hours.

My feeling is these are also tied to some of our older 3270 emulator 
programs.   Perhaps these emulators are not breaking the connection properly?

Is this something to be concerned about?

Are there ways to reduce or eliminate these occurences?

Thanks in advance
Joe

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


Re: DFHSM QUESTION - Migrate ML1 To ML2 - Thank You

2008-03-18 Thread willie bunter
Thanks David.
   
  Thanks to all who responded.

O'Brien, David W. (NIH/CIT) [C] [EMAIL PROTECTED] wrote:
  Willie,

I believe the answer to your question is Yes, based on the following extract 
from the HSM Reference manual:

The FREEVOL command moves all migration copies of non-SMS-managed data
sets meeting a specified age criterion from DFSMShsm migration volumes.
Migration copies meeting the specified age criterion are: 
£ Moved from a specified migration level 1 volume to other migration
level 1 or level 2 volumes 
£ Moved from a specified migration level 2 DASD volume to other 
migration level 2 volumes. 

Since the AGE(0) will not apply to SMS managed datasets on the ML1 volume, 
second pass with 
HSEND FREEVOL MVOL(HSM002) TARGETLEVEL(ML1)
will probably be necessary. 



From: willie bunter [mailto:[EMAIL PROTECTED]
Sent: Mon 3/17/2008 12:13 PM
To: IBM-MAIN@bama.ua.edu
Subject: DFHSM QUESTION - Migrate ML1 To ML2



Hallo To All,

I have to migrate a ML1 to ML2. Below is the command I will use:
HSEND FREEVOL MVOL(HSM002) AGE(0) TARGETLEVEL(ML2)

My question is once the migrate has completed do I need to issue command :
HSEND FREEVOL MVOL(HSM002) TARGETLEVEL(ML1)

Thanks.


-
Looking for last minute shopping deals? Find them fast with Yahoo! Search.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] 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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


   
-
Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  Try it now.

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


Re: Cloning a RACF user profile

2008-03-18 Thread Rick Fochtman

---snip


Not that I know of, unless you have one of the ISV RACF admin products like
BETA88,  Vanguard, Consul/RACF (purchased by IBM, now Tivoli RACF admin).

That is one of the things I always liked about ACF2.  You just copy a userid,
or add a new one with the correct UID and everything works.  Every shop
I've ever been at (and I've been at a lot - especially when I was consulting),
it was always a battle after my userid was added.   A permit here, a permit
there and eventually I got everything I needed.
 


unsnip-
Mark, that's why I'm such a strong advocate of the use of user groups in 
RACF. Add the user, connect him to the right groups, anv voila, you're done.


And I always put an entry in the GLOBAL DATASET table such that he has 
ALTER access to datasets that start with his own userid.


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


ISPF Backup Files

2008-03-18 Thread Thompson, Steve
I was going through all the files associated with one of my TSO IDs and
I found a number of ISPF Backup datasets that have been archived.

How or why would these get orphaned (if they have been archived, I
consider them orphaned)? The format of the names is:
userid.ISRn.BACKUP which matches the format for current edit backup
datasets (I'm currently editing source and one of the backups won't let
me look at it, because it is in use).

I have recalled the orphaned ones and I can look in them. I can see some
of them are for source that I have updated (and there are 2-3 backups
for a member), and ultimately promoted.

It would seem to me that should I have lost a TSO session through
timeout or session lost or some such, that the next time I went into
edit I should have been prompted for edit recovery and then these files
should have gone away upon successful termination of the edit session.

Regards,
Steve Thompson

-- All opinions expressed by me are my own and may not necessarily
reflect those of my employer. --




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


Re: netstat -t concerns

2008-03-18 Thread Joe Messineo
Sometimes these connections will stay established for hours.   Certain subnets 
(including our office) have no such connections.  We have recently upgraded 
our 3270 emulation software to support encryption.

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


Re: Video of mainframe being shaken

2008-03-18 Thread Jon Brock
I wonder if you were battling tin whiskers.  NASA had to deal with
those on some of their space-race spacecraft.

Jon




snip
We had a bunch of Amdahl 6280's that had a problem with a string of some
metallic substance that would grow (as a crystal) from the nameplate
down to the platter.
/snip

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


Re: Cloning a RACF user profile

2008-03-18 Thread Mark Zelden
On Tue, 18 Mar 2008 08:49:09 -0500, Rick Fochtman [EMAIL PROTECTED] wrote:

---snip

Not that I know of, unless you have one of the ISV RACF admin products like
BETA88,  Vanguard, Consul/RACF (purchased by IBM, now Tivoli RACF admin).

That is one of the things I always liked about ACF2.  You just copy a userid,
or add a new one with the correct UID and everything works.  Every shop
I've ever been at (and I've been at a lot - especially when I was consulting),
it was always a battle after my userid was added.   A permit here, a permit
there and eventually I got everything I needed.


unsnip-
Mark, that's why I'm such a strong advocate of the use of user groups in
RACF. Add the user, connect him to the right groups, anv voila, you're done.

And I always put an entry in the GLOBAL DATASET table such that he has
ALTER access to datasets that start with his own userid.


Most shops use groups properly. But the connecting to the right groups is 
the part that is the problem.  Some RACF admins have a template by job
function or perhaps list an existing user and then connect the new user to
those groups.  But I don't see all users are created equally in the same
job function in my experience.

I challenge you or anyone else on this list who can, to get a list of connect
groups for their own userid and several sysprogs with the same job function.
I'll bet you will find differences in many cases.   

The same could happen with ACF2, but in my experience I don't see ACF2
rules being written down to the specific userid level in the UID string.

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:[EMAIL PROTECTED]
z/OS Systems Programming expert at http://expertanswercenter.techtarget.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html

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


Re: Cloning a RACF user profile

2008-03-18 Thread Anthony Saul Babonas
The add on products make this effortless but it's really not that hard to
develop yourself.  We're doing 
this now regularly as part of a large Top Secret to RACF conversion.  
Conceptually one should know the layout of the unload file, IRRDBU00 or
TSSCFILE (which are somewhat architecturally
similar) , find the records from which to clone, format the commands and
apply them.

I have some of my old RACF to RACF cloning JCL still around somewhere, I'll
go check my diskettes!

   

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Mark Zelden
Sent: Tuesday, March 18, 2008 8:34 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Cloning a RACF user profile

On Tue, 18 Mar 2008 03:25:05 -0500, Jan MOEYERSONS
[EMAIL PROTECTED] wrote:

Being confronted with similar issue, I would like to know if indeed 
there is a sure-fire way of cloning a userid and all of its permissions 
from an existing one? How would one go about that?


Not that I know of, unless you have one of the ISV RACF admin products like
BETA88,  Vanguard, Consul/RACF (purchased by IBM, now Tivoli RACF admin).

That is one of the things I always liked about ACF2.  You just copy a
userid, or add a new one with the correct UID and everything works.  Every
shop I've ever been at (and I've been at a lot - especially when I was
consulting),
it was always a battle after my userid was added.   A permit here, a permit
there and eventually I got everything I needed.

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead Zurich North America /
Farmers Insurance Group - ZFUS G-ITO mailto:[EMAIL PROTECTED] z/OS
Systems Programming expert at http://expertanswercenter.techtarget.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email
to [EMAIL PROTECTED] 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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Cloning a RACF user profile

2008-03-18 Thread Ed Finnell
 
In a message dated 3/18/2008 8:52:01 A.M. Central Daylight Time,  
[EMAIL PROTECTED] writes:

Mark, that's why I'm such a strong advocate of the use of user groups  in 
RACF. Add the user, connect him to the right groups, anv voila, you're  done.



Isn't it just easier to add USER002 model  USER001 to Group User? There used 
to be a TSOADD clist with SystemPAC that  would add UADS and RACF ID's but 
don't think it used the model. Anyway think  it was easily fixable. 








**It's Tax Time! Get tips, forms, and advice on AOL Money  
Finance.  (http://money.aol.com/tax?NCID=aolprf000301)

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


Can I know programmatically if a load module has been zapped?

2008-03-18 Thread David Eisenberg
Anyone,

Might there be a way, from within an assembler module, to know whether or 
not a given load module has been modified via SPZAP? I'm perfectly happy to 
LOAD the load module, if that's any help.

I know that AMBLIST can tell me if something has been zapped, but that 
didn't seem like an easy interface to use from within an assembler module.

Thanks so much!

David

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


Re: netstat -t concerns

2008-03-18 Thread Hal Merritt
I think I recall that some of the NETSTAT displays include both open and
recently closed connections. I'll bet that recently closed connections
are what you are seeing.   


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Joe Messineo
Sent: Tuesday, March 18, 2008 8:28 AM
To: IBM-MAIN@bama.ua.edu
Subject: netstat -t concerns

When running the netstat -t command, I am getting a lot of established 
connections which do not have an ApplName or and LuName tied to them.  
These have bytes in and bytes out counts.

I have tried lowering the values to the TIMEMARK and SCANINTERVAL 
parameters but this has no effect on these occurences.   These can
account 
for 20-30% of the total connections during peak hours.

My feeling is these are also tied to some of our older 3270 emulator 
programs.   Perhaps these emulators are not breaking the connection
properly?

Is this something to be concerned about?

Are there ways to reduce or eliminate these occurences?

Thanks in advance
Joe





NOTICE: This electronic mail message and any files transmitted with it are 
intended
exclusively for the individual or entity to which it is addressed. The message, 
together with any attachment, may contain confidential and/or privileged 
information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution 
is strictly prohibited. If you have received this message in error, please 
immediately advise the sender by reply email and delete all copies.

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


Re: ISPF Backup Files

2008-03-18 Thread Pinnacle
- Original Message - 
From: Thompson, Steve [EMAIL PROTECTED]

Newsgroups: bit.listserv.ibm-main
Sent: Tuesday, March 18, 2008 9:59 AM
Subject: ISPF Backup Files



I was going through all the files associated with one of my TSO IDs and
I found a number of ISPF Backup datasets that have been archived.

How or why would these get orphaned (if they have been archived, I
consider them orphaned)? The format of the names is:
userid.ISRn.BACKUP which matches the format for current edit backup
datasets (I'm currently editing source and one of the backups won't let
me look at it, because it is in use).

I have recalled the orphaned ones and I can look in them. I can see some
of them are for source that I have updated (and there are 2-3 backups
for a member), and ultimately promoted.


Steve,

APAR OA23616 will correct the issue with orphan edit recovery files.

Regards,
Tom Conley

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


Re: Can I know programmatically if a load module has been zapped?

2008-03-18 Thread Arthur T.
On 18 Mar 2008 07:45:19 -0700, in bit.listserv.ibm-main 
(Message-ID:[EMAIL PROTECTED]) 
[EMAIL PROTECTED] (David Eisenberg) wrote:


Might there be a way, from within an assembler module, to 
know whether or not a given load module has been modified 
via SPZAP? I'm perfectly happy to LOAD the load module, if 
that's any help.


I know that AMBLIST can tell me if something has been 
zapped, but that didn't seem like an easy interface to use 
from within an assembler module.


 If there's information about the zap, it'll be in the 
directory entry.  If I wanted to do this, I'd look at the 
code in the PDS command from CBT.  (Or, maybe I'd look into 
calling the PDS command and reading its output.)


 However, it's possible to zap a module and not leave 
footprints, though it's not the default.  You haven't said 
why you want the info, so we can't tell how important 
stealth zapping is to you.


--
I cannot receive mail at the address this was sent from.
To reply directly, send to ar23hur at intergate dot com

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


Re: z/OS 1.7 to z/OS 1.9 Migration - Increase in CPU/MSU Consumption

2008-03-18 Thread Edward Jaffe

Chase, John wrote:

When I manually navigate to the correct folder on
ftp.software.ibm.com, right-click on either package and select Copy
to Folder..., I get the access denied error.
  


Sounds like a firewall/proxy error.


A colleague said he downloaded it earlier yesterday morning.  I wonder
if IBM has their server configured to remember domains that have
downloaded it, and limit each requesting domain to one download?
  


Doubtful.

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

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


Re: Can I know programmatically if a load module has been zapped?

2008-03-18 Thread Binyamin Dissen
On Tue, 18 Mar 2008 09:42:15 -0500 David Eisenberg [EMAIL PROTECTED]
wrote:

:Might there be a way, from within an assembler module, to know whether or 
:not a given load module has been modified via SPZAP? I'm perfectly happy to 
:LOAD the load module, if that's any help.

It won't.

:I know that AMBLIST can tell me if something has been zapped, but that 
:didn't seem like an easy interface to use from within an assembler module.

Use IEWBIND. You need the IDR data.

--
Binyamin Dissen [EMAIL PROTECTED]
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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Can I know programmatically if a load module has been zapped?

2008-03-18 Thread McKown, John
 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:[EMAIL PROTECTED] On Behalf Of David Eisenberg
 Sent: Tuesday, March 18, 2008 9:42 AM
 To: IBM-MAIN@bama.ua.edu
 Subject: Can I know programmatically if a load module has been zapped?
 
 
 Anyone,
 
 Might there be a way, from within an assembler module, to 
 know whether or 
 not a given load module has been modified via SPZAP? I'm 
 perfectly happy to 
 LOAD the load module, if that's any help.
 
 I know that AMBLIST can tell me if something has been zapped, 
 but that 
 didn't seem like an easy interface to use from within an 
 assembler module.
 
 Thanks so much!
 
 David

Actually, doing a LINK to AMBLIST and parsing the output might be the
easiest thing! But if you want to try it yourself, read and understand
the following manual in its entirety! It is all about using IEWBIND.

http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2B271/CCON
TENTS

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged
and/or confidential.  It is for intended addressee(s) only.  If you are
not the intended recipient, you are hereby notified that any disclosure,
reproduction, distribution or other use of this communication is
strictly prohibited and could, in certain circumstances, be a criminal
offense.  If you have received this e-mail in error, please notify the
sender by reply and delete this message without copying or disclosing
it. 

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


Re: ISPF Backup Files

2008-03-18 Thread Eric Bielefeld
I believe that the way you described the backup datasets is the way it works.  
If your TSO session times out, and you're in the middle of an edit session, 
when you next do an ISPF edit, you get a message saying you were editing such 
and such, and have the option to resume.  If you resume your edit, and then 
exit normally, the dataset goes away.  At least thats the way it worked in the 
past, with z/OS 1.2.

Eric

 Thompson wrote: 
 I was going through all the files associated with one of my TSO IDs and
 I found a number of ISPF Backup datasets that have been archived.
 
 How or why would these get orphaned (if they have been archived, I
 consider them orphaned)? The format of the names is:
 userid.ISRn.BACKUP which matches the format for current edit backup
 datasets (I'm currently editing source and one of the backups won't let
 me look at it, because it is in use).
 
 I have recalled the orphaned ones and I can look in them. I can see some
 of them are for source that I have updated (and there are 2-3 backups
 for a member), and ultimately promoted.
 
 It would seem to me that should I have lost a TSO session through
 timeout or session lost or some such, that the next time I went into
 edit I should have been prompted for edit recovery and then these files
 should have gone away upon successful termination of the edit session.
 
 Regards,
 Steve Thompson
--
Eric Bielefeld
Systems Programmer
Aviva USA
Des Moines, Iowa
515-645-5153

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


Re: ISPF Backup Files

2008-03-18 Thread Thompson, Steve
-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Eric Bielefeld
Sent: Tuesday, March 18, 2008 10:06 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: ISPF Backup Files

I believe that the way you described the backup datasets is the way it
works.  If your TSO session times out, and you're in the middle of an
edit session, when you next do an ISPF edit, you get a message saying
you were editing such and such, and have the option to resume.  If you
resume your edit, and then exit normally, the dataset goes away.  At
least thats the way it worked in the past, with z/OS 1.2.

Eric
SNIP

Eric:

That's kinda my point. It is supposed to work this way, but NOT leave
orphaned backup data sets out there. And I am finding them, but I can't
tell how or why this is happening. All I know is that they are at least
1 week old or better (which is why they have been archived).

And to make matters more interesting, from hour to hour I may be on a
z/OS 1.9 system or a 1.8 or a 1.7 or even a 1.4. So who or which one(s)
are misbehaving?

The APAR someone mentioned (OA23616) doesn't even have a description in
it yet, it is so new.

So, something is not quite right. But my asking about this is because
I'm not sure what is really going on -- and the search I did with SIS
did not return the above mentioned APAR.

Regards,
Steve Thompson

-- All opinions expressed by me are my own and may not necessarily
reflect those of my employer. --

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


ServerPac IYO (Installing Your Order)

2008-03-18 Thread Mark Zelden
I like when IBM (and other vendors) give you better documentation or 
better ways to view it.  I don't like having things taken away.

In the past, IYO came in several formats: BookManger, AFP and in readable
text in the orderhlq.SCPPLENU data set as member LIST1403.

Does it bother anyone else that the orderhlq.SCPPLENU only contains a 
PDF version now that you have to transfer to your workstation to read? 
Was it removed to save 100 tracks of DASD?  I often reference this
document during the life of an OS at my shop and even when it is
gone at times.  The easiest place to find it and view it is (was) on z/OS. 

Unless it is some where else now (I didn't install our last ServerPac).

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:[EMAIL PROTECTED]
z/OS Systems Programming expert at http://expertanswercenter.techtarget.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html

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


Re: ISPF Backup Files

2008-03-18 Thread Mark Zelden
On Tue, 18 Mar 2008 11:18:47 -0400, Thompson, Steve
[EMAIL PROTECTED] wrote:


That's kinda my point. It is supposed to work this way, but NOT leave
orphaned backup data sets out there. And I am finding them, but I can't
tell how or why this is happening. All I know is that they are at least
1 week old or better (which is why they have been archived).


The doc in here may help explain one of the causes.  But it can happen
other ways.  I don't know if this applies to your environment or not. 

http://home.flash.net/~mzelden/mvsfiles/$sngltso.txt
 
Regards,

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:[EMAIL PROTECTED]
z/OS Systems Programming expert at http://expertanswercenter.techtarget.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html

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


Re: ISPF Backup Files

2008-03-18 Thread Kirk Talman
Thanks for APAR info.

On my main plex, I have 134 of these dating back to the last time I 
cleaned up.  The plex has 11,573 just for one class of ids.  And they 
don't migrate.

There is more to it than timeout, because, when editing after a timeout, I 
do not go into recovery.  If there is nothing to recover, why have the 
recovery dataset?

IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu wrote on 03/18/2008 
10:57:30 AM:

 APAR OA23616 will correct the issue with orphan edit recovery files.




-
The information contained in this communication (including any
attachments hereto) is confidential and is intended solely for the
personal and confidential use of the individual or entity to whom
it is addressed. The information may also constitute a legally
privileged confidential communication. If the reader of this
message is not the intended recipient or an agent responsible for
delivering it to the intended recipient, you are hereby notified
that you have received this communication in error and that any
review, dissemination, copying, or unauthorized use of this
information, or the taking of any action in reliance on the
contents of this information is strictly prohibited. If you have
received this communication in error, please notify us immediately
by e-mail, and delete the original message. Thank you 

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


Re: Can I know programmatically if a load module has been zapped?

2008-03-18 Thread David Eisenberg
it's possible to zap a module and not leave footprints, though it's not the 
default.

Yikes!

Our programmers occasionally ZAP a load module in a test load library, which is 
fine. When the time comes to promote the load module into a production load 
library, however, I would like our change management package to prevent the 
promotion of any load module which has been zapped. I'm prepared to do that 
check programmatically via an exit, if I have a reasonable way of doing it.

David

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


Re: ServerPac IYO (Installing Your Order)

2008-03-18 Thread Edward Jaffe

Mark Zelden wrote:
I like when IBM (and other vendors) give you better documentation or 
better ways to view it.  I don't like having things taken away.


In the past, IYO came in several formats: BookManger, AFP and in readable
text in the orderhlq.SCPPLENU data set as member LIST1403.

Does it bother anyone else that the orderhlq.SCPPLENU only contains a 
PDF version now that you have to transfer to your workstation to read? 
Was it removed to save 100 tracks of DASD?  I often reference this

document during the life of an OS at my shop and even when it is
gone at times.  The easiest place to find it and view it is (was) on z/OS.
  


I heard a story at SHARE in Orlando that some books have broken the 
BookManager BUILD process and there's nobody at IBM whose job it is (or 
who knows how to) fix it. At least, that's the story I heard about why 
they're having so much trouble putting out the POO in BookManager format.


When used with Library Server, BookManager format allows viewing a 
manual -- topic by topic -- via a web browser ... far preferable to 
downloading a multi-megabyte PDF document every time you want to look 
something up.


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

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


Re: Can I know programmatically if a load module has been zapped?

2008-03-18 Thread McKown, John
 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:[EMAIL PROTECTED] On Behalf Of David Eisenberg
 Sent: Tuesday, March 18, 2008 10:54 AM
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: Can I know programmatically if a load module has 
 been zapped?
 
 
 it's possible to zap a module and not leave footprints, 
 though it's not the 
 default.
 
 Yikes!
 
 Our programmers occasionally ZAP a load module in a test load 
 library, which is 
 fine. When the time comes to promote the load module into a 
 production load 
 library, however, I would like our change management package 
 to prevent the 
 promotion of any load module which has been zapped. I'm 
 prepared to do that 
 check programmatically via an exit, if I have a reasonable 
 way of doing it.
 
 David

You promote load modules?!? shudder. We insist on a good recompile
from source.

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged
and/or confidential.  It is for intended addressee(s) only.  If you are
not the intended recipient, you are hereby notified that any disclosure,
reproduction, distribution or other use of this communication is
strictly prohibited and could, in certain circumstances, be a criminal
offense.  If you have received this e-mail in error, please notify the
sender by reply and delete this message without copying or disclosing
it. 

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


Move SeverPac Datasets How to

2008-03-18 Thread Mark S. House
Is it possible to move all of the datasets that are shipped with a z/os 
serverpac from SMS managed pacs to a single mod 27 using adrsdssu?  Will 
all of the datasets move, (Haspace, Page datasets, logrecs.etc)? 
Thanks.


Mark House
(402) 778-1966
IBM Mainframe Systems
[EMAIL PROTECTED]

This e-mail message and any attachments may contain confidential, 
proprietary or non-public information.  This information is intended 
solely for the designated recipient(s).  If an addressing or transmission 
error has misdirected this e-mail, please notify the sender immediately 
and destroy this e-mail.  Any review, dissemination, use or reliance upon 
this information by unintended recipients is prohibited.  Any opinions 
expressed in this e-mail are those of the author personally.


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


Re: ISPF Backup Files

2008-03-18 Thread Thompson, Steve
-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Kirk Talman
Sent: Tuesday, March 18, 2008 10:44 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: ISPF Backup Files

Thanks for APAR info.
SNIP

And that goes for me, as well as for the link to the customizations.

I'm glad to see that I'm not the only one that has these things hanging
around (and in this case, I'm not the sysprog for the lab, I just like
to cleanup after a project...) -- means I'm not the cause -- this time.

Regards,
Steve Thompson

-- All opinions expressed by me are my own and may not necessarily
reflect those of my employer. --

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


Re: Can I know programmatically if a load module has been zapped?

2008-03-18 Thread Rick Fochtman

-snip-


Anyone,

Might there be a way, from within an assembler module, to know whether or 
not a given load module has been modified via SPZAP? I'm perfectly happy to 
LOAD the load module, if that's any help.


I know that AMBLIST can tell me if something has been zapped, but that 
didn't seem like an easy interface to use from within an assembler module.


Thanks so much!
 


unsnip---
IF you can open  read the loadlib, there's a special IDR record (or 
more than one) in each load module's data that tells you if/when the 
LMOD was ZAPped.


I found the record information in LKED PLM from MVS/XA long ago; don't 
use it much now. Don't remember the ID but I think it's still 
documented, but with all the changes, I'm not sure where.


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


Re: Cloning a RACF user profile

2008-03-18 Thread Rick Fochtman

--snip

Most shops use groups properly. But the connecting to the right groups is 
the part that is the problem.  Some RACF admins have a template by job

function or perhaps list an existing user and then connect the new user to
those groups.  But I don't see all users are created equally in the same
job function in my experience.

I challenge you or anyone else on this list who can, to get a list of connect
groups for their own userid and several sysprogs with the same job function.
I'll bet you will find differences in many cases.   


The same could happen with ACF2, but in my experience I don't see ACF2
rules being written down to the specific userid level in the UID string.
 


--unsnip--
True, there might be some differences. I've found that a simple LU 
command will tell me what groups to connect the new id into. Helps to 
keep adjustments to a minimum. :-)


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


Re: Cloning a RACF user profile

2008-03-18 Thread Rick Fochtman

--snip---


The IBM Tivoli zSecure Admin product can clone users for you.

Alternatively, you can get the DBSYNC tool from the RACF Downloads page at
http://www-03.ibm.com/servers/eserver/zseries/zos/racf/goodies.html and with
a bit of work it can do what you want.

It will take as input the flat file generated by IRRDBU00, and then generate
commands to recreate the database.  From those commands, you could select
all the commands that reference the existing user ID, and then change the ID
to a new one, and run the commands.  Then you'd have a user just like the
original one, except for the password that you'd have to specify.
 


---unsnip--
Walt, I've used that tool for exactly this purpose. I would suggest a 
single improvement: let me specify a single userid as a parm field and 
select out only records that contain that userid. Could save a LOT of 
edit time.


Other than that, the tool works very well and I've been very pleased 
with the results. Feel free to share my Well Done with all involved in 
its development.


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


Re: Cloning a RACF user profile

2008-03-18 Thread Rick Fochtman

Forgive me, Walt. I was referring to the DBSYNC tool.

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


Re: ServerPac IYO (Installing Your Order)

2008-03-18 Thread Mark Zelden
On Tue, 18 Mar 2008 08:55:57 -0700, Edward Jaffe
[EMAIL PROTECTED] wrote:

Mark Zelden wrote:
 I like when IBM (and other vendors) give you better documentation or
 better ways to view it.  I don't like having things taken away.

 In the past, IYO came in several formats: BookManger, AFP and in readable
 text in the orderhlq.SCPPLENU data set as member LIST1403.

 Does it bother anyone else that the orderhlq.SCPPLENU only contains a
 PDF version now that you have to transfer to your workstation to read?
 Was it removed to save 100 tracks of DASD?  I often reference this
 document during the life of an OS at my shop and even when it is
 gone at times.  The easiest place to find it and view it is (was) on z/OS.


I heard a story at SHARE in Orlando that some books have broken the
BookManager BUILD process and there's nobody at IBM whose job it is (or
who knows how to) fix it. At least, that's the story I heard about why
they're having so much trouble putting out the POO in BookManager format.

When used with Library Server, BookManager format allows viewing a
manual -- topic by topic -- via a web browser ... far preferable to
downloading a multi-megabyte PDF document every time you want to look
something up.


Well, at least in this case it is still distributed in BookManager format
also in 
the orderhlq.INSTGUID.BOOK data set.  But I have to download that 
to view it just like the PDF since we don't run library server.

Mark
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:[EMAIL PROTECTED]
z/OS Systems Programming expert at http://expertanswercenter.techtarget.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html

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


Re: Can I know programmatically if a load module has been zapped?

2008-03-18 Thread Todd Burch
That is, of course, unless the zapper specified NOIDRDATA.

 -Original Message-
 From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
 Behalf Of Rick Fochtman
 Sent: Tuesday, March 18, 2008 10:00 AM
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: Can I know programmatically if a load module has been zapped?
 
 unsnip---
 IF you can open  read the loadlib, there's a special IDR record (or
 more than one) in each load module's data that tells you if/when the
 LMOD was ZAPped.
 
 I found the record information in LKED PLM from MVS/XA long ago; don't
 use it much now. Don't remember the ID but I think it's still
 documented, but with all the changes, I'm not sure where.
 
 --
 

No virus found in this outgoing message.
Checked by AVG. 
Version: 7.5.519 / Virus Database: 269.21.7/1332 - Release Date: 3/17/2008
10:48 AM
 

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


Re: ServerPac IYO (Installing Your Order)

2008-03-18 Thread Imbriale, Donald
I'm not doing the install, but we do have a 1.9 IYO in BookManager
format.

Don Imbriale

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Mark Zelden
Sent: Tuesday, March 18, 2008 11:32 AM
To: IBM-MAIN@bama.ua.edu
Subject: ServerPac IYO (Installing Your Order)

I like when IBM (and other vendors) give you better documentation or 
better ways to view it.  I don't like having things taken away.

In the past, IYO came in several formats: BookManger, AFP and in
readable
text in the orderhlq.SCPPLENU data set as member LIST1403.

Does it bother anyone else that the orderhlq.SCPPLENU only contains a 
PDF version now that you have to transfer to your workstation to read? 
Was it removed to save 100 tracks of DASD?  I often reference this
document during the life of an OS at my shop and even when it is
gone at times.  The easiest place to find it and view it is (was) on
z/OS. 

Unless it is some where else now (I didn't install our last ServerPac).




***
Bear Stearns is not responsible for any recommendation, solicitation, 
offer or agreement or any information about any transaction, customer 
account or account activity contained in this communication.
***

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


Re: Cloning a RACF user profile

2008-03-18 Thread Walt Farrell
On Tue, 18 Mar 2008 11:08:14 -0500, Rick Fochtman [EMAIL PROTECTED] wrote:

Forgive me, Walt. I was referring to the DBSYNC tool.


I figured that's what you meant, Rick :-)

I'm glad you have found it useful.  I've thought about an enhancement such
as you suggested, but have never taken the time to implement it.  I'll put
it on the list, though.

-- 
  Walt Farrell, CISSP
  IBM STSM, z/OS Security Design

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


RES: Cloning a RACF user profile

2008-03-18 Thread ITURIEL DO NASCIMENTO NETO
Actually you don`t have to add na entry for every user in Global Access Table,
just define a profile as this :

  RDEFINE GLOBAL DATASET ADDMEM('RACUID.**'/ALTER)   


Atenciosamente / Regards / Saludos 

Ituriel do Nascimento Neto 
Banco Bradesco S/A 
4254/DPCD Alphaville 
Engenharia de Software - Sistemas Operacionais Mainframes 

Tel: 55 11 4197-2021 Fax: 55 11 4197-2814 

 

|-Mensagem original-
|De: IBM Mainframe Discussion List 
|[mailto:[EMAIL PROTECTED] Em nome de Rick Fochtman
|Enviada em: terça-feira, 18 de março de 2008 10:49
|Para: IBM-MAIN@bama.ua.edu
|Assunto: Re: Cloning a RACF user profile
|
|And I always put an entry in the GLOBAL DATASET table such 
|that he has ALTER access to datasets that start with his own userid.
|
|--

HTMLfont face=Tahoma size=1HRAVISO LEGAL brEsta mensagem é 
destinada exclusivamente para a(s) pessoa(s) a quem é dirigida, podendo conter 
informação confidencial e/ou legalmente privilegiada. Se você não for 
destinatário desta mensagem, desde já fica notificado de abster-se a divulgar, 
copiar, distribuir, examinar ou, de qualquer forma, utilizar a informação 
contida nesta mensagem, por ser ilegal. Caso você tenha recebido esta mensagem 
por engano, pedimos que nos retorne este E-Mail, promovendo, desde logo, a 
eliminação do seu conteúdo em sua base de dados, registros ou sistema de 
controle. Fica desprovida de eficácia e validade a mensagem que contiver 
vínculos obrigacionais, expedida por quem não detenha poderes de representação. 

HTMLfont face=Tahoma size=1HRLEGAL ADVICE brThis message is 
exclusively destined for the people to whom it is directed, and it can bear 
private and/or legally exceptional information. If you are not addressee of 
this message, since now you are advised to not release, copy, distribute, check 
or, otherwise, use the information contained in this message, because it is 
illegal. If you received this message by mistake, we ask you to return this 
email, making possible, as soon as possible, the elimination of its contents of 
your database, registrations or controls system. The message that bears any 
mandatory links, issued by someone who has no representation powers, shall be 
null or void.

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


Re: Can I know programmatically if a load module has been zapped?

2008-03-18 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of David Eisenberg
 
 Our programmers occasionally ZAP a load module in a test load 
 library, which is fine. When the time comes to promote the 
 load module into a production load library, however, I would 
 like our change management package to prevent the promotion 
 of any load module which has been zapped. I'm prepared to do 
 that check programmatically via an exit, if I have a 
 reasonable way of doing it.

Sounds like it's possible for your programmers to roll out to production
programs whose load modules don't match their source.  Seems like a
rather large hole in change management to me.

Is it not feasible for them to simply recompile a changed source deck,
and avoid this kind of situation?

-jc-

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


Re: Can I know programmatically if a load module has been zapped?

2008-03-18 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of McKown, John
 
[ snip ]
 
 You promote load modules?!? shudder. We insist on a good 
 recompile from source.

We promote synchronized source / load packages.  That way, we
guarantee that the code that goes into production is precisely the same
code that was tested and QA'd.  Recompiling into production affords an
opportunity to change compiler options, for example, potentially giving
code that is not exactly what was tested.

-jc-

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


Re: Can I know programmatically if a load module has been zapped?

2008-03-18 Thread McKown, John
 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:[EMAIL PROTECTED] On Behalf Of Chase, John
 Sent: Tuesday, March 18, 2008 11:50 AM
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: Can I know programmatically if a load module has 
 been zapped?
 
 
  -Original Message-
  From: IBM Mainframe Discussion List On Behalf Of McKown, John
  
 [ snip ]
  
  You promote load modules?!? shudder. We insist on a good 
  recompile from source.
 
 We promote synchronized source / load packages.  That way, we
 guarantee that the code that goes into production is 
 precisely the same
 code that was tested and QA'd.  Recompiling into production affords an
 opportunity to change compiler options, for example, 
 potentially giving
 code that is not exactly what was tested.
 
 -jc-

Ah. We don't have that problem. We use Endevor. We control all the
compile options centrally. A programmer CANNOT override them. Well, I
guess a COBOL PROCESS could. But that is a source change and once source
is in an environment above TEST, the programmer cannot modify it.

Each cat, his own rat.

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged
and/or confidential.  It is for intended addressee(s) only.  If you are
not the intended recipient, you are hereby notified that any disclosure,
reproduction, distribution or other use of this communication is
strictly prohibited and could, in certain circumstances, be a criminal
offense.  If you have received this e-mail in error, please notify the
sender by reply and delete this message without copying or disclosing
it. 

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


Vtam 0821 and LUs

2008-03-18 Thread Lizette Koehler
I am having an issue with an application that is defined in TPX.  At some point 
users are unable to logon and start to receive 0821 Sense code from VTAM.

I am thinking I do not have a sufficient number of LUs for somethign in TPX but 
I am unable to discern what that area is.  I have TPXGR defined with 1000 LUs 
which is more than sufficient for my users.  In fact a D NET command shows all 
the the TPXGR LUs and more than 60% are conct and the rest have ACTIV sessions.

IST663I CINIT REQUEST FAILED, SENSE=0821 364   
IST664I REAL  OLU=USSCEG01.TPXGR001   REAL  DLU=USSCEG01.CICSPB
IST889I SID = F6E3F2C462F4730F 
IST314I END  
  
Any ideas how to determine what I need to add?

Lizette

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


Re: Can I know programmatically if a load module has been zapped?

2008-03-18 Thread Howard Brazee
On 18 Mar 2008 09:57:42 -0700, [EMAIL PROTECTED] (McKown,
John) wrote:

Ah. We don't have that problem. We use Endevor. We control all the
compile options centrally. A programmer CANNOT override them. Well, I
guess a COBOL PROCESS could. But that is a source change and once source
is in an environment above TEST, the programmer cannot modify it.

I tried putting compiler options at the front of my code.   It worked
in my compile, but not in Endevor's compile.   Ended up having to
create a new compile group in Endevor.

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


Re: Easy way to convert IEFBR14 and IDCAMS deletes to HDELETE

2008-03-18 Thread Dan D

Did I miss this part of the thread?

Why not just use IDCAMS DELETE...

delete 'prefix.hsm.test' purge
IDC0896I MIGRATED ENTRY prefix.HSM.TEST DELETED

If it's not migrated it simply gets deleted.  If it is migrated it gets 
deleted without a recall.


DanD

Staller, Allan wrote:

snip
1)  Does IDCAMS keyword NOSCRATCH make HSM bring in a dataset before
deleting it just like NONVSAM does?  I may have observed that
behavour...job
had NONVSAM NOSCRATCH and HSM brought it in first, after I removed the
NONVSAM and I think it still came in (didn't confirm conclusively)
until I
removed the NOSCRATCH.  BTW this was on a user-specific brodcast
dataset.
/snip

No. Delete NSCR only references the catalog entry, not the dataset. I
have used this quirk in a few recovery situations. 


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


Re: Vtam 0821 and LUs

2008-03-18 Thread Gray, Larry - Larry A
NOTICE:
All information in and attached to the e-mail(s) below may be proprietary, 
confidential, privileged and otherwise protected from improper or erroneous 
disclosure.  If you are not the sender's intended recipient, you are not 
authorized to intercept, read, print, retain, copy, forward, or disseminate 
this message.  If you have erroneously received this communication, please 
notify the sender immediately by phone (704-758-1000) or by e-mail and destroy 
all copies of this message (electronic, paper, or otherwise).  Thank you.

You might want to make sure that the LU is not still active in the other
product.  I have had problems on occassion where a user breaks their
connection between TPX and CICS while a transaction is still running.
CICS still has the LU active because of the transaction, but TPX thinks
the LU is not being used.


Larry Gray
Large Systems Engineering
Lowe's Companies
336-658-7944

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Lizette Koehler
Sent: Tuesday, March 18, 2008 1:05 PM
To: IBM-MAIN@bama.ua.edu
Subject: Vtam 0821 and LUs

I am having an issue with an application that is defined in TPX.  At
some point users are unable to logon and start to receive 0821 Sense
code from VTAM.

I am thinking I do not have a sufficient number of LUs for somethign in
TPX but I am unable to discern what that area is.  I have TPXGR defined
with 1000 LUs which is more than sufficient for my users.  In fact a D
NET command shows all the the TPXGR LUs and more than 60% are conct and
the rest have ACTIV sessions.

IST663I CINIT REQUEST FAILED, SENSE=0821 364   
IST664I REAL  OLU=USSCEG01.TPXGR001   REAL  DLU=USSCEG01.CICSPB
IST889I SID = F6E3F2C462F4730F 
IST314I END  
   Any ideas how to
determine what I need to add?

Lizette

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


Re: ERB307I III: MONITOR III DATA GATHERER ERB3GINI. INTERFACE BPX1SDD FAILED. RETURN CODE: 0000 REASON CODE: 0000

2008-03-18 Thread Knutson, Sam
Hi,

Spot on Bill. Thanks for everyone's help!   Being able to cite a half
dozen other sites independently who confirmed this had occurred helped
change the focus from looking at what was unique here moving this along
and getting it recreated on an IBM test system very quickly.  APAR
OA24361 is open to address this.

APAR Identifier .. OA24361  Last Changed  08/03/18
  ERB307I III: FAILED. RETURN CODE:  REASON CODE:  ISSUED
  BY RMFGAT DURING TIME CHANGE
 
  Symptom .. MS MSGERB307IStatus ... INTRAN
  Severity ... 3  Date Closed .
  Component .. 566527404  Duplicate of 
  Reported Release . 730  Fixed Release 
  Component Name RMF  Special Notice
  Current Target Date ..  Flags
  SCP ...
  Platform 
 
  Status Detail: Not Available
 
  PE PTF List:
 
  PTF List:
 
 
  Parent APAR:
  Child APAR list:
 
 
  ERROR DESCRIPTION:
  During Daylight Savings Time change the following message may be
  issued by RMFGAT:
  RMFGAT ERB307I III: MONITOR III DATA GATHERER ERB3GINI.
  INTERFACE BPX1SDD FAILED. RETURN CODE:  REASON CODE: 
  .
  ERB3GINI issues USS service BPX1SDD to dub the RMFGAT as a
  permanent process. It is possible for this service to give a
  return value of 0 or 1 when the process completes successfully.
  ERB3GINI is treating any non-zero return value as an error and
  is issuing ERB307I.
 
 
  LOCAL FIX:
  None, this message can be ignored as informational if the return
  and reason code are both 

Best Regards, 

Sam Knutson, GEICO 
System z Performance and Availability Management 
mailto:[EMAIL PROTECTED] 
(office)  301.986.3574 
(cell) 301.996.1318 
 

Think big, act bold, start simple, grow fast...

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Big Iron
Sent: Friday, March 14, 2008 12:24 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: ERB307I III: MONITOR III DATA GATHERER ERB3GINI. INTERFACE
BPX1SDD FAILED. RETURN CODE:  REASON CODE: 

If they check for a non-zero return value from BPX1SDD, then this would
be the expected behaviour when the required setting was already in
effect. A return value of -1 from BPX1SDD is a bad result.

BPX1SDD is supposed to return the previous dub setting so, if the
previous call to BPX1SDD was still in effect, then the returned value
could
be non-zero because the dub value has already been set. If so,  then
the result of the call to BPX1SDD was successful even if it was not
necessary so the return code and reason code are zero.

We saw this message on our test LPAR where we just change the time
zone. Other than the ugly message, RMFGAT did not appear to encounter
any problems after the time zone change,

Bill



This email/fax message is for the sole use of the intended
recipient(s) and may contain confidential and privileged information.
Any unauthorized review, use, disclosure or distribution of this
email/fax is prohibited. If you are not the intended recipient, please
destroy all paper and electronic copies of the original message.

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


IBM Debug Tool

2008-03-18 Thread Paul Peplinski
I am looking at converting to IBM Debug Tool V8.1 (Ent Cobol 3.4, soon to be
4.1). My first impression is that Debug Tool puts debug control into the
load module (or points to it in the case of an external symbol dictionary).
That seems incompatible with our development strategy where a program is
compiled once and then promoted through the hierarchy. My concern is
promoting bloated and unoptimized modules into production or needing to
share symbol files across environments (i.e. test and QA) especially when
those programs might have different working storage.  

Does this product dictate compiling at each stage with a final NOTEST
compile going into production?

Paul P   

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


Re: Easy way to convert IEFBR14 and IDCAMS deletes to HDELETE

2008-03-18 Thread Howard Brazee
On 18 Mar 2008 10:25:44 -0700, [EMAIL PROTECTED] (Dan D) wrote:

Did I miss this part of the thread?

Why not just use IDCAMS DELETE...

delete 'prefix.hsm.test' purge
IDC0896I MIGRATED ENTRY prefix.HSM.TEST DELETED

If it's not migrated it simply gets deleted.  If it is migrated it gets 
deleted without a recall.

You might want to consider adding:
IF MAXCC LT 9 THEN - 
SET MAXCC = 0

Depending on shop standards.

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


nje over tcp/ip

2008-03-18 Thread L Kaspin
We are trying to implementent nje over tcp/ip on z/os1.7 (with ptfs applied) 
and getting the following:

IAZ0511I NETSRV1 Server Port number could not be resolved, DEFAULT
assumed: 175  
IAZ0545I NETSRV1 Error encountered in function bind() - EDC5111I  
PERMISSION DENIED.
IAZ0501I NETSRV1 Bind for the server socket failed, TCP/IP rc: 111
IAZ0536I NETSRV1 NJETCP SERVER RECEIVED A PURGE REQUEST   
IAZ0516I NETSRV1 Error while closing client socket, TCP/IP rc: 113
IAZ0516I NETSRV1 Error while closing client socket, TCP/IP rc: 113
IEF404I IEESYSAS - ENDED - TIME=12.45.15  
IEF196I IEF142I IEESYSAS JES2S001 - STEP WAS EXECUTED - COND CODE 


I know the server port default is ok its the iaz0545i and edc5111i that the 
problem.

We are ACF2 and jes2 and netsrv1 are defined as non-cncl and defined to the 
OMVS grp.

IBM is bouncing it around between JES2 and TCP/IP support.

Any ideas would be helpful

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


MVS initiated FTP to Windows

2008-03-18 Thread David Day
I would like to be able to kick off an FTP of a dataset to a Windows 
platform from MVS.  All of the info I can come up with talks about how to 
perform this from the Windows side.  Windows initiated receive.  I want to do 
this from the MVS side.  When the file(s) are ready, send them down to the PC.  
Not when the file(s) are ready, go over to the PC, and run FTP from there to 
receive the file(s).   Is this possible?  Is there anything like an FTP daemon 
that can run on Windows to receive the data and put it in the desired location?

--Dave Day

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


Re: MVS initiated FTP to Windows

2008-03-18 Thread Daniel McLaughlin
That's some of the 'it depends' stuff. Can you get a static IP address for 
the PC? If it's on DHCP and is up/down frequently, then how would you hit 
it?

Daniel McLaughlin
Z-Series Systems Programmer
Information  Communications Technology
Crawford  Company
4680 N. Royal Atlanta
Tucker GA 30084 
phone: 770-621-3256 
fax: 770-621-3237
email: [EMAIL PROTECTED]
web: www.crawfordandcompany.com 



IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu wrote on 03/18/2008 
02:08:30 PM:

 [image removed] 
 
 MVS initiated FTP to Windows
 
 David Day 
 
 to:
 
 IBM-MAIN
 
 03/18/2008 02:12 PM
 
 Sent by:
 
 IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu
 
 Please respond to IBM Mainframe Discussion List
 
 -- Information from the mail header 
 ---
 Sender:   IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU
 Poster:   David Day [EMAIL PROTECTED]
 Subject:  MVS initiated FTP to Windows
 
---
 
 I would like to be able to kick off an FTP of a dataset to a Windows 
=
 platform from MVS.  All of the info I can come up with talks about how =
 to perform this from the Windows side.  Windows initiated receive.  I =
 want to do this from the MVS side.  When the file(s) are ready, send =
 them down to the PC.  Not when the file(s) are ready, go over to the PC, 
=
 and run FTP from there to receive the file(s).   Is this possible?  Is =
 there anything like an FTP daemon that can run on Windows to receive the 
=
 data and put it in the desired location?
 
 --Dave Day 
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html
 


Best Overall Third-Party Claims Administrator - 2007 Business Insurance 
Readers Choice Awards
 
Consider the environment before printing this message.

This transmission is intended exclusively for the individual or entity to which 
it is addressed. This communication may contain information that is 
confidential, proprietary, privileged or otherwise exempt from disclosure. If 
you are not the named addressee, you are NOT authorized to read, print, retain, 
copy or disseminate this communication, its attachments or any part of them. If 
you have received this communication in error, please notify the sender 
immediately and delete this communication from all computers.  This 
communication does not form any contractual obligation on behalf of the sender, 
the sender's employer, or the employer's parent company, affiliates or 
subsidiaries.

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


DB2 and WLM

2008-03-18 Thread Hal Merritt
I am getting a request from my DB2 guy to set up WLM and make
appropriate RACF entries for something that is optional in 1.7, required
in 1.8, and, I think, dropped in 1.9. 

 

Something about stored procedures and separate address spaces. The FM's
I've searched don't give me a clear picture of what is what.  

 

 

We don't use stored procedures, so I am a little confused why we have
set up that envionment. 

 

Can someone point me to a FM that will lead me to the path of
enlightenment?

 

Thanks!!

 

 

NOTICE: This electronic mail message and any files transmitted with it are 
intended
exclusively for the individual or entity to which it is addressed. The message, 
together with any attachment, may contain confidential and/or privileged 
information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution 
is strictly prohibited. If you have received this message in error, please 
immediately advise the sender by reply email and delete all copies.

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


Re: nje over tcp/ip

2008-03-18 Thread Gray, Larry - Larry A
NOTICE:
All information in and attached to the e-mail(s) below may be proprietary, 
confidential, privileged and otherwise protected from improper or erroneous 
disclosure.  If you are not the sender's intended recipient, you are not 
authorized to intercept, read, print, retain, copy, forward, or disseminate 
this message.  If you have erroneously received this communication, please 
notify the sender immediately by phone (704-758-1000) or by e-mail and destroy 
all copies of this message (electronic, paper, or otherwise).  Thank you.

Do you have low ports restricted?  That might cause the bind failure. 


Larry Gray
Large Systems Engineering
Lowe's Companies
336-658-7944

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of L Kaspin
Sent: Tuesday, March 18, 2008 1:52 PM
To: IBM-MAIN@bama.ua.edu
Subject: nje over tcp/ip

We are trying to implementent nje over tcp/ip on z/os1.7 (with ptfs
applied) and getting the following:

IAZ0511I NETSRV1 Server Port number could not be resolved, DEFAULT

assumed: 175

IAZ0545I NETSRV1 Error encountered in function bind() - EDC5111I

PERMISSION DENIED.

IAZ0501I NETSRV1 Bind for the server socket failed, TCP/IP rc: 111

IAZ0536I NETSRV1 NJETCP SERVER RECEIVED A PURGE REQUEST

IAZ0516I NETSRV1 Error while closing client socket, TCP/IP rc: 113

IAZ0516I NETSRV1 Error while closing client socket, TCP/IP rc: 113

IEF404I IEESYSAS - ENDED - TIME=12.45.15

IEF196I IEF142I IEESYSAS JES2S001 - STEP WAS EXECUTED - COND CODE 


I know the server port default is ok its the iaz0545i and edc5111i that
the problem.

We are ACF2 and jes2 and netsrv1 are defined as non-cncl and defined to
the OMVS grp.

IBM is bouncing it around between JES2 and TCP/IP support.

Any ideas would be helpful

--
For IBM-MAIN subscribe / signoff / archive access instructions, send
email to [EMAIL PROTECTED] 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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: MVS initiated FTP to Windows

2008-03-18 Thread Edward Jaffe

Daniel McLaughlin wrote:
That's some of the 'it depends' stuff. Can you get a static IP address for 
the PC? If it's on DHCP and is up/down frequently, then how would you hit 
it?
  


A full Dynamic IP implementation requires both DHCP and DDNS.

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

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


Re: nje over tcp/ip

2008-03-18 Thread Ron Wells
My nje def's for tcpip followssee if this makes any sensethis 
works between the lpar's and as400's I have setup...

/**
/* NJE/IP NETSRV  Defs--LIK
/**
NETSRV(01) SOCKET=XXXEI01, 
 START=YES, 
 TRACE=NO 
/
/* NJE/IP SOCKET  Defs--LIKE APPL def
/
SOCKET(XXXEI01) IPADDR=MyIPaddr,
 PORT=175, 
 SECURE=NO, 
 LINE=2, 
 NODE=1 
SOCKET(A06AGF06) IPADDR=Other sysIPaddr, 
 PORT=175, 
SECURE=NO, 
 LINE=2, 
 NODE=6 
 /*
/* NJE/IP LINE 
/*
LINE(2)  UNIT=TCP,
 TRACE=NO 
Other lpar
/***
/* NJE/IP NETSRV  Defs--LIKE
/***
NETSRV(06) SOCKET=A06YYY06, 
 START=YES, 
 TRACE=NO 
/* NJE/IP SOCKET  Defs--LIKE APPL def 
/*
SOCKET(A06AGF06) IPADDR=MY06IPaddr,
 PORT=175, 
 SECURE=NO, 
 LINE=2, 
 NODE=6 
SOCKET(AGFEI01) IPADDR=OthersysIPaddr, 
 PORT=175, 
 SECURE=NO, 
 LINE=2, 
 NODE=1 
 /
/* NJE/IP LINEDef
/
LINE(2)  UNIT=TCP, 
 TRACE=NO 
. tcpip stack

175 TCP OMVS; NJE/IP 

--
Email Disclaimer
This  E-mail  contains  confidential  information  belonging to the sender, 
which  may be legally privileged information.  This information is intended 
only  for  the use of the individual or entity addressed above.  If you are not 
 the  intended  recipient, or  an  employee  or  agent responsible for 
delivering it to the intended recipient, you are hereby notified that any 
disclosure,  copying, distribution, or the taking of any action in reliance on 
the contents of the E-mail or attached files is strictly prohibited.

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


Re: MVS initiated FTP to Windows

2008-03-18 Thread Daniel McLaughlin
Mine was kind of an outside, don't speak IP too well, opinion. 

Always ready to learn something new!.

Daniel McLaughlin
Z-Series Systems Programmer
Information  Communications Technology
Crawford  Company
4680 N. Royal Atlanta
Tucker GA 30084 
phone: 770-621-3256 
fax: 770-621-3237
email: [EMAIL PROTECTED]
web: www.crawfordandcompany.com 



IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu wrote on 03/18/2008 
02:23:03 PM:

 [image removed] 
 
 Re: MVS initiated FTP to Windows
 
 Edward Jaffe 
 
 to:
 
 IBM-MAIN
 
 03/18/2008 02:24 PM
 
 Sent by:
 
 IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu
 
 Please respond to IBM Mainframe Discussion List
 
 -- Information from the mail header 
 ---
 Sender:   IBM Mainframe Discussion List IBM-MAIN@BAMA.UA.EDU
 Poster:   Edward Jaffe [EMAIL PROTECTED]
 Organization: Phoenix Software International, Inc.
 Subject:  Re: MVS initiated FTP to Windows
 
---
 
 Daniel McLaughlin wrote:
  That's some of the 'it depends' stuff. Can you get a static IP address 
for 
  the PC? If it's on DHCP and is up/down frequently, then how would you 
hit 
  it?
  
 
 A full Dynamic IP implementation requires both DHCP and DDNS.
 
 -- 
 Edward E Jaffe
 Phoenix Software International, Inc
 5200 W Century Blvd, Suite 800
 Los Angeles, CA 90045
 310-338-0400 x318
 [EMAIL PROTECTED]
 http://www.phoenixsoftware.com/
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html
 


Best Overall Third-Party Claims Administrator - 2007 Business Insurance 
Readers Choice Awards
 
Consider the environment before printing this message.

This transmission is intended exclusively for the individual or entity to which 
it is addressed. This communication may contain information that is 
confidential, proprietary, privileged or otherwise exempt from disclosure. If 
you are not the named addressee, you are NOT authorized to read, print, retain, 
copy or disseminate this communication, its attachments or any part of them. If 
you have received this communication in error, please notify the sender 
immediately and delete this communication from all computers.  This 
communication does not form any contractual obligation on behalf of the sender, 
the sender's employer, or the employer's parent company, affiliates or 
subsidiaries.

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


Re: MVS initiated FTP to Windows

2008-03-18 Thread Gray, Larry - Larry A
NOTICE:
All information in and attached to the e-mail(s) below may be proprietary, 
confidential, privileged and otherwise protected from improper or erroneous 
disclosure.  If you are not the sender's intended recipient, you are not 
authorized to intercept, read, print, retain, copy, forward, or disseminate 
this message.  If you have erroneously received this communication, please 
notify the sender immediately by phone (704-758-1000) or by e-mail and destroy 
all copies of this message (electronic, paper, or otherwise).  Thank you.

Yes, there are FTP products out there that can be FTP servers on the
PC/windows side.  You can Google FTP SERVER and you will get several
hits.


Larry Gray
Large Systems Engineering
Lowe's Companies
336-658-7944

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of David Day
Sent: Tuesday, March 18, 2008 2:09 PM
To: IBM-MAIN@bama.ua.edu
Subject: MVS initiated FTP to Windows


I would like to be able to kick off an FTP of a dataset to a Windows
platform from MVS.  All of the info I can come up with talks about how
to perform this from the Windows side.  Windows initiated receive.  I
want to do this from the MVS side.  When the file(s) are ready, send
them down to the PC.  Not when the file(s) are ready, go over to the PC,
and run FTP from there to receive the file(s).   Is this possible?  Is
there anything like an FTP daemon that can run on Windows to receive the
data and put it in the desired location?

--Dave Day 

--
For IBM-MAIN subscribe / signoff / archive access instructions, send
email to [EMAIL PROTECTED] 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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: MVS initiated FTP to Windows

2008-03-18 Thread Hal Merritt
Not possible with standard Windows because it don't come with a FTP
server. 

Initiation and control of FTP always comes from the client. Therefore,
your z/os job would run as a client (see FTPCDATA) and you'd need a FTP
server on Windows. 

It follows that you'd need logon credentials for the server. Not sure if
it is current information, but once upon a time auditors frowned on
running FTP server software on ordinary desktops. 

HTH

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of David Day
Sent: Tuesday, March 18, 2008 1:09 PM
To: IBM-MAIN@bama.ua.edu
Subject: MVS initiated FTP to Windows

I would like to be able to kick off an FTP of a dataset to a Windows
platform from MVS.  All of the info I can come up with talks about how
to perform this from the Windows side.  Windows initiated receive.  I
want to do this from the MVS side.  When the file(s) are ready, send
them down to the PC.  Not when the file(s) are ready, go over to the PC,
and run FTP from there to receive the file(s).   Is this possible?  Is
there anything like an FTP daemon that can run on Windows to receive the
data and put it in the desired location?

--Dave Day 

 
NOTICE: This electronic mail message and any files transmitted with it are 
intended
exclusively for the individual or entity to which it is addressed. The message, 
together with any attachment, may contain confidential and/or privileged 
information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution 
is strictly prohibited. If you have received this message in error, please 
immediately advise the sender by reply email and delete all copies.

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


Re: nje over tcp/ip

2008-03-18 Thread Mark Pace
Shouldn't 175  be assigned to JES2?  I believe that is supposed to be the
PROC name that is going to connect on on that port.  I have NJE over IP
working and I do not have port 175 specified at all in my TCP profile.


-- 
Mark Pace
Mainline Information Systems

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


Re: Cloning a RACF user profile

2008-03-18 Thread Stephen Y Odo
I use DBSYNC which can be used to read your IRRDBU00 output file and 
generates the necessary commands to re-build the database.  I then edit 
the resulting REXX files to pull out the commands I need and edit then 
execute them.


You might get better responses from the RACF-L list 
([EMAIL PROTECTED]).


--Stephen

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


Re: DB2 and WLM

2008-03-18 Thread Gray, Larry - Larry A
NOTICE:
All information in and attached to the e-mail(s) below may be proprietary, 
confidential, privileged and otherwise protected from improper or erroneous 
disclosure.  If you are not the sender's intended recipient, you are not 
authorized to intercept, read, print, retain, copy, forward, or disseminate 
this message.  If you have erroneously received this communication, please 
notify the sender immediately by phone (704-758-1000) or by e-mail and destroy 
all copies of this message (electronic, paper, or otherwise).  Thank you.

They probably need the Application Environment defined in WLM for the
DB2 address space.  Try
http://publib.boulder.ibm.com/infocenter/dzichelp/v2r2/index.jsp?topic=/
com.ibm.db2.doc.admin/dwlmenv.htm.  Watch the wrap.  This is from the
DB2 Info Center.  I just did a search on applenv wlm. 


Larry Gray
Large Systems Engineering
Lowe's Companies
336-658-7944

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Hal Merritt
Sent: Tuesday, March 18, 2008 2:18 PM
To: IBM-MAIN@bama.ua.edu
Subject: DB2 and WLM

I am getting a request from my DB2 guy to set up WLM and make
appropriate RACF entries for something that is optional in 1.7, required
in 1.8, and, I think, dropped in 1.9. 

 

Something about stored procedures and separate address spaces. The FM's
I've searched don't give me a clear picture of what is what.  

 

 

We don't use stored procedures, so I am a little confused why we have
set up that envionment. 

 

Can someone point me to a FM that will lead me to the path of
enlightenment?

 

Thanks!!

 

 

NOTICE: This electronic mail message and any files transmitted with it
are intended exclusively for the individual or entity to which it is
addressed. The message, together with any attachment, may contain
confidential and/or privileged information.
Any unauthorized review, use, printing, saving, copying, disclosure or
distribution is strictly prohibited. If you have received this message
in error, please immediately advise the sender by reply email and delete
all copies.

--
For IBM-MAIN subscribe / signoff / archive access instructions, send
email to [EMAIL PROTECTED] 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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: nje over tcp/ip

2008-03-18 Thread Ron Wells
I specify it in the jesparm'sit is the default port used...

--
Email Disclaimer
This  E-mail  contains  confidential  information  belonging to the sender, 
which  may be legally privileged information.  This information is intended 
only  for  the use of the individual or entity addressed above.  If you are not 
 the  intended  recipient, or  an  employee  or  agent responsible for 
delivering it to the intended recipient, you are hereby notified that any 
disclosure,  copying, distribution, or the taking of any action in reliance on 
the contents of the E-mail or attached files is strictly prohibited.

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


Re: nje over tcp/ip

2008-03-18 Thread McKown, John
 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:[EMAIL PROTECTED] On Behalf Of L Kaspin
 Sent: Tuesday, March 18, 2008 12:52 PM
 To: IBM-MAIN@bama.ua.edu
 Subject: nje over tcp/ip
 
 
 We are trying to implementent nje over tcp/ip on z/os1.7 
 (with ptfs applied) 
 and getting the following:
 
 IAZ0511I NETSRV1 Server Port number could not be resolved, 
 DEFAULT
 assumed: 175  
 
 IAZ0545I NETSRV1 Error encountered in function bind() - 
 EDC5111I  
 PERMISSION DENIED.
 
 IAZ0501I NETSRV1 Bind for the server socket failed, TCP/IP 
 rc: 111
 IAZ0536I NETSRV1 NJETCP SERVER RECEIVED A PURGE REQUEST   
 
 IAZ0516I NETSRV1 Error while closing client socket, TCP/IP 
 rc: 113
 IAZ0516I NETSRV1 Error while closing client socket, TCP/IP 
 rc: 113
 IEF404I IEESYSAS - ENDED - TIME=12.45.15  
 
 IEF196I IEF142I IEESYSAS JES2S001 - STEP WAS EXECUTED - COND CODE 
 
 
 I know the server port default is ok its the iaz0545i and 
 edc5111i that the 
 problem.
 
 We are ACF2 and jes2 and netsrv1 are defined as non-cncl and 
 defined to the 
 OMVS grp.
 
 IBM is bouncing it around between JES2 and TCP/IP support.
 
 Any ideas would be helpful

I just tried this on my sandbox (z/OS 1.8). I got the same IAZ0511I
message, but everything started. In particular, the address space
JES2S001 started. But I did not get the IAZ0545I message that you did.
On my system, all STCs which start with JES2 run with a RACF id of JES2.
This id has an OMVS segment with a UID of 0.

In your TCPIP configuration, you have have RESTRICTLOWERPORTS in the
TCPCONFIG statement? If so that means that any address space which wants
to use a port number  1024 (which 175 is), must either have a UNIX
UID(0) or must be authorized in the PORT section of the TCPIP parameter.
In your case you would have something like:

PORT
... existing entries
175 TCP JES*
... maybe more entries


You can either: (1) assign an ID with a UID or 0 to the JES2S001 started
task or (2) do an obeyfile in TCPIP to allow JES* address spaces access
to port 175 or (3) perhaps you could use a port  1024. To do this
latter, try issuing the JES2 command: $TSOCKET(...),PORT= where
... is the socket name subscript and  is some unused port number
1024.

Hope I made sense.

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged
and/or confidential.  It is for intended addressee(s) only.  If you are
not the intended recipient, you are hereby notified that any disclosure,
reproduction, distribution or other use of this communication is
strictly prohibited and could, in certain circumstances, be a criminal
offense.  If you have received this e-mail in error, please notify the
sender by reply and delete this message without copying or disclosing
it. 

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


Re: MVS initiated FTP to Windows

2008-03-18 Thread Al Sherkow
I run an ftp server on windows and it works quite well. Someone suggested a
google search, the one I use Serv-U (http://www.serv-u.com/). And as Ed
wrote I use both DHCP and DDNS. 

Al

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


Re: MVS initiated FTP to Windows

2008-03-18 Thread McKown, John
 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:[EMAIL PROTECTED] On Behalf Of David Day
 Sent: Tuesday, March 18, 2008 1:09 PM
 To: IBM-MAIN@bama.ua.edu
 Subject: MVS initiated FTP to Windows
 
 
 I would like to be able to kick off an FTP of a dataset 
 to a Windows platform from MVS.  All of the info I can come 
 up with talks about how to perform this from the Windows 
 side.  Windows initiated receive.  I want to do this from the 
 MVS side.  When the file(s) are ready, send them down to the 
 PC.  Not when the file(s) are ready, go over to the PC, and 
 run FTP from there to receive the file(s).   Is this 
 possible?  Is there anything like an FTP daemon that can run 
 on Windows to receive the data and put it in the desired location?
 
 --Dave Day 

We do this all the time. You must have the ftp service running on your
Windows server box. A normal Windows desktop does not come with an ftp
service. The ftp service, believe it or not, is part of IIS on Windows.
Your Windows server should have a hard coded IP address. I don't
recommend trying to ftp to a Windows desktop because the IP address may
change. However, it could be possible with an add on ftp server and if
you are using DDNS in Windows to register your desktop's name and you
set the z/OS TCPIP resolver up to use the Windows DNS server to resolve
names to IP addresses.

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged
and/or confidential.  It is for intended addressee(s) only.  If you are
not the intended recipient, you are hereby notified that any disclosure,
reproduction, distribution or other use of this communication is
strictly prohibited and could, in certain circumstances, be a criminal
offense.  If you have received this e-mail in error, please notify the
sender by reply and delete this message without copying or disclosing
it. 

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


Re: DB2 and WLM

2008-03-18 Thread Ted MacNEIL
Something about stored procedures and separate address spaces. The FM's I've 
searched don't give me a clear picture of what is what.  

First, Stored Procedure Address Spaces have been replaced with Distributed Data 
Facility (DDF) address spaces.
SPAS is still supported, but IBM recommends that you use DDF.

Start with the WLM reference which explains Application Environments (a 
requirement for DDF).
It will point you to the proper manuals for configuring DB2  RRSF (a 
requirement for the extended Call Attach Facility -- CAF).

-
Too busy driving to stop for gas!

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


Re: Move SeverPac Datasets How to

2008-03-18 Thread Schwarz, Barry A
Aren't some of the datasets marked PSU and therefore unmovable?

ADRDSSU used to have problems copying HFS datasets (the workaround was
DUMP/RESTORE in place of COPY).  I don't know if it still does.  I have
never successfully copied a spool dataset and always had to reformat.  I
never tried to copy a page dataset since it was always easier just to
allocate a new one.

Is the new system operational?  Is the HLQ still the SSA or have the
datasets been renamed already?

Won't putting several high use datasets on a single pack (page, catalog,
RACF, spool, logrec, SYS1.LINKLIB, SMF, etc. create a bottleneck?  Think
about some of the other limitations this may cause.  For example, you
cannot delete a page dataset from a volume if another page dataset is in
use on that volume.

-Original Message-
From: Mark S. House 
Sent: Tuesday, March 18, 2008 8:57 AM
To: IBM-MAIN@bama.ua.edu
Subject: Move SeverPac Datasets How to

Is it possible to move all of the datasets that are shipped with a z/os
serverpac from SMS managed pacs to a single mod 27 using adrsdssu?  Will
all of the datasets move, (Haspace, Page datasets, logrecs.etc)? 
7

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


Re: MVS initiated FTP to Windows

2008-03-18 Thread Jack Kelly
Dave,
I have to agree with the LIST. As long as you have FTP on your PC and a 
static IP address, it should work. It works fine here. Have you tried it 
and getting errors or just testing the water?

Jack Kelly
202-502-2390 (Office)



David Day [EMAIL PROTECTED] 
Sent by: IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu
03/18/2008 02:08 PM
Please respond to
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu


To
IBM-MAIN@bama.ua.edu
cc

Subject
MVS initiated FTP to Windows






I would like to be able to kick off an FTP of a dataset to a Windows 
platform from MVS.  All of the info I can come up with talks about how to 
perform this from the Windows side.  Windows initiated receive.  I want to 
do this from the MVS side.  When the file(s) are ready, send them down to 
the PC.  Not when the file(s) are ready, go over to the PC, and run FTP 
from there to receive the file(s).   Is this possible?  Is there anything 
like an FTP daemon that can run on Windows to receive the data and put it 
in the desired location?

--Dave Day 

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] 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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: MVS initiated FTP to Windows

2008-03-18 Thread John Sullivan
Dave;

In order to have a Windows workstation accept incoming FTP, in other
words Windows as an FTP server, you have to run the Windows IIS service
or the equivalent. IIS is an optional component of XP and Vista.  There
are settings in IIS for starting an FTP server and HTTP server, maybe
others.  It's been a few years since I worked with it.  IIRC it's pretty
east to setup, though since this was the part of Windows through which
many breaches of security occurred, the security access part of it might
be more stringent.  It is not setup by default when Windows is
installed.

FTP has 2 sides to it:  A client and a server.  The initiator of the
request is the client and it contacts a server on a well known IP port
(21 is the default).  In your case you want MVS to be the client and
Windoze to be the server, so you need a server running on it somewhere.

HTH,
John R. Sullivan
EMC Corporation

__
I would like to be able to kick off an FTP of a dataset to a Windows
platform from MVS.  All of the info I can come up with talks about how
to perform this from the Windows side.  Windows initiated receive.  I
want to do this from the MVS side.  When the file(s) are ready, send
them down to the PC.  Not when the file(s) are ready, go over to the PC,
and run FTP from there to receive the file(s).   Is this possible?  Is
there anything like an FTP daemon that can run on Windows to receive the
data and put it in the desired location?

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


Re: IBM Debug Tool

2008-03-18 Thread Don Leahy
On Tue, Mar 18, 2008 at 1:48 PM, Paul Peplinski
[EMAIL PROTECTED] wrote:
 I am looking at converting to IBM Debug Tool V8.1 (Ent Cobol 3.4, soon to be
  4.1). My first impression is that Debug Tool puts debug control into the
  load module (or points to it in the case of an external symbol dictionary).
  That seems incompatible with our development strategy where a program is
  compiled once and then promoted through the hierarchy. My concern is
  promoting bloated and unoptimized modules into production or needing to
  share symbol files across environments (i.e. test and QA) especially when
  those programs might have different working storage.

  Does this product dictate compiling at each stage with a final NOTEST
  compile going into production?

  Paul P

We're at version 5.1 of DT, and our local standard is to limit DT to
the programmers' unit test environment. When a programmer requests a
TEST compile, the linkage editor step inserts an IDENTIFY card that
marks the load module as having been compiled with TEST on.

Our in house promotion process will not promote a load module that has
this IDENTIFY card in it.  This forces a NOTEST recompile at the
system test level, and beyond that no more recompiles are needed.

I understand that more recent versions of Debug Tool can be set up to
produce a relatively lean load module without compromising debugging
functionality.   But we are not there yet so I have no experience to
offer.

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


Re: MVS initiated FTP to Windows

2008-03-18 Thread Dave Salt
 From: [EMAIL PROTECTED] I would like to be able to kick off an FTP of a 
 dataset to a Windows platform from MVS. 
 
I frequently transfer mainframe files to the PC and transfer PC files to the 
mainframe, and I always perform the transfer from the mainframe side. I don't 
use FTP; I use the ISPF Workstation Agent. It's free, easy to install, and 
makes files transfers a snap. For more information see
 
 http://www.tsotimes.com/articles/archive/spring04/wsafiletransfer.html 
 
Hope that helps,
Dave SaltSee the new SimpList(tm) rollover image at:   
http://www.mackinney.com/products/SIM/simplist.htm   
_
Spread the Love by installing 30 free Messenger Emoticons. Get them now!
http://g.msn.ca/ca55/212
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


DCOLLECT and HSM backup indication

2008-03-18 Thread Jack Kelly
I tried to send this issue to IBM but they think that it's a question 
rather than a problem, so I'll try here.
Trying to use DCOLLECT to ensure that all ML2 data has a backup. In 
general the UMLBKDT field (DCOLLECT ML2 backup date)indicates if a backup 
has been done (as long as it's not empty, been opened, is SMS, etc). I do 
have a couple of dsn that have zero UMLBKDT but a valid backup exists 
(from HLIST and the B record in DCOLLECT).
Has anyone else seen this or know what I have missed or does IBM just need 
the money (we don't have QA support)?
Thanks...Jack



Jack Kelly
202-502-2390 (Office)

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


Re: nje over tcp/ip

2008-03-18 Thread L Kaspin
Thanks to all for your replies 

I've got the address space up and listening.
after white boarding the 'execellent' examples in JES2 init and tuning.

In TCP parms for port 175 we put JES2S001 as the job name. which is kicked 
off by IEASYSAS and the name is derived from  the NETSRV1 definition. 

In Jes parms:

LINE(5) UNIT=TCP
NODE(6) NAME=xxxTEST
NETSRV(1) SOCKET=LOCAL  
SOCKET(xxxTEST) NODE=6,LINE=5,PORT=175,NETSRV=1,IPADDR=xxx.xxx.xxx


If you are at 1.7 and trying to do this IBM 'forgot' to enable the code unless 
you're up to date on your rsu's or put's  check UA90255. 

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


Re: Vtam 0821 and LUs

2008-03-18 Thread Patrick O'Keefe
On Tue, 18 Mar 2008 13:04:32 -0400, Lizette Koehler 
[EMAIL PROTECTED] wrote:

I am having an issue with an application that is defined in TPX.  At 
some point users are unable to logon and start to receive 0821 Sense 
code from VTAM.

I am thinking I do not have a sufficient number of LUs for somethign 
in TPX but I am unable to discern what that area is.  I have TPXGR 
defined with 1000 LUs which is more than sufficient for my users.  In 
fact a D NET command shows all the the TPXGR LUs and more than 
60% are conct and the rest have ACTIV sessions.
...

It's unlikely that this is an issue with the number of dfined LUs ...
at least not directly related.  An application (like CICS) is supposed 
use 0821 to indicate incompatable session parameters - that it
could not support the BIND parameters specified in the LOGMODE
associated with the LU.  

It's a bit tricky with CICS because the 
CICS AutoInstall process may have some reason to pick a very
specific set of acceptable session parameters.  Or a hard coded
terminal definition for the LU may specify sessions parameters
those specific sessions parameters.  Either way, they may be at
odds with the LOGMODE for the TPX-provided LU.

My very non-CICS centric view is that 0821 and 0801 sense codes
can mean just about anything when coming from CICS.  Luckily,
there are usually CICS error messages that provide more info.

Pat O'Keefe

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


Re: IBM Debug Tool

2008-03-18 Thread Dean Montevago
I was told there is no performance impact of compiling with test. The
compile creates a //SYSDEBUG file that is used by the debugger. The load
module has an entry in it that points to the SYSDEBUG file.

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Don Leahy
Sent: Tuesday, March 18, 2008 3:19 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: IBM Debug Tool


On Tue, Mar 18, 2008 at 1:48 PM, Paul Peplinski
[EMAIL PROTECTED] wrote:
 I am looking at converting to IBM Debug Tool V8.1 (Ent Cobol 3.4, soon

 to be  4.1). My first impression is that Debug Tool puts debug control

 into the  load module (or points to it in the case of an external 
 symbol dictionary).  That seems incompatible with our development 
 strategy where a program is  compiled once and then promoted through 
 the hierarchy. My concern is  promoting bloated and unoptimized 
 modules into production or needing to  share symbol files across 
 environments (i.e. test and QA) especially when  those programs might 
 have different working storage.

  Does this product dictate compiling at each stage with a final NOTEST

 compile going into production?

  Paul P

We're at version 5.1 of DT, and our local standard is to limit DT to the
programmers' unit test environment. When a programmer requests a TEST
compile, the linkage editor step inserts an IDENTIFY card that marks the
load module as having been compiled with TEST on.

Our in house promotion process will not promote a load module that has
this IDENTIFY card in it.  This forces a NOTEST recompile at the system
test level, and beyond that no more recompiles are needed.

I understand that more recent versions of Debug Tool can be set up to
produce a relatively lean load module without compromising debugging
functionality.   But we are not there yet so I have no experience to
offer.

--
For IBM-MAIN subscribe / signoff / archive access instructions, send
email to [EMAIL PROTECTED] 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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Not Authorized to SMPLTS??

2008-03-18 Thread Chase, John
Hi, All,

Can anybody explain this?

PAGE 0001  - NOW SET TO TARGET ZONE MVST100  DATE 03/18/08  TIME
14:21:00  SMP/E 34.06 
 

   SET BDY(MVST100).

GIM20501ISET PROCESSING IS COMPLETE. THE HIGHEST RETURN CODE WAS 00.

 

 

   APPLY   S(CEEWCO1) ASSEM REDO CHECK .

 

GIM54701S ** ALLOCATION FAILED FOR SMPLTS - IKJ56864I UTILITY DATA SET
NOT 
 ALLOCATED, USER NOT AUTHORIZED FOR FUNCTION SPECIFIED.

GIM20501IAPPLY PROCESSING IS COMPLETE. THE HIGHEST RETURN CODE WAS
12. 
 

 

GIM20502ISMP/E PROCESSING IS COMPLETE. THE HIGHEST RETURN CODE WAS
12. SMP/E   
 IS AT LEVEL 34.06.


I do this sort fo thing frequently (and successfully) on this sandbox.
Why not today, considering:

1.  I am the RACF Admin on this image;
2.  I maintain this particular USERMOD;
3.  Only one other colleague fiddles with SMP/E and we communicate
well;
4.  Neither of us has changed anything since my previous successful
foray:
5.  I can browse this SMPLTS dataset via ISPF.

Just trying to tweak our LE options for CICS...

TIA,

-jc-




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


Re: Not Authorized to SMPLTS??

2008-03-18 Thread JerryDurbin
Is your MIGLIB APF authorized?  APAR IR92833: MSGGIM54701S


-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of 
Chase, John
Sent: Tuesday, March 18, 2008 1:41 PM
To: IBM-MAIN@bama.ua.edu
Subject: Not Authorized to SMPLTS??

Hi, All,

Can anybody explain this?

PAGE 0001  - NOW SET TO TARGET ZONE MVST100  DATE 03/18/08  TIME 14:21:00  
SMP/E 34.06


   SET BDY(MVST100).

GIM20501ISET PROCESSING IS COMPLETE. THE HIGHEST RETURN CODE WAS 00.





   APPLY   S(CEEWCO1) ASSEM REDO CHECK .



GIM54701S ** ALLOCATION FAILED FOR SMPLTS - IKJ56864I UTILITY DATA SET NOT
 ALLOCATED, USER NOT AUTHORIZED FOR FUNCTION SPECIFIED.

GIM20501IAPPLY PROCESSING IS COMPLETE. THE HIGHEST RETURN CODE WAS
12.




GIM20502ISMP/E PROCESSING IS COMPLETE. THE HIGHEST RETURN CODE WAS
12. SMP/E
 IS AT LEVEL 34.06.


I do this sort fo thing frequently (and successfully) on this sandbox.
Why not today, considering:

1.  I am the RACF Admin on this image;
2.  I maintain this particular USERMOD;
3.  Only one other colleague fiddles with SMP/E and we communicate well; 4.  
Neither of us has changed anything since my previous successful
foray:
5.  I can browse this SMPLTS dataset via ISPF.

Just trying to tweak our LE options for CICS...

TIA,

-jc-




--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
[EMAIL PROTECTED] 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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: IBM Debug Tool

2008-03-18 Thread Ted MacNEIL
I understand that more recent versions of Debug Tool can be set up to produce 
a relatively lean load module without compromising debugging functionality.   
But we are not there yet so I have no experience to
offer.


These days, with fast processors and large memories, the kind of 'optimisation' 
you're talking about is comparing pennies to millions of dollars.
Running with debugging in production can save many dollars, if even only one 
programme in an application suite needs it.
We're not talking 1.5 MIPS/Single Engine processors any more.

-
Too busy driving to stop for gas!

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


Re: MVS initiated FTP to Windows

2008-03-18 Thread Gary Green
..re Not possible with standard Windows because it don't come with a FTP 
server. 

Ah..  But it does!

All you need to do is install IIS on your workstation, configure it and somehow 
get the IP address of the WS to the host and use that to FTP your files down!

This is how I get all my performance, and other, files down to my WS every day; 
which are then automagically processed by a few Excel spreadsheets. 

You start with Add/Remove Programs, then to Add/Remove Windows Components, 
select IIS, then specifically, Common Files, FTP Service and the IIS Snap-In.  
You should be able to find the IIS install in your I386 directory.  Once 
installed you need to configure IIS to point to the incoming directory and a 
couple of other pieces of information.

If you need more, let me know and I'll check my notes.



 On Tue Mar 18 13:32 , Hal Merritt [EMAIL PROTECTED] sent:

Not possible with standard Windows because it don't come with a FTP
server. 

Initiation and control of FTP always comes from the client. Therefore,
your z/os job would run as a client (see FTPCDATA) and you'd need a FTP
server on Windows. 

It follows that you'd need logon credentials for the server. Not sure if
it is current information, but once upon a time auditors frowned on
running FTP server software on ordinary desktops. 

HTH

-Original Message-
From: IBM Mainframe Discussion List [EMAIL PROTECTED]','','','')[EMAIL 
PROTECTED] On
Behalf Of David Day
Sent: Tuesday, March 18, 2008 1:09 PM
To: IBM-MAIN@bama.ua.edu
Subject: MVS initiated FTP to Windows

I would like to be able to kick off an FTP of a dataset to a Windows
platform from MVS.  All of the info I can come up with talks about how
to perform this from the Windows side.  Windows initiated receive.  I
want to do this from the MVS side.  When the file(s) are ready, send
them down to the PC.  Not when the file(s) are ready, go over to the PC,
and run FTP from there to receive the file(s).   Is this possible?  Is
there anything like an FTP daemon that can run on Windows to receive the
data and put it in the desired location?

--Dave Day 

 
NOTICE: This electronic mail message and any files transmitted with it are 
intended
exclusively for the individual or entity to which it is addressed. The 
message, 
together with any attachment, may contain confidential and/or privileged 
information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution 
is strictly prohibited. If you have received this message in error, please 
immediately advise the sender by reply email and delete all copies.

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] 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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: MVS initiated FTP to Windows

2008-03-18 Thread Andrew McLaren
Huh? What version of Windows are we talking about???

Both the Windows machines on my desktop are running a built-in ftp server. One 
is XP Pro, and the other is Vista Enterprise Edition. 

The ftp server is not installed by default, but it is included in the optional 
components, for Windows 2000 Workstation, XP Pro and Vista Business/Enterprise. 
Go to Control Panel, Add/Remove Programs, Windows Optional Features, and look 
under Internet Information Services. The ftp server will be first item on the 
list.

You can certainly ftp from the host to the ftp server in Windows - I've done 
it. No special configuration is required on Windows, it just works. Obviously 
you need something to act as an ftp client on the host (such as 'ftp' under 
Open MVS).

The ftp server for Windows 98 had to be downloaded separately from 
microsoft.com, but I hope no-one is still running Win98 :-). NT 4.0 I can't 
remember - but again, NT 4 is long out of support by Microsoft.

Hope it helps,
Andrew



 Hal Merritt [EMAIL PROTECTED] wrote:
 
 Not possible with standard Windows because it don't come with a FTP
 server. 
 
 Initiation and control of FTP always comes from the client. Therefore,
 your z/os job would run as a client (see FTPCDATA) and you'd need a FTP
 server on Windows. 
 
 It follows that you'd need logon credentials for the server. Not sure if
 it is current information, but once upon a time auditors frowned on
 running FTP server software on ordinary desktops. 
 
 HTH
 
 -Original Message-
 From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
 Behalf Of David Day
 Sent: Tuesday, March 18, 2008 1:09 PM
 To: IBM-MAIN@bama.ua.edu
 Subject: MVS initiated FTP to Windows
 
 I would like to be able to kick off an FTP of a dataset to a Windows
 platform from MVS.  All of the info I can come up with talks about how
 to perform this from the Windows side.  Windows initiated receive.  I
 want to do this from the MVS side.  When the file(s) are ready, send
 them down to the PC.  Not when the file(s) are ready, go over to the PC,
 and run FTP from there to receive the file(s).   Is this possible?  Is
 there anything like an FTP daemon that can run on Windows to receive the
 data and put it in the desired location?
 
 --Dave Day 
 
  
 NOTICE: This electronic mail message and any files transmitted with it 
 are intended
 exclusively for the individual or entity to which it is addressed. The 
 message, 
 together with any attachment, may contain confidential and/or privileged 
 information.
 Any unauthorized review, use, printing, saving, copying, disclosure or 
 distribution 
 is strictly prohibited. If you have received this message in error, 
 please 
 immediately advise the sender by reply email and delete all copies.
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to [EMAIL PROTECTED] 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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: nje over tcp/ip

2008-03-18 Thread Mark Zelden
On Tue, 18 Mar 2008 14:35:20 -0400, Mark Pace [EMAIL PROTECTED] wrote:

Shouldn't 175  be assigned to JES2?  I believe that is supposed to be the
PROC name that is going to connect on on that port.  I have NJE over IP
working and I do not have port 175 specified at all in my TCP profile.


It would be in /etc/services ... unless you keep that in an MVS data set.

vmnet   175/tcp # JES NJE over TCP/IP   
njenet-ssl  2252/tcp# JES NJE over TCP/IP with SSL  

--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:[EMAIL PROTECTED]
z/OS Systems Programming expert at http://expertanswercenter.techtarget.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html

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


Re: MVS initiated FTP to Windows

2008-03-18 Thread John P Kalinich
There are plenty of free FTP servers for Windoze out there.  Some with 
SSL/TLS support.  Check out http://www.tucows.com.

Regards,
John K


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


Re: DB2 and WLM

2008-03-18 Thread Neil Duffee
On 18 Mar 2008 18:23:27 GMT, Hal Merritt [EMAIL PROTECTED] wrote 
to IBM-Main about DB2 and WLM:

 I am getting a request from my DB2 guy to set up WLM and make
 appropriate RACF entries for something that is optional in 1.7,
 required in 1.8, and, I think, dropped in 1.9. 

 Something about stored procedures and separate address spaces. The
 FM's I've searched don't give me a clear picture of what is what.  

 We don't use stored procedures, so I am a little confused why we have
 set up that envionment. 

 Can someone point me to a FM that will lead me to the path of
 enlightenment? 

Hal: you might check the DB2 chapter in the Redbook System 
Programmer's guide to: Workload Manager (SG24-6472).  There's likely 
a chapter, or two, in the DB2 Admin guide as well.  Maybe he can tell 
where he's reading from.  If you're not using stored procedures, he 
might be doing DDF ie. JDBC, etc.

DB2 stored procedures are moving from being run in the DB2 SP a/s to 
separate WLM address spaces ie. DB2 SPAS is now deprecated. (your 
para 1 except DB2 v6, 7,  8)  For WLM managed, stored procedures, 
you need a WLM ApplEnv so the a/s will get started/stopped per 
demand.  (I believe that it's 2hrs inactivity before the last STC 
disappears.)  We use the STDATA in Racf Class(Facility) to provide 
the proper userid.

friendly *Warning*: don't include NumTcbs in the ApplEnv Parm as 
shown in examples.  Instead, leave it for the JCL proc where it can 
be easily changed without requiring a WLM policy activation each 
time.  Only place items that are invariant (rock solid, unchanging) 
such as DB2SSN and ApplEnv.

ps. I believe there are sample stored procedures - and maybe a Rexx 
builder - provided with DB2.  He might be trying them out for size.

--  signature = 6 lines follows --
Neil Duffee, Joe SysProg, U d'Ottawa, Ottawa, Ont, Canada
telephone:1 613 562 5800 x4585 fax:1 613 562 5161
mailto:NDuffee of uOttawa.ca http:/ /aix1.uottawa.ca/ ~nduffee
How *do* you plan for something like that? Guardian Bob, Reboot
For every action, there is an equal and opposite criticism.
Systems Programming: Guilty, until proven innocent John Norgauer 
2004

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


Re: MVS initiated FTP to Windows

2008-03-18 Thread Hal Merritt
Ok, I'll refine my comment to 'It is not possible to just FTP to a
Windows box; it doesn't come with a FTP server *installed*. More, there
are a lot of security hoops to jump through.'

Screwed up the grammar anyway :-)
  
Interestingly enough, we just danced with this bear, and IIS never came
up in any conversations. Perhaps due to its horrible security record. Or
perhaps the encryption issue. Donno.
 

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Gary Green
Sent: Tuesday, March 18, 2008 3:01 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: MVS initiated FTP to Windows

..re Not possible with standard Windows because it don't come with a FTP
server. 

Ah..  But it does!

All you need to do is install IIS on your workstation, configure it and
somehow get the IP address of the WS to the host and use that to FTP
your files down!

This is how I get all my performance, and other, files down to my WS
every day; which are then automagically processed by a few Excel
spreadsheets. 

You start with Add/Remove Programs, then to Add/Remove Windows
Components, select IIS, then specifically, Common Files, FTP Service and
the IIS Snap-In.  You should be able to find the IIS install in your
I386 directory.  Once installed you need to configure IIS to point to
the incoming directory and a couple of other pieces of information.

If you need more, let me know and I'll check my notes.



 On Tue Mar 18 13:32 , Hal Merritt [EMAIL PROTECTED] sent:

 
NOTICE: This electronic mail message and any files transmitted with it are 
intended
exclusively for the individual or entity to which it is addressed. The message, 
together with any attachment, may contain confidential and/or privileged 
information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution 
is strictly prohibited. If you have received this message in error, please 
immediately advise the sender by reply email and delete all copies.

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


Re: MVS initiated FTP to Windows

2008-03-18 Thread Bill Wilkie
I would think if you go to the dos prompt and type FTP with no IP address and 
get the prompt:
 
ftp
 
returned, FTP is on your PC. 
 
Bill
 
 Date: Tue, 18 Mar 2008 15:09:43 -0400 From: [EMAIL PROTECTED] Subject: Re: 
 MVS initiated FTP to Windows To: IBM-MAIN@bama.ua.edu  Dave, I have to 
 agree with the LIST. As long as you have FTP on your PC and a  static IP 
 address, it should work. It works fine here. Have you tried it  and getting 
 errors or just testing the water?  Jack Kelly 202-502-2390 (Office)
 David Day [EMAIL PROTECTED]  Sent by: IBM Mainframe Discussion List 
 IBM-MAIN@bama.ua.edu 03/18/2008 02:08 PM Please respond to IBM Mainframe 
 Discussion List IBM-MAIN@bama.ua.edu   To IBM-MAIN@bama.ua.edu cc  
 Subject MVS initiated FTP to Windows   I would like to be able to 
 kick off an FTP of a dataset to a Windows  platform from MVS. All of the 
 info I can come up with talks about how to  perform this from the Windows 
 side. Windows initiated receive. I want to  do this from the MVS side. When 
 the file(s) are ready, send them down to  the PC. Not when the file(s) are 
 ready, go over to the PC, and run FTP  from there to receive the file(s). Is 
 this possible? Is there anything  like an FTP daemon that can run on Windows 
 to receive the data and put it  in the desired location?  --Dave Day   
 -- For 
 IBM-MAIN subscribe / signoff / archive access instructions, send email to 
 [EMAIL PROTECTED] 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 
 [EMAIL PROTECTED] 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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: MVS initiated FTP to Windows

2008-03-18 Thread McKown, John
 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:[EMAIL PROTECTED] On Behalf Of Andrew McLaren
 Sent: Tuesday, March 18, 2008 3:23 PM
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: MVS initiated FTP to Windows
 
 
 Huh? What version of Windows are we talking about???
 
 Both the Windows machines on my desktop are running a 
 built-in ftp server. One is XP Pro, and the other is Vista 
 Enterprise Edition. 
 
 The ftp server is not installed by default, but it is 
 included in the optional components, for Windows 2000 
 Workstation, XP Pro and Vista Business/Enterprise. Go to 
 Control Panel, Add/Remove Programs, Windows Optional 
 Features, and look under Internet Information Services. The 
 ftp server will be first item on the list.
 
 You can certainly ftp from the host to the ftp server in 
 Windows - I've done it. No special configuration is required 
 on Windows, it just works. Obviously you need something to 
 act as an ftp client on the host (such as 'ftp' under Open MVS).
 
 The ftp server for Windows 98 had to be downloaded separately 
 from microsoft.com, but I hope no-one is still running Win98 
 :-). NT 4.0 I can't remember - but again, NT 4 is long out of 
 support by Microsoft.
 
 Hope it helps,
 Andrew

It is? I didn't know that because I only use Windows (XP) at work, and
desktop services did not install any kind of ftp servicer. So I
stupidity assumed it was only on the server version of Windows. Thanks
for the correction!

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged
and/or confidential.  It is for intended addressee(s) only.  If you are
not the intended recipient, you are hereby notified that any disclosure,
reproduction, distribution or other use of this communication is
strictly prohibited and could, in certain circumstances, be a criminal
offense.  If you have received this e-mail in error, please notify the
sender by reply and delete this message without copying or disclosing
it. 

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


Re: MVS initiated FTP to Windows

2008-03-18 Thread John P Kalinich
Bill Wilkie of the IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu 
wrote on 03/18/2008 03:46:17 PM:

 I would think if you go to the dos prompt and type FTP with no IP 
 address and get the prompt:
 
 ftp
 
 returned, FTP is on your PC. 
 

Whoever initiates the conversation in the Client/Server model is the 
client.  He wanted MVS to be the FTP client or the initiator of the file 
transfer.

Regards,
John K

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


Re: MVS initiated FTP to Windows

2008-03-18 Thread Hal Merritt
That's just the native FTP client piece. We also need the server piece,
and most of us also need the encryption pieces. On top of that, you'll
need some security pieces. And that leads to monitoring, logging,
reporting, and administrative pieces to satisfy auditors.  



-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Bill Wilkie
Sent: Tuesday, March 18, 2008 3:46 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: MVS initiated FTP to Windows

I would think if you go to the dos prompt and type FTP with no IP
address and get the prompt:
 
ftp
 
returned, FTP is on your PC. 
 
Bill
 
 
NOTICE: This electronic mail message and any files transmitted with it are 
intended
exclusively for the individual or entity to which it is addressed. The message, 
together with any attachment, may contain confidential and/or privileged 
information.
Any unauthorized review, use, printing, saving, copying, disclosure or 
distribution 
is strictly prohibited. If you have received this message in error, please 
immediately advise the sender by reply email and delete all copies.

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


Re: Not Authorized to SMPLTS??

2008-03-18 Thread Chase, John
 -Original Message-
 From: IBM Mainframe Discussion List On Behalf Of
[EMAIL PROTECTED]
 
 Is your MIGLIB APF authorized?  APAR IR92833: MSGGIM54701S

Yes.

But you prompted me to look more closely at the JCL, which had MIGLIB
steplib'd to the other volume.  Works fine now.

Thanks,

-jc-

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


Re: ServerPac IYO (Installing Your Order)

2008-03-18 Thread R.S.

Mark Zelden wrote:
I like when IBM (and other vendors) give you better documentation or 
better ways to view it.  I don't like having things taken away.


In the past, IYO came in several formats: BookManger, AFP and in readable
text in the orderhlq.SCPPLENU data set as member LIST1403.

[...]
Well,
I'm very glad that we've got PDF format. However IMHO it should have 
nothing to do with txt format existence.

So we gave you PDF - it's good
...but we've taken away TXT - why ???

BTW: If I really had to choose PDF or (exclusive-OR) txt, I would choose 
...PDF. YMMV.


--
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.2008 r. kapita zakadowy BRE Banku SA  wynosi 
118.642.672 zote i zosta w caoci wpacony.

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


Re: DB2 and WLM

2008-03-18 Thread Dave Barry
Since it seems to be my mission in life...

Stored procedures run in stored procedured address spaces.  This is true
whether the requests are are made locally to the system (or plex), or
received remotely via DDF.  There used to be a single subsystem address
space commonly known as SPAS.  The newer alternative is called...

  *** WLM-managed stored procedure address space
*** 

A set of one or more WLM-managed stored procedure (started task) address
spaces of a given name are known as an application environment.  See
option 9 on the WLM main menu.

Countless hours of confusion could be eliminated by using the
terminology precisely as it is used in the literature.

db

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On
Behalf Of Hal Merritt
Sent: Tuesday, March 18, 2008 2:18 PM
To: IBM-MAIN@bama.ua.edu
Subject: DB2 and WLM

I am getting a request from my DB2 guy to set up WLM and make
appropriate RACF entries for something that is optional in 1.7, required
in 1.8, and, I think, dropped in 1.9. 

 

Something about stored procedures and separate address spaces. The FM's
I've searched don't give me a clear picture of what is what.  

 

 

We don't use stored procedures, so I am a little confused why we have
set up that envionment. 

 

Can someone point me to a FM that will lead me to the path of
enlightenment?

 

Thanks!!

 

 

NOTICE: This electronic mail message and any files transmitted with it
are intended exclusively for the individual or entity to which it is
addressed. The message, together with any attachment, may contain
confidential and/or privileged information.
Any unauthorized review, use, printing, saving, copying, disclosure or
distribution is strictly prohibited. If you have received this message
in error, please immediately advise the sender by reply email and delete
all copies.

--
For IBM-MAIN subscribe / signoff / archive access instructions, send
email to [EMAIL PROTECTED] 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 [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


  1   2   >