Re: Capturing response from SCS

2011-07-20 Thread Fran Hensler
What is line 78 supposed to do?
 'Commit 0'  /* hot to trot */

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 48 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.794.6172
  "Yes, Virginia, there is a Slippery Rock"
--
On Wed, 20 Jul 2011 10:27:15 -0700 Michael Harding said:
>Okay, as long as we're posting code...
>My version is a bit more generic, but also takes into account that it might
>be issued from a SECUSER-ed disconnected id.
>
>/*
>** SMSG's an arbitrary target SVM, captures responses and inserts
>** into the pipeline.
>*/
>Parse Upper arg tgtmach what '(' opts ')' ignored
>Call InitRtn
>'CallPipe (Name GetSMsgResp End ?)',
>   'Literal' timeout_value,
>   '|Delay',
>   '|stopper:Faninany',
>   '|xx:Gate',
>   '?',
>   'Starmsg *MSG CP SMSG' tgtmach what ||,
>   '|xx:',
>   '|ours:Find 0001' || Left(tgtmach,8,'_') ||,
>   '|dec:Fanout',
>   '|Take 1',
>   '|Spec /' || msg_wait || '/ 1',
>   '|Elastic',
>   '|Delay',
>   '|stopper:',
>   '?dec:',
>   '|Spec 17-* n',
>   '|*:',
>   '?ours:',
>   '|obnd:Pick 17.10 == /HCPMSG045E/',
>   '|Elastic',
>   '|stopper:',
>   '?obnd:',
>   '|Spec /From/ 1 9.8 strip nw /:/ n 17-* nw',
>   '|Cons'
>Call CleanUp
>Exit xRc
>InitRtn:
>timeout_value = '+20';msg_wait='+1'
>what = Strip(what)
>Parse value Diag(8,'Q SET') with . 'MSG' wasmsg . 'CPCONIO' wascpcio .
>wasmsg = Strip(wasmsg,'T',',')
>wascpcio = Strip(wascpcio,'T',',')
>iRc = 0
>popts=''
>Do while opts <> ''
>   Parse var opts opt opts
>   Select
>  When Abbrev('TIMEOUT',opt,1) |,
> Abbrev('DELAY',opt,3)  then Do
>Parse var opts timeout_value opts
>If Pos('.',timeout_value)=1 then
>   timeout_value='0'timeout_value
> timeout_value = '+' || timeout_value
> End
>   When Abbrev('WAITCONT',opt,1) |,
>  Abbrev('WAITON',opt,1)  then Do
> Parse var opts msg_wait opts
> If pos('.',msg_wait)=1 then msg_wait='0'msg_wait
> msg_wait = '+' || msg_wait
> End
>   Otherwise popts = Strip(popts opt)
>   End /* select */
>End
> If popts<>'' then what = what'('popts')'
> If iRc <> 0 then Exit iRc
> /*>---<*>---<*>---<*>---<*>---<*>---<*/
> /* Ensure secuser isn't directing msgs elsewhere */
> /*>---<*>---<*>---<*>---<*>---<*>---<*/
> dscd = Word(Diag(8,'Q CONS'),3) == 'DISCONNECTED'
> If dscd then Do
>Parse value DiagRc(8,'Q PRIV') with . '15'x . ':' myprivs . '15'x
>If Verify(myprivs,'AC','M')>0 then do_me = '*'
>Else do_me = ''
>Parse value DiagRc(8,'Q SECUSER *'),
>   with . '15'x . '15'x suinfo '15'x
>Parse var suinfo . whoisit .
>If whoisit<>'not'
>   then Parse value DiagRc(8,'SET SECUSER' do_me 'OFF') with .
>Else whoisit = ''
>End
> 'Commit 0'  /* hot to trot */
> x=Diag(8,'SET MSG IUCV' || '15'x || 'SET CPCONIO IUCV')
> Return
>
> CleanUp:
> xRc = Rc
> x = Diag(8,'SET MSG' wasmsg || '15'x || 'SET CPCONIO' wascpcio)
> If dscd then if whoisit<>''
>then Parse value Diag(8,'SET SECUSER' do_me whoisit) with .
> Return
>


Re: Capturing response from SCS

2011-07-20 Thread Fran Hensler
This will do it:
 
 
/* REXX */
 
   address "COMMAND"
 
  "CP SET  MSG IUCV"
 
  "PIPE (ENDCHAR ?) STARMSG *MSG CP SMSG RSCS QUERY LINKS ",
 "| specs 17-* 1",   /* Drop the first 16 chars  */
 "| STEM REC.",
 "| LITERAL +5  | DELAY",
 "| PIPESTOP"
 
   say "HowMany" rec.0
 
   Do i = 1 to rec.0
 say rec.i
   End
 
exit
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 48 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.794.6172
  "Yes, Virginia, there is a Slippery Rock"
--
On Wed, 20 Jul 2011 10:28:49 -0500 =?iso-8859-1?Q?Richard_Baek?= said:
>I'm writing a REXX exec in which I'm issuing a command 'SM RSCS Q LINKS'
>and I'd like to capture the response back from RSCS.  Does anyone know how
>to do this?  Maybe you have an example of the code I need to use?


Re: Moving on

2011-06-23 Thread Fran Hensler
Richard -
 
Like you I have 48 years experience, all with the same employer.
Congratulations on your retirement.
 
I too have found the VM and VSE lists to be great resources.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 48 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.794.6172
  "Yes, Virginia, there is a Slippery Rock"
--
On Wed, 22 Jun 2011 09:51:14 -0700 Schuh, Richard said:
>After 48 years in the industry, involved with VM for the last 38 of them, I wil
>be retiring early next month. I don't think it is possible to find a better
>group of people than the VM List. The professionalism, the willingness, even
>eagerness, to help others is outstanding. You have made my job easier. I wish
>you all the best. It has been nice, sometimes even fun, to know and work with
>such an exemplary group of people.
>
>
>Regards,
>Richard Schuh


Re: REXXCPS EXEC

2011-06-11 Thread Fran Hensler
On Fri, 10 Jun 2011 10:25:05 -0400 Mike Hammock said:
>I have found in the past that dividing the REXX CPS number by 1800 gives an
>approximation(!) of the general MIPS rating.

Mike -

I'm running a FLEX-ES box that is knee capped at 18 MIPS.  I added
your formula to the end of REXXCPS.  Here are the results on a
completely idle system:

- REXXCPS 2.2 -- Measuring REXX clauses/second -
 REXX version is: REXX370 4.02 01 Dec 1998
   System is: CMS
   Averaging: 10 measures of 30 iterations
   CP IND = AVGPROC-011% 01
 Performance: 24794 REXX clauses per second
24794/1800= 14 MIPS
Ready; T=11.08/11.22 06:39:22

rexxcps 1000
- REXXCPS 2.2 -- Measuring REXX clauses/second -
 REXX version is: REXX370 4.02 01 Dec 1998
   System is: CMS
   Averaging: 1000 measures of 30 iterations
   CP IND = AVGPROC-100% 01
 Performance: 23699 REXX clauses per second
23699/1800= 13 MIPS
Ready; T=1133.43/1143.71 07:38:38



I ran REXXCPS at 30 and 1000 three times and each time the 30
measures indicated 14 MIPS while 1000 indicated 13 MIPS.

At the end of August we will downgrade to an 8 MIP box.  It will
be interesting to see what REXXCPS reports then.



/Fran Hensler at Slippery Rock University of Pennsylvania USA for 48 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.794.6172
  "Yes, Virginia, there is a Slippery Rock"
--


IE9 Hangs Webshare on PEEKTO

2011-06-07 Thread Fran Hensler
I am running Rick Troth's Webshare 1.2.3 in z/VM 3.1.  In HTTPD REXX
there is a prodecure called GETLINE:

GETLINE:
trace i
Do While Index(buffer,'0A'x) = 0
'READTO'
'PEEKTO PACKET'
If rc \= 0 Then Leave
buffer = buffer || packet
End  /*  Do Forever  */

Parse Var buffer packet '0A'x buffer
packet = packet || '0A'x
'CALLPIPE VAR PACKET | MAKETEXT LOCAL | VAR PACKET'
trace n
Return packet

This has worked for years until I started using Internet Explorer 9.
It now hangs on the PEEKTO PACKET statement.  The trace shows no
return code.  It just stops.

Webshare is still working fine with Firefox and Chrome.

Has anyone else run into this problem?

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 48 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.794.6172
  "Yes, Virginia, there is a Slippery Rock"
--


Re: CHARLOTTe Updates to WW2CORE REXX

2011-02-15 Thread Fran Hensler
Many thanks to Jonathon Scott for updating and maintaining CHARLOTTe
and to Perry Ruiter for uploading it to the IBM Download site at
http://www.vm.ibm.com/download/packages/

The HTML entities I asked for (single and double quotes) have been
added and are working fine.

 hanks again guys.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Mon, 14 Feb 2011 22:37:00 -0800 Perry Ruiter said:
>  The most current level of Charlotte is now available via the VM download
>library.  It's been over 8 years since the download library was refreshed
>and in that time a number of problems have been fixed and enhancements
>made.  I encourage everyone to upgrade to the current fix level.  If
>anyone requires the source package contact me directly ... Perry
>
>Perry Ruiter
>250-658-6517
>
>- Message from Fran Hensler  on Mon, 14 Feb 2011
>13:19:07 -0500 -
>Subject:
>Re: CHARLOTTe Updates to WW2CORE REXX
>
>Dale is correct -- the code is in WW2PARSC.  I don't have a C
>compiler.
>
>I now have the source code and Jonathon Scott has already made the
>updates I wanted.  He sent the updated package to Perry Ruiter to
>upload to the IBM Download site.  I got a note from Perry that he is
>very busy and can't get to it just now.  So, I'm a patient fellow and
>I can wait.
>
>/Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
>mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
>  "Yes, Virginia, there is a Slippery Rock"
>--
>On Sun, 13 Feb 2011 16:30:27 -0600 =?iso-8859-1?Q?Dale_R._Smith?= said:
>>Fran, I have all the source code to Charlotte 2.1.0 and I can send it to
>>you.  The code you would need to change is written in C and is called
>>WW2PARSC.  It is a rewrite of the REXX code originally supplied in
>>WW2PARSE REXX.  It looks like it would be easy to change it, but you
>would
>>need a C compiler, of course.  I don't have one so I can't help you.
>>WW2PARSC was originally written and maintained by Jonathan Scott of IBM
>>UK.  It looks like he is still around and he might have a more current
>>version with what you need.  WW2PARSC is maintained with a control file
>>and updates, (like all good VM/CMS code should be!).  If you don't have a
>>C compiler either, perhaps one of "Daves" :-)> would volunteer to change
>>it, compile it, and regen it.
>>
>>--
>>Dale R. Smith
>


Re: CHARLOTTe Updates to WW2CORE REXX

2011-02-14 Thread Fran Hensler
Dale is correct -- the code is in WW2PARSC.  I don't have a C
compiler.
 
I now have the source code and Jonathon Scott has already made the
updates I wanted.  He sent the updated package to Perry Ruiter to
upload to the IBM Download site.  I got a note from Perry that he is
very busy and can't get to it just now.  So, I'm a patient fellow and
I can wait.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Sun, 13 Feb 2011 16:30:27 -0600 =?iso-8859-1?Q?Dale_R._Smith?= said:
>Fran, I have all the source code to Charlotte 2.1.0 and I can send it to
>you.  The code you would need to change is written in C and is called
>WW2PARSC.  It is a rewrite of the REXX code originally supplied in
>WW2PARSE REXX.  It looks like it would be easy to change it, but you would
>need a C compiler, of course.  I don't have one so I can't help you.
>WW2PARSC was originally written and maintained by Jonathan Scott of IBM
>UK.  It looks like he is still around and he might have a more current
>version with what you need.  WW2PARSC is maintained with a control file
>and updates, (like all good VM/CMS code should be!).  If you don't have a
>C compiler either, perhaps one of "Daves" :-)> would volunteer to change
>it, compile it, and regen it.
>
>--
>Dale R. Smith


CHARLOTTe Updates to WW2CORE REXX

2011-02-08 Thread Fran Hensler
Good morning -

I am still using CHARLOTTe 2.10 in z/VM 3.1.  I think it is great   for
except one annoyance -- newer HTML entities such as “ ”squo;
‘ & do not get translated into displayable EBCDIC characters.

I think it is WW2CORE REXX that does this work and I would like to
update it but I don't know how to decompile the compiled REXX.

The source code is not in the CHARLOTT package on the IBM DOWNLOAD site.
The package has a note that source code can be obtained by contacting
charlotte.supp...@gems4.gov.bc.ca  but this address in no longer active.

Does anyone know of a newer contact address?  Or has someone already
updated CHARLOTTe to handle the mentioned HTML entities?

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


100 Years of IBM

2011-02-02 Thread Fran Hensler
Cross posted to VM and VSE lists:

Video showing 100 years of IBM inovations:

http://www.wimp.com/ibmachievements/

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: Sort Fields Question

2011-01-04 Thread Fran Hensler
Sergio -
 
Take a look at HELP PIPE SORT.
 
'PIPE < cpux9 batchw a | sort 1-8 descending 63-65 | > cpux9 batd a'
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Tue, 4 Jan 2011 17:10:16 +0300 Sergio Lima said:
>
>Hello List,
>
>We have a CMS file, with some fields.
>One of this field is a date, in the DD/MM/YY format.
>We also have 200 records medium by day.
>Another field, is a numeric percentage that I need get the top 50 for each day.
>So, We think execute a sort under a REXX EXEC , like this :
>
>trace r
>queue "1 8 63 65"
>"sort cpux9 batchw a cpux9 batd a "
>exit
>
>But, looking on HELP of sort command can't see the descending option.
>
>We think this, because after the sort, will write another REXX that read only
>the first 50 records , and write another output file.
>
>Someone already have used the sort with descending order, or know if have
>another way to do this?
>
>Thanks very much,
>
>Sergio Lima Costa
>Sao Paulo - Brazil


Wanted: IBM Systems Magazine Feb 2009

2010-08-29 Thread Fran Hensler
Does anyone have a printed copy of the February 2009 IBM Systems
Magazine that they would like to sell?

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: CMS file date

2010-08-17 Thread Fran Hensler
I use DMSPLU which comes with CMS but I don't think it is documented.

DMSPLU fn ft fm mm/dd/yy HH:MM:SS

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Tue, 17 Aug 2010 15:14:14 -0400 Mark Pace said:
>Can I manipulate the date of a CMS file?  I want to test a program that
>deletes files older than a certain date. In linux I can use *touch* to set
>the date to whatever I choose.
>
>--
>Mark D Pace
>Senior Systems Engineer
>Mainline Information Systems
>


Re: Disaster Recovery TCPIP Address Issue

2010-08-12 Thread Fran Hensler
My solution for changing TCP/IP IP numbers and other things when doing
a disaster recovery is documentated on my VM Download page at:
http://zvm.sru.edu/~download

Look for PROD_DR HTML and PROD_DR VMARC

Basically I ask the OPERATOR at IPL time if we are running PROD or
DR and switches are set in VM and VSe to indicate where we are.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: Looking for "Knights of VM"

2010-08-03 Thread Fran Hensler
Both terms are correct but they have different meanings..
 
A 'court jouster' is a warrior whereas a 'court jester' is a clown.
 
Since Tony had made his remarks is 'jest' I chose to use court jester.
 
/Fran

On Tue, 3 Aug 2010 08:53:09 -0700 Schuh, Richard said:
>Isn't that "court jouster"?
>
>Regards,
>Richard Schuh
>
>
>
>> -Original Message-
>> From: The IBM z/VM Operating System
>> [mailto:ib...@listserv.uark.edu] On Behalf Of Fran Hensler
>> Sent: Tuesday, August 03, 2010 4:58 AM
>> To: IBMVM@LISTSERV.UARK.EDU
>> Subject: Re: Looking for "Knights of VM"
>>
>> Tony -
>>
>> Would you like to be the Court Jester?
>>
>> /Fran
>> --
>> --
>> On Mon, 2 Aug 2010 21:34:21 -0400 Tony Thigpen said:
>> >OH NO!
>> >
>> >Knighthood has gone to their heads.
>> >
>> >Now they are better than us and need their own sandbox to play in
>> >'cause they can't be bothered with us mere mortals.
>> >
>> >
>> >(All in jest.)
>> >
>> >
>> >Tony Thigpen
>> >
>> >-Original Message -
>> > From: Fran Hensler
>> > Sent: 08/02/2010 10:12 AM
>> >> To all Dames and Knights inducted into the Order of Knights of VM:
>> >>
>> >> There is a LinkedIn group for us and it now has 45 members.
>> >>
>> >> I think there are eligible members on IBMVM that have not
>> yet joined.
>> >>
>> >> Go to:  http://www.linkedin.com/groupsDirectory
>> >> and search for "Knights of VM"
>> >>
>> >> This is a closed group and in order to join I will verify your
>> >> eligibility with the list at:
>> >> http://www2.marist.edu/~mvmua/knights.html
>> >>
>> >> Sir Fran of the Rock
>> >>
>> >> /Fran Hensler at Slippery Rock University of Pennsylvania
>> USA for 47 years
>> >> mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh
>> +1.724.738.2153
>> >>   "Yes, Virginia, there is a Slippery Rock"
>> >>
>> -
>> >> -
>> >>
>> >>
>>


Re: Looking for "Knights of VM"

2010-08-03 Thread Fran Hensler
Tony -

Would you like to be the Court Jester?

/Fran

On Mon, 2 Aug 2010 21:34:21 -0400 Tony Thigpen said:
>OH NO!
>
>Knighthood has gone to their heads.
>
>Now they are better than us and need their own sandbox to play in 'cause
>they can't be bothered with us mere mortals.
>
>
>(All in jest.)
>
>
>Tony Thigpen
>
>-Original Message -
> From: Fran Hensler
> Sent: 08/02/2010 10:12 AM
>> To all Dames and Knights inducted into the Order of Knights of VM:
>>
>> There is a LinkedIn group for us and it now has 45 members.
>>
>> I think there are eligible members on IBMVM that have not yet joined.
>>
>> Go to:  http://www.linkedin.com/groupsDirectory
>> and search for "Knights of VM"
>>
>> This is a closed group and in order to join I will verify your
>> eligibility with the list at: http://www2.marist.edu/~mvmua/knights.html
>>
>> Sir Fran of the Rock
>>
>> /Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
>> mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
>>   "Yes, Virginia, there is a Slippery Rock"
>> --
>>
>>


Looking for "Knights of VM"

2010-08-02 Thread Fran Hensler
To all Dames and Knights inducted into the Order of Knights of VM:

There is a LinkedIn group for us and it now has 45 members.

I think there are eligible members on IBMVM that have not yet joined.

Go to:  http://www.linkedin.com/groupsDirectory
and search for "Knights of VM"

This is a closed group and in order to join I will verify your
eligibility with the list at: http://www2.marist.edu/~mvmua/knights.html

Sir Fran of the Rock

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: InfoZIP ZIP/UNZIP: Updating the VM/CMS port

2010-07-24 Thread Fran Hensler
Al -
 
That is a god suggestion.  I have replaced packages on my website with
links to new version of some software.  I'll do ot for InforZIP too.
 
/Fran

On Fri, 23 Jul 2010 16:37:42 -0400 Al Dunsmuir said:
>On Thursday, July 22, 2010, 5:06:08 PM, Fran Hensler wrote:
>
>> I have a version of VM INFO-ZIP dated from 1998 on my VM download
>> site:  http://zvm.sru.edu/~download
>
>> If there is a later version available for Vm I would like to put it on
>> my download site.
>
>Fran,
>
>It  looks  like  the  old  VM/CMS  port  is  no  longer available from
>www.infozip.org or the new SourceForge web page.
>
>When I have my initial changes integrated and a workable VM/CMS build
>available  I  will be making it available from SourceForge along with
>the other InfoZIP betas.
>
>Once it gets to the point of release, I have no issues with making it
>available  on  your  site.  I would  just request pointers to the main
>InfoZIP sites (forum and SourceForge) be there too so folks know where
>to go to report issues or request features.
>
>Al


Re: InfoZIP ZIP/UNZIP: Updating the VM/CMS port

2010-07-22 Thread Fran Hensler
I have a version of VM INFO-ZIP dated from 1998 on my VM download
site:  http://zvm.sru.edu/~download

If there is a later version available for Vm I would like to put it on
my download site.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Wed, 21 Jul 2010 15:21:39 -0400 Les Koehler said:
>I've seen a post that says the output of the C compiler on Z/OS is compatible
>with what VM needs. If the systems are connected, as I would hope, then no 
>extra
>fees are involved.
>
>Les
>
>Dunsmuir, Allan wrote:
>> Folks,
>>
>> I'm beginning the task of updating the InfoZIP zip and
>> unzip ports for z/OS MVS and z/OS USS.  This is being done
>> as part of my "real job" at RBC, and I'm working with
>> the InfoZIP crew to keep the process of integrating and
>> supporting these updates going smoothly.
>>
>> There has been some discussion spread across various topics
>> in the InfoZIP online forums.  The main InfoZIP developers
>> asked me to create some new topics to get some focussed
>> discussions going.  The first of this is actually for VM/CMS.
>>
>> See: http://www.info-zip.org/board/board.pl?m-1279724242/
>>
>> As part of the z/OS work, I would like to bring the VM/CMS
>> codebase up to date.  I've got a reasonable level of VM/CMS
>> background from my time at IBM (I was one of the authors of
>> what became the HLASM IDF utility, and spent much time in
>> C/C++ compiler group), but I'm not a current active VM/CMS
>> user.
>>
>> At RBC, we do have VM/CMS, so I plan get an ID to do testing
>> of new code but unfortunately we do not have a licence for
>> the IBM VM C compiler.
>>
>> To ensure success, we need to get some folks using VM/CMS
>> (hopefully from IBM Endicott and other organizations) involved.
>>
>> We need:
>>
>> * At minimum someone with access to the C compiler
>>   that can do builds for us.
>>
>>   If that person could become the owner of the
>>   development/release of VM/CMS-specific code that
>>   would be ideal.
>>
>> * VM/CMS folks with opinions for development/design
>>   discussion.  Folks with knowledge or needs related
>>   to the CMS USS equivalent (byte file system) would
>>   be very useful (even if the final informed agreement
>>   is to continue to only support standard CMS files.
>>
>> * VM/CMS developers and users with a bit of spare time
>>   to assist with ongoing testing.
>>
>> While I am posting this here on the IBMVM mailing list, I
>> would ask that for sanity's sake discussion is kept in the
>> InfoZIP forums.  While I am subscribed to the IBMVM mailing
>> list, I've got a lot of stuff on the go (picture multiple
>> chainsaws in mid-juggle) and don't have time to follow it
>> properly.
>>
>> Thanks for listening, and especially if you can help us.
>> Al Dunsmuir
>> ___
>>
>> This e-mail may be privileged and/or confidential, and the sender does not
>waive
>> any related rights and obligations. Any distribution, use or copying of this
>e-mail or the information
>> it contains by other than an intended recipient is unauthorized.
>> If you received this e-mail in error, please advise me (by return e-mail or
>otherwise) immediately.
>>
>> Ce courriel peut contenir des renseignements protégés et confidentiels.
>> L’expéditeur ne renonce pas aux droits et obligations qui s’y rapportent.
>> Toute diffusion, utilisation ou copie de ce courriel ou des renseignements
>qu’il contient
>> par une personne autre que le destinataire désigné est interdite.
>> Si vous recevez ce courriel par erreur, veuillez m’en aviser immédiatement,
>> par retour de courriel ou par un autre moyen.


Linkedin Group "Order of Knights of VM"

2010-07-08 Thread Fran Hensler
To all Dames and Knights inducted into the Order of Knights of VM:

I have created a group for us at:
http://www.linkedin.com/groupsDirectory?results=&sik=1278613167347

This is a closed group and in order to join I will verify your
eligibility with the list at: http://www2.marist.edu/~mvmua/knights.html

Sir Fran of the Rock

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: Actions at Midnight

2010-05-07 Thread Fran Hensler
I should have mentioned that VMUTIL was not part of VM/Sp but was
included in an licensed add-on package called (I think) ISPF.
Since I stole it from that package I guess I'm illegally running it.
 
/Fran

On Fri, 7 May 2010 11:46:09 -0400 Fran Hensler said:
>VM/SP3 for me.  I still use the DTR$WAIT to get it started after a
>change to the WAKEUP file.
>
>/Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
>mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
>  "Yes, Virginia, there is a Slippery Rock"
>--
>On Fri, 7 May 2010 09:49:23 -0500 David Boyes said:
>>
>>VMUTIL is since ages no longer part of the base VM system; WAKEUP is, but the
>>execs around it forming VMUTIL are no longer there.
>>
>>Guess that shows how long I've been at this. I've been carefully nursing a 
>>copy
>>of VMUTIL since SP5. 8-)
>>Maybe I need my brain flushed. I suspect IBM would pay for it if I quit 
>>messing
>>up their marketing plans. 8-)
>>-- db
>>
>>


Re: Actions at Midnight

2010-05-07 Thread Fran Hensler
VM/SP3 for me.  I still use the DTR$WAIT to get it started after a
change to the WAKEUP file.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 47 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Fri, 7 May 2010 09:49:23 -0500 David Boyes said:
>
>VMUTIL is since ages no longer part of the base VM system; WAKEUP is, but the
>execs around it forming VMUTIL are no longer there.
>
>Guess that shows how long I've been at this. I've been carefully nursing a copy
>of VMUTIL since SP5. 8-)
>Maybe I need my brain flushed. I suspect IBM would pay for it if I quit messing
>up their marketing plans. 8-)
>-- db
>
>


Re: Converting Text to XLS

2010-04-21 Thread Fran Hensler
I think you might have a solution there.  A canned email or even an
attachment with instructions.
 
/Fran

On Wed, 21 Apr 2010 08:33:54 -0700 Schuh, Richard said:
>the files themselves, so I get complaints. If I do not find a way to handle 
>that in all of the suggestions and code provided because of this thread, I 
>will simply have
>to add the instructions to the e-mail when I send it.


Re: Converting Text to XLS

2010-04-20 Thread Fran Hensler
Richard -

I often send CSV files with a .txt extension.  I use a TAB X'05' as a
delimiter which is the default for for .txt files.

The files are sent to user's network drive.  They start Excel, OPEN
the file and Excel recognizes the TAB delimiters and automatically
pulls the file into the spreadsheet.  Only one thing for the user to
do:  Select all, click Format -> Column -> Autofit selection.

I get no complaint from user about having to do this format.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: RSCS: Printing to Ricoh Copier with LPR

2010-04-16 Thread Fran Hensler
You are correct (as always) Kris.

The DVM where DIAGD4 wakesup when a spool file is received from VSE.
It then executes the DIAGD4 EXEC to change the ORIGINID.
Then a PIPE reprints the spool file to RSCS and RSCS sees the
alternate ORIGINID that DIAGD4 specified.

I'm sorry for the confusion.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Fri, 16 Apr 2010 11:36:55 +0200 Kris Buelens said:
>The public may now think that DIAGD4 can alter the origin of an existing
>spool file.  That is not the case.
>
>DIAG D4 sets the alternate user of a machine, any spool files it creates
>after this setting, will have the alternate userid as origin.
>
>2010/4/15 Fran Hensler 
>
>> Les -
>>
>> I didn't mean to imply that I was using the DIAGD4 EXEC for the Ricoh
>> problem.  I only offered it as a way to solve changing the ORIGINID on
>> spool files.  I haven't tried to see if the new ORIGINID would be
>> passed to the Ricoh in the p record.
>>
>> I only use DIAGD4 in a DVM that receives print from VSE, processes it
>> and then sends it on to RSCS for printing.  My purpose was so have
>> 'VSE' print on the separator page, not the name of the DVM.
>>
>> /Fran
>> 
>> On Thu, 15 Apr 2010 07:40:35 -0400 Les Geer (607-429-3580) said:
>> >Has the use of DIAGD4 resolved the situation?  Is the correct origin
>> >user ID passed on the P control file record?  Does the daemon find
>> >this and authenticate properly?
>> >
>>
>
>
>
>--
>Kris Buelens,
>IBM Belgium, VM customer support
>


Re: RSCS: Printing to Ricoh Copier with LPR

2010-04-15 Thread Fran Hensler
Les -

I didn't mean to imply that I was using the DIAGD4 EXEC for the Ricoh
problem.  I only offered it as a way to solve changing the ORIGINID on
spool files.  I haven't tried to see if the new ORIGINID would be
passed to the Ricoh in the p record.

I only use DIAGD4 in a DVM that receives print from VSE, processes it
and then sends it on to RSCS for printing.  My purpose was so have
'VSE' print on the separator page, not the name of the DVM.

/Fran

On Thu, 15 Apr 2010 07:40:35 -0400 Les Geer (607-429-3580) said:
>Has the use of DIAGD4 resolved the situation?  Is the correct origin
>user ID passed on the P control file record?  Does the daemon find
>this and authenticate properly?
>


Re: RSCS: Printing to Ricoh Copier with LPR

2010-04-14 Thread Fran Hensler
/* Sample DIAGD4 EXEC */
/*
Use DIAG D4 to change spool ownerid to original owner.
 */


/*  Do a QUERY RDR to find OWNERID  */


ownerid = Left(ownerid,8)  /* Who sent us spool file */
target  = Left(Userid(),8) /* Machine name this EXEC is running in */
Address Command 'DIAGD4' target ownerid
If Rc /= 0 Then Say 'DIAGD4 had a return code =' Rc

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Wed, 14 Apr 2010 21:54:09 -0400 Les Geer (607-429-3580) said:
>Are you able to change the origin user ID within the spool file
>updated with Diag D4?
>
>Best Regards,
>Les Geer
>IBM z/VM and Linux Development
>
>>I checked my code and I'm using DIAG D4.
>>
>>>>  The problem that we have is that some of the prints come from a CMS
>>>>users rdr. The originid is what actually gets passed. If the report came
>>>>from the vse system to the CMS user, then the origin id is the name of
>>>>the VSE guest, and that can't be changed that I can see. We would need
>>>>to somehow alter the origin id in order to be able to have a valid user
>>>>id. We need to have each print job tied to a specific person and not a
>>>>vm guest name.
>>>>
>>>
>>>As others have suggested, you can use Diagnose x'F8' to change a CMS
>>>users spool file origin information.  From VSE, do you have an NJE
>>>link defined to RSCS?  If so, I believe you can specify origin
>>>information when you submit the job to VSE.
>>>
>>>


Re: RSCS: Printing to Ricoh Copier with LPR

2010-04-14 Thread Fran Hensler
Les -

I checked my code and I'm using DIAG D4.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Wed, 14 Apr 2010 08:01:08 -0400 Les Geer (607-429-3580) said:
>>  The problem that we have is that some of the prints come from a CMS
>>users rdr. The originid is what actually gets passed. If the report came
>>from the vse system to the CMS user, then the origin id is the name of
>>the VSE guest, and that can't be changed that I can see. We would need
>>to somehow alter the origin id in order to be able to have a valid user
>>id. We need to have each print job tied to a specific person and not a
>>vm guest name.
>>
>
>As others have suggested, you can use Diagnose x'F8' to change a CMS
>users spool file origin information.  From VSE, do you have an NJE
>link defined to RSCS?  If so, I believe you can specify origin
>information when you submit the job to VSE.
>
>
>Best Regards,
>Les Geer
>IBM z/VM and Linux Development


Re: RSCS: Printing to Ricoh Copier with LPR

2010-04-13 Thread Fran Hensler
Martin -
 
The DIAG D4 instruction can be used to change the ORIGIN of a
file in the RDR.  I pass the real ID of the user in the POWER
DIST=  parameter and I send the print to a DVM where DIAGD4 is
running.  DIAGD4 changes the ORIGIN to whatever is in the DIST
and then transfers the RDR to RSCS.
 
You can get the DIAGD4 package on my VM Download page at:
http://zvm.sru.edu/~download.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
 
On Tue, 13 Apr 2010 13:35:15 -0400 Benedict, Martin said:
>Les,
>  The problem that we have is that some of the prints come from a CMS
>users rdr. The originid is what actually gets passed. If the report came
>from the vse system to the CMS user, then the origin id is the name of
>the VSE guest, and that can't be changed that I can see. We would need
>to somehow alter the origin id in order to be able to have a valid user
>id. We need to have each print job tied to a specific person and not a
>vm guest name.
>
On Tue, 13 Apr 2010 08:08:51 -0400 Benedict, Martin said:
>All,
>
>  We are converting to ELP printing. This is Enhanced Locked Printing,
>were you need to swipe a badge on the printer to login and receive your
>prints. This works fine for windows based printing. However, I am trying
>to find a way to send the vmuserid to RSCS, then onto VM/TCPIP and to
>the printer via LPR to lock down our vm prints to corporate printers.
>These reports are generally from a VM users rdr, and sometimes from  1
>or more VSE guest machines. Feel free to respond directly if need be.
>


Re: RSCS: Printing to Ricoh Copier with LPR

2010-04-13 Thread Fran Hensler
DIAG D4 and change the ORIGIN of a file in the RDR to whatever you
wish.  Then TRANSFER the file to RSCS.
 
Get the DIAGD4 VMARC on my VM download page at:
http://zvm.sru.edu/~download
 
I haven't tried this on the Ricoh.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Tue, 13 Apr 2010 12:38:48 -0500 =?iso-8859-1?Q?Martin_Benedict?= said:
>Les,
>  The problem that we have is that some of the prints come from a CMS users
>rdr. The originid is what actually gets passed. If the report came from the
>vse system to the CMS user, then the origin id is the name of the VSE
>guest, and that can't be changed that I can see. We would need to somehow
>alter the origin id in order to be able to have a valid user id. We need to
>have each print job tied to a specific person and not a vm guest name.
>
>
>
>On Tue, 13 Apr 2010 12:16:39 -0400, Les Geer (607-429-3580)
> wrote:
>
>>LPRXONE passes the user ID of the print job origin in the p control
>>file record.  Is this being used by the Ricoh?
>>
>>
>>
>>Best Regards,
>>Les Geer
>>IBM z/VM and Linux Development
>>
>>>We have pretty much the same setup. However, we have a need to pass a
>>>person's userid to the Ricoh. Our printers are setup with the badge
>>>swipecard reader and we need to be able to pass a userid. We are currently
>>>using
>>>the LPRXONE. If there is another that supports an actual userid, i would
>>>be willing to switch to test. We also are using RSCS to TCPIP/LPR to the
>>>printers.
>>>
>>>
>>>
>>>
>>>On Wed, 7 Apr 2010 10:47:28 -0400, Fran Hensler  wrote:
>>>
>>>>>On Tue, 06 Apr 2010 15:30:27 EDT Fran Hensler f...@zvm.sru.edu said:
>>>>>>We have various models of Ricoh copiers around campus to which we have
>>>
>>>>>>been sending print from RSCS Networking Version 3, Release 2.0-0201.
>>>>>>
>>>>>>Recently authorization codes were installed on some of them.  Without
>>>>>>the use of this code the print just goes into the bit bucket.
>>>>>>So from RSCS everything looks normal but nothing prints.
>>>>>>
>>>>>>On the Ricoh Customer Help page http://tinyurl.com/yf2mtku
>>>>>>there is a question:
>>>>>>   How do I add a user code when printing from a Unix command line?
>>>>>>and the answer is:
>>>>>>   You may add a user code to a Unix print job by adding -o usercode>> to
>>>the
>>>>>command line.
>>>>>>
>>>>>>   For example:
>>>>>>
>>>>>>   lp -d restricted_printer -o usercode=3D12345 /etc/hosts
>>>>>>
>>>>>>
>>>>>>My question:
>>>>>>   Is there any way to get RSCS to send the usercode?  What PARM
>>>>>>statement would I use?
>>>>>>
>>>>
>>>>On Tue, 6 Apr 2010 20:42:49 -0400 Les Geer (607-429-3580) said:
>>>>>Which RSCS LPR exit are you using?  LPRXONE does not currently include
>>>>>the -o record in the control file sent to the printer.  You would need
>>>>>to modify the exit to add it.  Unsure if the printer would accept
>>>>>a usercode via a PCL or postscript command.  If so, then you could add
>>>>>it via the prefix eparm.
>>>>>
>>>>>Best Regards,
>>>>>Les Geer
>>>>>IBM z/VM and Linux Development
>>>>
>>>>Les -
>>>>
>>>>I tried
>>>>*usercode=3D34043404 in ASCII
>>>>   EPARM=3D'S=3DN PREFIX=3D75736572636F653D3334303433343034'
>>>>and Exit LPRXONE took it but it didn't work.
>>>>
>>>>I found a solution at: http://tinyurl.com/yk5vveh
>>>>
>>>>The Ricoh configuration can specify unrestricted users by IP
>>>>address.  I entered the IP address of the mainframe and I'm now
>>>>able to print with RSCS LPR.
>>>>
>>>>Thanks to Les Geer and David Boyes for offering possible
>>>>solutions.
>>>>
>>>rs
>>>>mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
>>>>  "Yes, Virginia, there is a Slippery Rock"
>>>--


Re: RSCS: Printing to Ricoh Copier with LPR

2010-04-07 Thread Fran Hensler
>On Tue, 06 Apr 2010 15:30:27 EDT Fran Hensler f...@zvm.sru.edu said:
>>We have various models of Ricoh copiers around campus to which we have
>>been sending print from RSCS Networking Version 3, Release 2.0-0201.
>>
>>Recently authorization codes were installed on some of them.  Without
>>the use of this code the print just goes into the bit bucket.
>>So from RSCS everything looks normal but nothing prints.
>>
>>On the Ricoh Customer Help page http://tinyurl.com/yf2mtku
>>there is a question:
>>   How do I add a user code when printing from a Unix command line?
>>and the answer is:
>>   You may add a user code to a Unix print job by adding -o usercode= to the
>command line.
>>
>>   For example:
>>
>>   lp -d restricted_printer -o usercode=12345 /etc/hosts
>>
>>
>>My question:
>>   Is there any way to get RSCS to send the usercode?  What PARM
>>statement would I use?
>>

On Tue, 6 Apr 2010 20:42:49 -0400 Les Geer (607-429-3580) said:
>Which RSCS LPR exit are you using?  LPRXONE does not currently include
>the -o record in the control file sent to the printer.  You would need
>to modify the exit to add it.  Unsure if the printer would accept
>a usercode via a PCL or postscript command.  If so, then you could add
>it via the prefix eparm.
>
>Best Regards,
>Les Geer
>IBM z/VM and Linux Development

Les -

I tried
*usercode=34043404 in ASCII
   EPARM='S=N PREFIX=75736572636F653D3334303433343034'
and Exit LPRXONE took it but it didn't work.

I found a solution at: http://tinyurl.com/yk5vveh

The Ricoh configuration can specify unrestricted users by IP
address.  I entered the IP address of the mainframe and I'm now
able to print with RSCS LPR.

Thanks to Les Geer and David Boyes for offering possible
solutions.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


RSCS: Printing to Ricoh Copier with LPR

2010-04-06 Thread Fran Hensler
Hello list -

We have various models of Ricoh copiers around campus to which we have
been sending print from RSCS Networking Version 3, Release 2.0-0201.

Recently authorization codes were installed on some of them.  Without
the use of this code the print just goes into the bit bucket.
So from RSCS everything looks normal but nothing prints.

On the Ricoh Customer Help page http://tinyurl.com/yf2mtku
there is a question:
   How do I add a user code when printing from a Unix command line?
and the answer is:
   You may add a user code to a Unix print job by adding -o usercode= to the 
command line.

   For example:

   lp -d restricted_printer -o usercode=12345 /etc/hosts


My question:
   Is there any way to get RSCS to send the usercode?  What PARM
statement would I use?

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Contact Thomas Huegel

2010-03-31 Thread Fran Hensler
Tom Huegel used to post on this list but I haven't seen anything
recently.  His email address was thue...@kable.com but that does
not exist anymore.

Does anyone know of his new email address?

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: GCS Session managers

2010-03-11 Thread Fran Hensler
We have been using VTAM/SWITCH from MacKinney Systems for over 20
years.  We use the VM version that is no longer supported but it
works so we're sticking with it.  It runs in GCS.

Users can access multiple sessions on VM or VSE.

I believe if you used the VSE version that you could still access VM
if you have VM/VTAM.

The price was quite reasonable as all MacKinney products are.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: Hi everybody

2010-02-06 Thread Fran Hensler
No one has yet mentioned the origianl TCPIP package which included
sample DIRECT statements for each machine and these samples included
CLASS A for each machine.

The command to end SMTP is CP SM SMTP SHUTDOWN.

I was logged onto the SMTP machine for debugging and I entered the
SHUTDOWN command incorrectly and you can guess the rest.

The directory classes were then promptly changed.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: Different PROFILE TCPIP for DR

2010-01-28 Thread Fran Hensler
See the PROD-DR files on http://zvm.sru.edu/~download
 
What I do is ask the operator at IPL time whether we are running on
PROD or DR.  Depending on the response various service machines choose
the correct PROFILEs/EXECs on VM and also on VSE.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Thu, 28 Jan 2010 15:59:23 -0800 O'Brien, Dennis L said:
>I'm setting up a DR process for a new system.  I need to use a different 
>PROFILE TCPIP when the system is up in the DR site.  I know that the easy and 
>wrong way is to
>update TCPIP's PROFILE EXEC to copy the correct PROFILE TCPIP to the A-disk.  
>I'm trying to do it the right way, by using a server exit to pass the name of 
>the profile
>to
>the stack.  I can't figure out what to pass to get the stack to use a 
>different profile.  I've tried
>
>Return ':Command.TCPIP DRTEST TCPIP *
>
>and
>
>Return ':Parms.DRTEST TCPIP *
>
>Both yield:
>DTCRUN1011I Running server command: TCPIP
>DTCRUN1011I Parameters in use:
>DTCRUN1011I  DRTEST TCPIP *
>
>The problem is that the parameters don't seem to influence which file gets 
>used.  I don't have "userid" or "node" TCPIP files, so the stack reads PROFILE 
>TCPIP.  The
>userid and node name don't change during DR, so using those files wouldn't 
>help.  Is there a way to tell the stack what file to use, or should I just use 
>the exit to
>copy
>the correct file to the A-disk as PROFILE TCPIP?
>   
>    Dennis O'Brien
>
>"See, I'm a man of simple tastes. I like dynamite, and gunpowder... And 
>gasoline! Do you know what all of these things have in common? They're cheap!" 
> -- Heath Ledger
>as
>The Joker, in The Dark Knight


Re: search a file for 2 character strings

2010-01-17 Thread Fran Hensler
Or download a GREP program that runs in CMS from
http://zvm.sru.edu/~download
The C/370 runtime libraries are required.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Fri, 15 Jan 2010 11:51:16 -0700 Jack Woehr said:
>Wilson, Roger wrote:
>>
>> I am trying to write a rexx exec that counts the number occurrences of
>> 2 strings of characters.
>>
>Copy it over to Linux and
>
>grep '[C|N]798' myfile.txt
>


Re: advise on a simple REXX script to automate FTP from zVM to Linux server

2010-01-15 Thread Fran Hensler
That's the ticket, Frank.
 
I added you hint the top of the file and put it on my VM download
site at http://zvm.sru.edu/~download
 
And thanks to Bruce Hayden for his solution.
 
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Fri, 15 Jan 2010 08:55:39 -0600 Frank M. Ramaekers said:
>After I downloaded it, I XEDITed and entered "SET TEXT ON", which makes
>it readable.
>
>Frank M. Ramaekers Jr.
>Systems Programmer   MCP, MCP+I, MCSE & RHCE
>American Income Life Insurance Co.   Phone: (254)761-6649
>1200 Wooded Acres Dr.Fax:   (254)741-5777
>Waco, Texas  76710


Re: advise on a simple REXX script to automate FTP from zVM to Linux server

2010-01-15 Thread Fran Hensler
The syntax section of ftp.rexx is impossible to read with either IE
or CHARLOTTe.  Does someone have readable syntax?

I tried accessing the http://ukcc.uky.edu/~tools.1997/ but it times out.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Thu, 14 Jan 2010 12:26:13 -0600 Dave Jones said:
>Hi, Mark.
>
>In addition to the many excellent suggestions you've already received,
>you might also want to consider using the CMS Pipeline FTP stage. A very
>simple example of its use is:
>
>  PIPE < test file a | ftp use...@host.domain/test.file
>
>It also supports using an FTP proxy server,as well.
>
>You can find it here:
>
>http://vm.marist.edu/~pipeline/ftp.rexx
>
>Have a good one.
>
>DJ


Re: Old question

2009-12-18 Thread Fran Hensler
I've been using this method ever since I migrated from VM/SP 3 to 4.
Works great!  Only once did I screw up because I had both minidisks in
R/W mode and it was easy to recover by reformatting the minidisk.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


On Fri, 18 Dec 2009 09:34:57 -0600 Mike Walter said:
>  {snip}  I'll offer another
>simple method disk-to-disk copy technique (usable by those not permitted
>to download tools): Define a minidisk on both systems, on the same DASD at
>the same extents for both systems.


Re: 3380 DDR to 3390 Question

2009-12-16 Thread Fran Hensler
Dave -
 
DDR only works on like devices so a 3380 dump must be restored to
3380 devices.
 
What is the actual hardware you want to restore to?  Maybe it will
allow you to emulate 3380 DASD.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
 
On Tue, 15 Dec 2009 14:16:18 -0800 KEETON Dave * SDC said:
>Hello Listers,
>
>I've been given some DDR tapes of 3380 volumes and I'm looking
>for a way to restore them to 3390. Is this possible? I've tried to
>define TDSK as 3380, but that fails.
>
>Thanks in advance,
>
>Dave Keeton
>
>
>Received: from *unknown [130.184.5.241] by ZVM.SRU.EDU (IBM VM SMTP Level 3A0)
> via TCP with ESMTP ; Tue, 15 Dec 2009 17:17:00 EST
>X-Warning: ZVM.SRU.EDU: Host *unknown claimed to be listserv.uark.edu


My VM Download Site

2009-12-03 Thread Fran Hensler
Recently someone was searching for the RXWAIT package which proves that
there is still a need for some of these old VM packages.

Tom Kern was kind enough to send a copy to the requestor and also to me
so that I could put it on my VM Download site at
http://zvm.sru.edu/~download

If anyone has a VM package that has no home they can send it me to add
to my collection of VM goodies.

I'm adding one line descriptions to the packages.  If you send a package
a one line description would be appreciated.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: Do VM customers use READ/VM?

2009-12-03 Thread Fran Hensler
Well I was too fast on the trigger and replied to the VM list.

I should have sent my reply directly to:

william.mun...@bbh.com  or   hasti...@us.ibm.com

/Fran
On Thu, 3 Dec 2009 10:42:56 -0500 Fran Hensler said:
>No
>
>/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
>mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
>  "Yes, Virginia, there is a Slippery Rock"
>--


Re: Do VM customers use READ/VM?

2009-12-03 Thread Fran Hensler
No

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: TXT2PDF problem

2009-10-07 Thread Fran Hensler
Jim -
 
I'm running TXT2PDF 04.147 in an 8MB machine as a PIPE stage.
 
My PIPE reads NETDATA files directly from the RDR, calls the TXT2PDF
stage and then sends the output directly to an RSCS printer.  So
there are no intermediate files involved.  The largest report I ever
processed was about 500 pages.
 
I don't know if something like this would solve your storage problem.
If you want my code just give a holler.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Tue, 6 Oct 2009 15:44:12 -0400 Hughes, Jim said:
>I am running version 9.107 of TXT2PDF. The problem existed with prior
>versions too.
>
>
>
>We have a 232,000 page report containing license plate data for the
>entire state. It has been going to fiche and the new direction is PDF.
>
>
>
>When I run this thing through TXT2PDF I eventually I get this message:
>
>
>
>DMSFRO159E Insufficient storage available to satisfy free storage
>request from 00088E5A
>
>
>
>Followed by:
>
>
>
>DMSMOD109S Virtual storage capacity exceeded
>
>
>
>I've increased the virtual storage size from 16meg to 32 meg with no
>happiness.  I am in the process of breaking the file up. I am at 50,000
>pages and it still fails.
>
>
>
>If someone has experienced this problem and found a solution, please let
>me know.
>
>
>
>Jim Hughes
>
>603-271-5586
>
>"It is fun to do the impossible."
>
>
>
>


Re: Basic FTP question

2009-10-02 Thread Fran Hensler
Bob -
 
If the userid is logged on you can't get write access to the 191 disk.
With WS-FTP I specifyuserid.RDR   as the remote directory.  The
file will end up in your RDR in NETDATA format.
 
Note that the FTPSERVE machine must have enough workspace to hold your
whole file during the FTP.  It then does a SENDFILE to the specified
user.
 
What I did was define a 64M virtual disk to FTPSERVE to use as a work
area.  Works great!
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Fri, 2 Oct 2009 09:47:58 -0500 Bob_Henry said:
>I'm trying to set up an ftp session from my PC to z/VM V5.1. I've tried a
>couple FTP products (FileZilla & WinSCP) which produces errors "Failed to
>retrieve directory listing". I finally found an ftp product that works
>(CoreFTP) but the CMS 191 disk is accessed as read only so I can't transfer
>any data to it. Is there a setting in the z/VM FTP server that causes this?
>Can I issue a SITE command (or something else) that will put the mdisk in
>write mode?


Re: Get unnamed printer file to my A disk from RDRL

2009-09-21 Thread Fran Hensler
On Mon, 21 Sep 2009 14:37:50 -0400 Martin, Terry R. (CMS/CTR) (CTR) said:
>I have a printer file in my RDR and I want to receive it to my A disk
>but it is UN-NAMED how do I do this:
>
>(none)   (none)   PRT A M1P3 LPD1M911 NONE  334  9/21
 
 
 
Do a RL (Reader List) and type left of the file:
RECEIVE /  
 
Or  CP Q RDR  to get spoolid and then
RECEIVE   
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: REXX DATE - Julian and Centry

2009-07-31 Thread Fran Hensler
I just now added REXXTRY EXEC to my VM Download Page:
http://zvm.sru.edu/~download
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Fri, 31 Jul 2009 10:27:22 -0500 Frank M. Ramaekers said:
>Wasn't there a REXXTRY available to interactively work with REXX?  (Can't seem 
>to find it on my z/VM 5.4 system.)
>
>Frank M. Ramaekers Jr.
>Systems Programmer   MCP, MCP+I, MCSE & RHCE
>American Income Life Insurance Co.   Phone: (254)761-6649
>1200 Wooded Acres Dr.Fax:   (254)741-5777
>Waco, Texas  76710


Re: EMail with a binary attachment

2009-07-31 Thread Fran Hensler
Use SENDFILE recipi...@node.com (MIME
 
>From HELP SENDFILE:
 
  MIME
  The file is sent using SMTP. The file is encoded in BASE64 and sent as a
  single-part MIME data stream. This applies only to TCP/IP addresses.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Thu, 30 Jul 2009 13:34:09 -0500 Frank M. Ramaekers said:
>I know you can use NOTE to send email to users, but how would you send
>an email with a binary attachment (like a PDF file)?
>
>Frank M. Ramaekers Jr.
>Systems Programmer   MCP, MCP+I, MCSE & RHCE
>American Income Life Insurance Co.   Phone: (254)761-6649
>1200 Wooded Acres Dr.Fax:   (254)741-5777
>Waco, Texas  76710
>   
>
>
>
>
>
>_
>This message contains information which is privileged and confidential and is 
>solely for the use of the
>intended recipient. If you are not the intended recipient, be aware that any 
>review, disclosure,
>copying, distribution, or use of the contents of this message is strictly 
>prohibited. If you have
>received this in error, please destroy it immediately and notify us at 
>privacy...@ailife.com.


Re: EMail with a binary attachment

2009-07-31 Thread Fran Hensler
I can verify that MailBook handles binary files just fine.  Of course
you may not be able to use the binary files on VM, such as a .JPG,
but you can forward it to your PC mail client and it will still be a
good binary file.
 
I am an avid fan of MailBook.  It's been my primary email client
since I started using its ancestor, RiceMail, back in 1990.
 
I have EXECs on DVMs that use MailBook to send emails to various
people when certain events occur.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Thu, 30 Jul 2009 22:23:26 -0400 David Boyes said:
>MAILBOOK (which does this and a whole lot more) is still available.


Re: Charlotte SSL

2009-07-20 Thread Fran Hensler
Graeme -

I have it on my VM Download Page:

http://zvm.sru.edu/~download

Look for packages RXSSL and SSL

Note that this is an older implementation of SSL and will not work on
many web sites.  Charlotte will crash and you have to IPL CMS to
recover.

I can make it work on sites such as my bank.  But it does work on less
secure sites like http://informationweek.com (On this site cookies are
not remembered so you have to log in every time)

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Sun, 19 Jul 2009 13:33:20 +1000 Graeme Moss said:
>I am after the SSL package for Charlotte. The link
>http://cmsuvmb.cmsu.edu/charlott/ no longer works and I could not find it on
>University of Central Missouri website.
>
>tia
>Graeme


Re: Charlotte SSL

2009-07-20 Thread Fran Hensler
Grame -

I have it on my VM Download Page:

http://zvm.sru.edu/~download

Look for packages RXSSL and SSL

Note that this is an older implementation of SSL and will not work on
many web sites.  Charlotte will crash and you have to IPL CMS to
recover.

I can make it work on sites such as my bank.  But it does work on less
secure sites like http://informationweek.com (On this site cookies are
not remembered so you have to log in every time)

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Sun, 19 Jul 2009 13:33:20 +1000 Graeme Moss said:
>I am after the SSL package for Charlotte. The link
>http://cmsuvmb.cmsu.edu/charlott/ no longer works and I could not find it on
>University of Central Missouri website.
>
>tia
>Graeme


Isolating software (Was TN3270 logon screen)

2009-06-24 Thread Fran Hensler
On Wed, 24 Jun 2009 15:37:22 -0400 Alan Altmark said:
>One of the things we do in IBM that I do like is that a lot of
>product-related commands (e.g. cc, ditto) are simply execs (some compiled
>to MODULEs) that VMLINK to the appropriate disk to run the "real" version
>of the program.

I've been doing this since VM/SP3 (before there was a VMLINK EXEC).

Every software package and every release of that package has its
own mini-disk.  If something is found buggy in the new release I
can quickly change the linking EXEC to link to the previous
release mini-disk.

It's also nice to be able to switch back and forth with the
releases to compare results.

And it makes it easy to install a new release of VM.  None of my
EXECs are on what I consider to be IBM owned disks like the Y/S
disk.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: Which vm software to use?

2009-06-24 Thread Fran Hensler
Mary -

Here is a quick and dirty (tested) minus the WAKEUP routine:

   'PIPE < STUDENT USERIDS A | STEM USERID.'
   /* WAKEUP routine here */

   Do i = 1 to userid.0
  'PIPE CP IND USER' userid.i '| STEM INDUSER.'
  record = Date(U) Time()
  Do j = 1 to induser.0
 record = record induser.j/* Put all data on one line */
  End j
  'PIPE VAR RECORD | >> INDUSER FILE A'
   End i

You will get one line (with time stamp) per student every four hours.
Let the prof parse the data.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Wed, 24 Jun 2009 10:52:56 -0400 Mary Zervos said:
>
>Hello everyone,
>
>A professor here would like an "ind user studentname" taken every 4
>hours of his 80 students, with a report sent to him once a week.  My
>question is, which vm software to use and how to collect the data in a
>file to send the professor.  The professor will use his own program to
>extract the data he needs from the file.
>
>Thanks for any help.
>
>Mary Zervos
>VM Systems Programmer
>Binghamton University


Re: SMTP message question

2009-06-15 Thread Fran Hensler
The message means that the destination SMTP has received the message.
 
It does NOT mean that the addressee is correct or that it got into
his/her inbox.
 
You will sometimes receive a bounce after this message.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Mon, 15 Jun 2009 13:40:16 -0400 Gentry, Stephen said:
>I trying to determine under what condition(s) this message is generated:
>
>
>
>DTCSMT1312I 06/15/09 13:29:22 Delivered Note: 8777 to . . . .
>
>
>
>This message is in the SMTP LOG.  What I'd like to know, does this
>message occur after a successful email delivery to some other SMTP
>server?
>
>Does that email server send a message back to SMTP after accepting the
>email sent by SMTP?
>
>Issuing a HELP DTCSMT1312I returns an error message from HELP indicating
>it cannot find the message.
>
>Thanks,
>
>Steve
>
>


Re: EXECIO COMMAND HELP

2009-06-05 Thread Fran Hensler
Howard -
 
This would be an excellent place to use a PIPE assuming that your using REXX.
You would not have to worry about specifying a buffer size.
 
/* * * * Format of Query RDR:
ORIGINID FILE CLASS RECORDS  CPY HOLD DATE  TIME NAME  TYPE DIST
SMTP 4773 A PUN 0092 001 NONE 06/04 22:02:07 OWNER-IB  NOTE SRU
 * * * */
 
   'PIPE CP QUERY RDR ALL',
  '| DROP FIRST 1', /* Drop header line */
  '| STEM RDR.'
 
Do i = 1 to rdr.0   /* rdr.0 has line count */
   Parse Var rdr.i origin spoolid class . . . . . fn ft .
   /* Do something here */
End i
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
 
On Thu, 4 Jun 2009 19:01:03 -0700 Howard Rifkind said:
>Thanks Neal, this is just about what I did only 'queue rdr all'
>
>--- On Thu, 6/4/09, Neal Scheffler  wrote:
>
>From: Neal Scheffler 
>Subject: Re: EXECIO COMMAND HELP
>To: IBMVM@LISTSERV.UARK.EDU
>Date: Thursday, June 4, 2009, 4:36 PM
>
>You might try something like this:
>
>'EXECIO * CP (BUFFER 65536 STRING QUERY RDR SYSTEM ALL'
>
>Neal Scheffler
>
>


Re: z/VM 5.4 VSAM question - PJBR

2009-05-21 Thread Fran Hensler
I use CMS DITTO to copy VSE VSAM files to CMS files:  Function VF.

Does CMS DITTO use VSAM under the overs or does it access VSAM
files natively?

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: RES: How to Read partial dasd file directly ?

2009-05-16 Thread Fran Hensler
Hello João -
 
I think there is some confusion because you are asking a VSE question on
a VM discussion list.  So this is a VSE solution.
 
You say you know the extent of the data so what you need to do is get an
entry in the VTOC that includes the extent of the data without altering
the data.
 
Here is a program that will put an entry for a sequential disk in the VTOC.
 
 
* $$ JOB JNM=PUTVTOC,CLASS=8
* $$ LST CLASS=C
// JOB PUTVTOC
/*   D=03/17/2001,T=14:16:42,L=FRAN,N=J.PUTVTOC ,U=FRAN */
// OPTION LINK
// EXEC ASMA90
PUTVTOC START 0
BALR  10,0
USING *,10
OPEN  UOUT
EOJ
UOUTDTFPH TYPEFLE=OUTPUT,DEVICE=DISK,DEVADDR=SYS005
END
/*
// EXEC LNKEDT
// DLBL UOUT,'THIS IS MY FILE',0,SD
// EXTENT SYS005,88,1,0,720,300
// ASSGN SYS005,DISK,VOL=88,SHR
// EXEC
/&
* $$ EOJ
 
Change the EXXTENT stateent to match th extent where you found the data.
Run th eprogram and then you can use any sequential read program to get
the data.  I'm not sure if this will be helpful especially if the VSAm file
had FREESPACE defined and it was used.
 
Good luck
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 46 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
 
 
 
On Sat, 16 May 2009 21:02:14 -0300 Carlos_dos_Reis_Baptista said:
>I must agree I was very vague on reporting my problem.
>Anyway, I shall begin thanking you all.
>
>I am running a recovery on lost ESDS VSAM file due to VSAM UCAT disaster on a 
>VM/ESA+VSE/ESA (both 2.3 backlevel versions) installation.
>I have inspected the file volume ( I had a full listcat showing only one 
>extension, in the beginning of the 3390 pack).
>So I have done a DDR PRINT and the user identified his file records. That was 
>great, so now I have to extract the vsam CI's  from the middle of a VSAM SPACE 
>and put them
>in a sequential file for the user to pick his records back.
>
>Well, how should I pick those 4k records in the midle of a 3390 extent ?
>
>I have never used PIPE but I Will read about it, you may bet, but if there is 
>another simple way, please drop me some lines about it.
>
>
>Thanks you all for the comments.
>
>(PS: All these problems will vanish as soon as my new Green z10+zVM+zVSE pack 
>arrives)
>
>
>Atenciosamente,
>João Carlos R. Baptista
>Tel  ( 21)  3147 - 9565
>Gerencia de Tecnologia e Serviços
>Gravames.com
> 
>


Re: WAKEUP Order of Processing

2009-04-23 Thread Fran Hensler
On Thu, 23 Apr 2009 09:07:06 +0200 Kris Buelens said:
>The DO QUEUED() is not required, there is only one stacked message for
>an SMSG or IUCV event.

You are correct Kris.  I just ran a test where I flooded my WAKEUP
with 10 SMSGs in quick succession.  Tey were all processed one at a
time.

But I am SURE that when I first wrote my WAKEUP routine I was losing
SMSGs.  Could it be because they were RC=1?  I don't know when I
added:  'CP SET SMSG IUCV' to cause RC=5 on SMSG.

I do not use WAKEUP's FILE option.

/Fran


>If however you also use WAKEUP's FILE option, the WAKEUP file entry
>that (could have) caused is **in all interrupt cases** stacked first
>(before the entry of an SMSG for example).
>If more SMSGs (or IUCVMSGs) were sent, CP or WAKEUP itself may have
>queued some in their internal buffers while you handle the single one
>placed in the CMS stack.
>
>Losing messages: we almost never lost messages.  One exception: if you
>send SMSG's to a server and the server issues a RACF or NETSTAT
>command, all SMSGs queued by CP are "eaten" by the RACF/NETSTAT
>command (both SMSG and RACF/NETSTAT use VMCF, which is limited to one
>"path").  Solution: make WAKEUP handle the SMSGs via IUCV.  From my
>RxServer code:
>  WakeupOptions='IUCVMSG QUIET RDR'
>  /* To better co-exist with VMCF pgms like the RAC & NETSTAT command */
>  /* we will set SMSG to IUCV so WAKEUP no longer uses VMCF */
>  'CP SET SMSG IUCV'/* ... grab SMSGs with WAKEUP's IUCV interface */
>An SMSG will then make WAKEUP exit with RC=5 instead of 1.
>
>I recommend you have a look at the SERVER KERNEL file in my RxServer
>package; subroutines PROCESS:, GOT_a_MSG, and GOT_a_SMSG: are
>important here.
>
>2009/4/23 Fran Hensler 
>>
>> Jim -
>>
>> I found out the hard way that when WAKEUP gives you RC=5 that there
>> may be more then one message to be processed.
>>
>> When I wrote this EXEC I assumed that there was only one message and
>> every once in a while I would lose one.
>>
>> Here is part of an EXEC:
>>
>> 'CP SET SMSG IUCV'
>> Do Forever
>>   'WAKEUP(CONS IUCVMSG   RDR  '
>>   Say 'Queued =' queued() '  Rc='Rc
>>   Select
>>  When RC = 1 then Call wakeup_smsg
>>  When RC = 2 Then Call wakeup_time
>>  When RC = 4 Then Call wakeup_rdr
>>  When RC = 5 Then Call wakeup_smsg
>>  When RC = 6 Then Call wakeup_cons
>>  Otherwise Say 'Unexpected RC='RC 'from WAKEUP.'
>>   End /* select */
>> End /* Do */
>> Exit
>>
>> {snip}
>>
>>
>> wakeup_smsg:
>> /* == */
>> /* Process SMSG   */
>> /**/
>> Say 'Smsg queued =' queued()
>> Do m = 1 to queued()
>>   Call process_smsg
>> End
>> Return
>>
>> process_smsg:
>> Parse Upper Pull message
>> say message
>> If Word(message,3) = 'LOGOFF' then 'CP LOGOFF'
>> /* Do some processing */
>> Return
>>
>> /Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
>>mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
>>  "Yes, Virginia, there is a Slippery Rock"
>> --
>
>
>
>--
>Kris Buelens,
>IBM Belgium, VM customer support


Re: WAKEUP Order of Processing

2009-04-22 Thread Fran Hensler
Jim -

I found out the hard way that when WAKEUP gives you RC=5 that there
may be more then one message to be processed.

When I wrote this EXEC I assumed that there was only one message and
every once in a while I would lose one.

Here is part of an EXEC:

'CP SET SMSG IUCV'
Do Forever
   'WAKEUP(CONS IUCVMSG   RDR  '
   Say 'Queued =' queued() '  Rc='Rc
   Select
  When RC = 1 then Call wakeup_smsg
  When RC = 2 Then Call wakeup_time
  When RC = 4 Then Call wakeup_rdr
  When RC = 5 Then Call wakeup_smsg
  When RC = 6 Then Call wakeup_cons
  Otherwise Say 'Unexpected RC='RC 'from WAKEUP.'
   End /* select */
End /* Do */
Exit

{snip}


wakeup_smsg:
/* == */
/* Process SMSG   */
/**/
Say 'Smsg queued =' queued()
Do m = 1 to queued()
   Call process_smsg
End
Return

process_smsg:
Parse Upper Pull message
say message
If Word(message,3) = 'LOGOFF' then 'CP LOGOFF'
/* Do some processing */
Return

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: remembering PGP

2009-03-03 Thread Fran Hensler
There is a PGP VMARC that includes the PGP MODULE on my VM website at
http://zvm.sru.edu/~download

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Tue, 3 Mar 2009 12:04:57 -0500 Richard Troth said:
>Long ago, in a galaxy close to where I am this week, there was a PGP
>MODULE.  It was built by a kind person at MIT (which is NOT close to
>where I am this week) and worked exactly as one would expect it to work.
> Maybe some day we will have a PGP for CMS again.  Dunno.


Re: Sad News

2009-01-28 Thread Fran Hensler
Geeze - I got an email from Don just 2 weeks ago saying that he might
apply for a job opening here at SRU.  You just never know what's in
your future.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Tue, 27 Jan 2009 13:22:42 -0500 Shiminsky, Gary said:
>Hi,
>
>Don Hooker, former contractor to the State of New Hampshire, passed away
>in his sleep at home on Jan 23rd.
>
>He will be missed.
>
>Gary
>
>Gary L. Shiminsky


Re: DASD VOL1 doc

2009-01-24 Thread Fran Hensler
I have the GC33-5375-2 DOS/VS DASD Labels (Release 34) manual.
Google only found 1 reference to it which is in the DOS/VS Program
Directory for Release 34.

Here is a brief description of the VOL1 label:

LengthDescriptionContent
 3Label Identifier   VOL
 1Volume Label Number1
 6Volume Serial Number   xx
 1Volume SecurityOS/VS only
10Data File DirectoryVTOC Address & blanks: CCHHRb
10Reserved
10Reserved
10Owner  Name or Code
29Blanks

I suppose I should get this manual on http://bitsavers.org

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Sat, 24 Jan 2009 11:23:46 -0600 Stephen Frazier said:
>Tony Thigpen wrote:
>> Anybody know where in the VM manuals the layout of the VOL1 label is
>> documented?
>>
>I don't know where it is documented now but the DASD and tape VOL1
>records are the same format. The fields that are meaningful only tor
>tape are reserved on DASD and those that are  for DASD only are reserved
>on tape. There was a manual called something like "Labels Formats for
>MVS, DOS, and VM" that covered both DASD and tape labels. I have not
>seen it in many years and do not know if it still exists. It probably
>was renamed after MVS became z/OS and DOS became VSE.
>
>--
>Stephen Frazier
>Information Technology Unit
>Oklahoma Department of Corrections
>3400 Martin Luther King
>Oklahoma City, Ok, 73111-4298
>Tel.: (405) 425-2549
>Fax: (405) 425-2554
>Pager: (405) 690-1828
>email:  stevef%doc.state.ok.us


Re: FTP from CMS to VSE/POWER

2009-01-13 Thread Fran Hensler
Suieiman -
 
I think you've found the problem.  If you use RECEIVE without the
KEEPCC option you will loose the carriage control byte.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
 
 
 
 
On Tue, 13 Jan 2009 21:30:31 + Suleiman Shahin said:
>
>I tried that. Fisrt byte is still missing. :(
>
>Sorry I missed what David said as I have just switched from digest.
>
>maybe I need to clarify. The file ended up on CMS from the lst queue via
>SENDFILE and was read in by a hot reader.
>and that probably ate the first byte.
>
>Suleiman Shahin
>
>
>
>
>
>> Date: Tue, 13 Jan 2009 16:19:43 -0500
>> From: alan_altm...@us.ibm.com
>> Subject: Re: FTP from CMS to VSE/POWER
>> To: IBMVM@LISTSERV.UARK.EDU
>>
>> On Tuesday, 01/13/2009 at 03:59 EST, Suleiman Shahin
>>  wrote:
>> > This has worked fine, but.. the whole file is now one line according to
>> Power.
>>
>> That points to a CRLF problem.  As David suggests, try EBCDIC with MODE B
>> instead of ASCII.  (I would have expected a single line only if you used
>> BINARY.)
>>
>> Alan Altmark
>> z/VM Development
>> IBM Endicott
>
>_
>Windows Live™: Keep your life in sync.
>http://windowslive.com/howitworks?ocid=TXT_TAGLM_WL_t1_allup_howitworks_012009


Job Oportunities at SRU

2009-01-07 Thread Fran Hensler
There are three employment oportunities posted on the Slippery Rock
University of Pennsylvania human resources web site at
http://www.sru.edu/pages/1842.asp

One is for a Systems Software Support Specialist - Systems Programmer
and two are for Systems Analyst - Database Administrator.

This announcement is cross posted to the VSE and VM discussion lists.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:f...@zvm.sru.edu  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: Opinions needed on next version of TXT2PDF

2008-11-20 Thread Fran Hensler
LeLand -

I have TXT2PDF running as a stage of a PIPE that reads input
from the RDR and sends it directly to RSCS or my FTP2HOME machine
where it gets FTP'd the the user's network home drive.  I use the FORM
and DIST parameters to decide how to the files should be processed
and distributed.

We use TXT2PDF in production every day.  The main use is to produce
academic transcripts.  The text of the transcript is created on VSE
and routed to my VM/PDF machine where the registrar's signature and
the seal of the university are added from .jpg files.  The result is
sent either to RSCS for direct printing to PDF capable printers or it
is sent with SSL security to the eScrip-Safe.com Global Electronic
Delivery Network. See:  http://www.scrip-safe.com/sendtrans.html

The second popular use is to send reports from VSE to a user's
network home drive.  The reports are routed through VM/PDF where the
green bar overlay is added.  An unexpected bonus I discovered is that
space suppress carriage control works perfectly and we can
therefore send underlined data.  Without PDF the underline appears
on a new line.

I'm VERY happy with TXT2PDF and I recommend it every chance I get.

At this time I am not looking for any improvements to TXT2PDF.  I may
use the fonts feature when available but I doubt if I'd ever use
the UNICODE feature.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Wed, 19 Nov 2008 14:31:46 -0600 LeLand Lucius said:
{snip}
>I guess another couple of questions would be to ask if anyone even uses TXT2PDF
>anymore and if they have ever mucked about with the translation tables?
>
>Leland


Re: XML on VM

2008-11-19 Thread Fran Hensler
Tom -
 
Why don't you ftp to the .rdr ?
 
I do this all the time and I use WAKEUP to process the file.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Wed, 19 Nov 2008 11:05:09 -0600 Tom Duerbusch said:
>It doesn't look like I can use LPR to send the XML document to my reader 
>queue.  I keep getting truncated at 80 bytes.  I can FTP the file without any 
>problems, but I
>sure liked the WAKEUP (RDR as the method to drive the server.


Re: Query: Mainframers look forward and back

2008-11-09 Thread Fran Hensler
(Cross posted to VM and VSE lists)

Gabe -

Here's my story about managers:

I founded the Data Processing Center at Slippery Rock State College in
May 1963.  We had our first student registration using IBM punched card
tabulating equipment for the fall semester.

A new freshman did not show up for registration because he had an
appendectomy just before the beginning of the semester.  When he
showed up two weeks later the registrar sent him to me to get him
registered into whatever courses were still open.  He was fascinated
with the machines and asked me if I had student employees.  I told him
that I had just been authorized to hire someone and he got the job.
Paul worked for me until he was graduated.  He then went to the
University of Pittsburgh where he earned a Masters in Computer Science.

Now jump to 1969 when we had a real computer (IBM 360/40) and we
were looking for a Director of Computer Services.  Paul applied and
got the job so I was now working for my former student employee.

Paul left SRSC to become the Director of the University of
Pittsburgh Computer Center where he worked for 20 years.

About two months ago we invited SCT Banner and Oracle/Peoplesoft to
give presentations on their Student Information Systems.  Guess who
gave the presentation for Peoplesoft?  It was Paul.  (FYI - I will not
be participating in selecting the successful vendor).

My second story:

While Paul was my manager I was programming manager and one of my
programmers was Carl.  I did not like being a manager and Paul moved
me into full time systems programming and Carl took my place as
programming manager.  Carl was a very good manager and eventually
moved up to Assistant Director and later became the Director of
Computing Services so I was again working for a former subordinate.

Carl and I are both 66 years old and we work great together.  Four
younger programmer/analysts have retired in recent years and have not
been replaced. Carl and I are holding things together until we migrate
off the mainframe to a new Student Information System in 2010 or 2011.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: What's on a tape?

2008-11-01 Thread Fran Hensler
TBROWSE was indeed written by Yossie Silverman but it is now maintained
by Rick Bourgeois - [EMAIL PROTECTED] or [EMAIL PROTECTED]
of Virtual Software Systems, Inc.

I now have it on my download page at:
http://zvm.sru.edu/~download

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--

On Sat, 1 Nov 2008 14:51:54 EDT A. Harry Williams said:
>Also helpful would be TBROWSE by Yossie Silverman.  It was on a Waterloo Tape
>but I don't see it on the network anywhere.  It's an interactive browser for
>tapes.


Re: What's on a tape?

2008-11-01 Thread Fran Hensler
I have version 3.066 dated 1998-06-04 on my download page:
http://zvm.sru.edu/~download
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Sat, 1 Nov 2008 09:00:56 -0400 David Boyes said:
>TAPEMAP. Should be available on any of the VM Workshop tapes; won't
>report density correctly on post-3490 drives, but will produce a summary
>report of just about everything else you might need. Contact me offlist
>if you can't find a copy.
>
>> -Original Message-
>> From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED]
>On
>> Behalf Of Wayne T Smith
>> Sent: Friday, October 31, 2008 5:43 PM
>> To: IBMVM@LISTSERV.UARK.EDU
>> Subject: What's on a tape?
>>
>> I've been asked to figure out what we have in our inventory of VM and
>> VSE tapes, in preparation for moving to "new" drives/media.
>>
>> I'm expecting to write a PIPE that will do the required summary, more
>or
>> less iterating to a final solution by operators will be able to use on
>> our inventory of a few thousand tapes.
>>
>> Some of the expected formats include CMS and VSE labeled, unlabeled
>> created mostly here, but with some that may have been created
>elsewhere.
>> CMS formats include "standard" blocked & unblocked", tape, vmfplc2,
>and
>> various other CMS "TAPE" command local formats such as very old
>> "Perkin-Elmer" compressed format and other 800-byte block file
>systems.
>> In addition, I'll be recognizing specific formats such as SPSS system
>> files, SPTAPE, etc.
>>
>> Does anyone have a starting point I might use in place of a
>> bigger-than-I-want-project? ;-)
>>
>> cheers, wayne
>> U Maine System
>> (6 or 7 of 8 to 10 years into dismantling our VM system)


Re: RXSSL / Charlotte Problem

2008-10-22 Thread Fran Hensler
Thanks to Rick Barlow, Dave Jones and Peter Webb for sending me their
RXSSL VMARC and SSL VMARC.

I assume that they are the latest avaioable because the latest dated
file in each VMARC was RXSSL MODULE (2000-04-21 and 2000-04-24).
The RXSSL MODULE compared equal in the two VMARC files.

I have put these VMARC files on my VM Download site at:
http://zvm.sru.edu/~download

Tom Kern is working with the original author (Jim Johnson) to try and
update these files.  If they are successful I put the new files on my
download site.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: RXSSL / Charlotte Problem

2008-10-22 Thread Fran Hensler
I am also using Charlotte 2.1.0 fix level 177 built 2002-10-16
and I'm having the same problems with RXSSL support.
 
The RXSSL support for Charlotte is a separate package of updates.  I
have lost the original VMARC of RXSSL but I would try to recreate it
if there is any demand for it.  My RXSSL Module is timestamped
12/08/00 13:00:28.  There are quite a few files in the
RXSSL/WW2HTTPS update.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Tue, 21 Oct 2008 19:09:22 -0500 Alan_Ackerman said:
>I'm not using SSLSERV in my case, but rather the SSL support built in to
>z/Web Server for VM (Illustro). Tom Kern sent me his version, and it
>abends, also. Like him, I am trying to go from a CMS user to a web server
>on the same VM system.
>
>I found a new version of Charlotte on the VM download page at
>http://www.vm.ibm.com/download/packages/.
>
>It is Charlotte 2.1.0 fix level 177 built 2002-10-16 at 10:15. I
>downloaded it, but there is no source there. I get this message when I try
>to run it:
>
>HTTPS protocol requires an SSL interface program (WW2HTTPS REXX)
>
>I think I need the source for 177, alas.
>
>Does anyone know where to get it?
>
>Alan Ackerman
>Alan (dot) Ackerman (at) Bank of America (dot) com


Re: RXSSL / Charlotte Problem

2008-10-16 Thread Fran Hensler
Alan:  My version is:
RXSSLMODULE   A1 V  39080  4 11 2000-12-08 13:00:28
and it used to work pretty well but I am finding that fewer and fewer
sites that work.  I suspect that it is a root certificate problem.
See the SSL.README that came with the SSL updates for CHARLOTTe.
 
Try accessing https://hotmail.com and you'll get a message that the
certificate is bad.  If you decide to continue CHARLOTTe will blow up.
 
I used to be able to access my bank account but not any more.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
 
On Thu, 16 Oct 2008 13:18:48 -0500 Alan_Ackerman said:
>I'm trying to use Charlotte to go to a secure web page (HTTPS). RXSSL
>abends when I try this.
>
>Does anyone have a working version of RXSSL MODULE? An up-to-date version
>of Charlotte? A version of WW2GET that works with SSL?
>
>I find I have 3 versions of RXSSL:
>
>RXSSLMODULE   I1 V  31664  4  9 2000-03-22 09:59:55
>RXSSLMODULE   G1 V  38832  4 11 2000-02-18 11:24:57
>RXSSLMODULE   F1 V  31664  4  9 2000-02-02 09:28:59
>
>All 3 fail in the same way:
>
>ww2 https://vmdev6.bankofamerica.com:8050/
>TRUNCATION
>DMSITP143T Operation exception occurred at 816F6F8C in system routine
>RXSSL; re-
>IPL CMS
>
>ww2 https://vmdev6.bankofamerica.com:8050/
>TRUNCATION
>DMSITP143T Operation exception occurred at 816F6BA4 in system routine
>RXSSL; re-
>IPL CMS
>
>ww2 https://vmdev6.bankofamerica.com:8050/
>TRUNCATION
>DMSITP143T Operation exception occurred at 816F6F8C in system routine
>RXSSL; re-
>IPL CMS
>
>CHARLOTTE claims to be V2R1FL155
>
>I see that I added 128bit encryption via instructions from James Johnson
><[EMAIL PROTECTED]>.
>(That's the most recent version above.)
>
>Alan Ackerman
>Alan (dot) Ackerman (at) Bank of America (dot) com


Re: LPR from z/VM

2008-10-16 Thread Fran Hensler
David -
 
I would reecommend that you quit using the LPR command and set up you
printers using the free LPR feature in RSCS.
 
It's a little work to set it up but it is sweet to use.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Thu, 16 Oct 2008 15:42:03 -0700 Wakser, David said:
>All:
>
>   I believe I had this problem before, but I was probably
>distracted and never pursued it.
>
>   When I issue a CMS LPR command on a plain-text CMS file (using
>the following in an EXEC), it works fine. But if I attempt to print a
>file with an LRECL of 132, or 133 if using the CC option (and I change
>the WIDTH parameter accordingly), it seems that only the first line
>prints.
>
>   Is there some "secret" to printing from CMS using LPR? This is
>difficult for me to test, since the actual printers are unavailable to
>me physically, so experimenting with the various options becomes too
>bothersome (making a change, asking someone to check it out, waiting for
>their answer, etc.). FYI, the environment is z/VM 5.3.
>
>David Wakser
>   
>
>"LPR" fn ft fm "(PR SYSTPORT @ 10.10.10.10 NOHEADER NOPOSTSCRIPT WIDTH
>80 FILTER r"


Re: DIAG D4

2008-10-16 Thread Fran Hensler
Richard -
 
There is a DIAGD4 VMARC on my VM download site:
http://zvm.sru.edu/~download
 
It contains an assembler program to invoke DIAGD4 and a SAMPLE EXEC
that uses it.
 
There are two versions.  I use the later version in z/VM 3.1
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Thu, 16 Oct 2008 10:36:30 -0700 Schuh, Richard said:
>In an attempt to process a file that arrived in the reader of a class B
>machine and send the results to a third party's reader with the original
>file's Origiid, the DIAG D4 subcode 0 was greeted with RC=12. The
>description of this RC is:
>
>"ESM authorization denied or subcode X'00' issued when security
>label checking is enabled."
>
>I have about driven myself over the edge looking for a definition of
>"security label". I have searched both the z/VM bookshelf and the
>VM:Secure documentation and still have no idea of what constitutes a
>security label or how one is assigned or acquired. Neither can I find
>any mention of securing the Diagnose by any means other than privilege
>class.
>
>DIAG D4 has a subcode 4 that has the security label as a third
>parameter, but that is no help until I know what it is and where to find
>it. Is there anyone who would be so kind as to enlighten me?
>
>I cannot reach the Library Server, either BookManager or PDF, at the VM
>web site. I get a time-out message.
>
>
>Regards,
>Richard Schuh
>
>
>


Re: AUTOLOG

2008-10-02 Thread Fran Hensler
Are you sure the directory entry for AUTOLOG2 has the privilege
necessary to issue those commands?
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Thu, 2 Oct 2008 15:33:22 -0400 Martin, Terry R. (CMS/CTR) (CTR) said:
>Hi
>
>
>
>I am setting some parameters in my AUTOLOG2 PROFILE EXEC, but they do
>not seem to be taking affect. Is there something else I am missing?
>
>
>
>The 'CP XAUTLOG xxx' seems to be working fine but commands such as
>the following do not take affect:
>
>
>
>/* set recommended performance metrics for zLinux */
>
>'CP SET SRM STORBUF 300 250 200'
>
>'CP SET LDBUF 100 100 100'
>
>/* set Delay for Linux Guest Shutdown */
>
>'CP SET SIGNAL SHUTDOWN 180'  /* Allow Linux Guests 3 mins to shutdown*/
>
>'CP SET MDC STOR 0M 256M'
>
>'CP SET MDC XSTOR 0M 0M'
>
>
>
>To test these I issue the xautolog autolog2 command from MAINT after I
>have LINKED to AUTOLOG2.
>
>
>
>Thank You,
>
>
>
>Terry Martin
>
>Lockheed Martin - Information Technology
>
>z/OS & z/VM Systems - Performance and Tuning
>
>Cell - 443 632-4191
>
>Work - 410 786-0386
>
>[EMAIL PROTECTED]
>
>
>
>
>Received: from *unknown [130.184.5.241] by ZVM.SRU.EDU (IBM VM SMTP Level 3A0)


Re: VMARC download date

2008-09-30 Thread Fran Hensler
On my VM Download Site ( http://zvm.sru.edu/~download ) I always use
DMSPLU to make the date of the VMARC file be the same as the latest
file it contains.

For those unfamiliar with DMSPLU the syntax is:
DMSPLU fn ft fm mm/dd/yy hh:mm:ss

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Tue, 30 Sep 2008 07:46:30 -0400 Phil Smith III said:
>(Mike Walter wrote about VMARCs not having a timestamp on a VMARC.)
>
>Seems to me that the real problem here is with the originating site.


Re: VMFTP Return Code -5

2008-09-05 Thread Fran Hensler
Alan -
 
I began running my VMFTP macros with the ECHO ALL TYPE options last
Friday.  From the HELP VMFTP:
 
   Type   causes all FTP output to be displayed on the
  virtual machine console.
 
Yes, there is a lot of output to the console but I haven't had a RC -5
since. ???
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Thu, 4 Sep 2008 23:36:49 -0500 =?iso-8859-1?Q?Alan_Ackerman?= said:
>I don't remember if anyone's mentioned this, so here goes. In VMFTP you
>can get the full test of the error message as follows in your VMFTP file:
>
>'put 'fn'.'ft'.'fm problem'.49R.000.'ofn'.'oft'.PACKED.1024'
>If RC%100 <> 2 Then Signal Oops
>
>. . .
>
>Oops:
>
>Say execfn execft 'Return code' RC 'not expected'
>
>Say execfn execft OUTPUT.0 'lines returned:'
>Do j = 1 To OUTPUT.0
>   Say "'"Output.j"'"
>End
>
>Return RC
>
>I'm not sure that this'll work with your -5 return code, but it might.
>
>Alan Ackerman
>Alan (dot) Ackerman (at) Bank of America (dot) com


Re: VMFTP Return Code -5

2008-09-03 Thread Fran Hensler
Ivica -

All of the FTP's are to users on one of two IP address that are
within our firewall.  My version of FTP (3A0) on z/VM 3.1 does not
have the passvie ability.

I always get connected and signed in and I can do a CWD to the user's
directory.  The -5 only happens on a PUT  .

Today it happend on my own account on the network drive.  Then I
re-ran the VMFTP macro unchanged three more times and on the third
try it worked.

/Fran

On Wed, 3 Sep 2008 14:14:38 +1000 Ivica Brodaric said:
>I mean, if you don't get a connection, then RC -5 on PUT would be correct.
>Could this be the case?
>
>Ivica
>
On Wed, 3 Sep 2008 14:08:39 +1000 Ivica Brodaric said:
>Are you using active or passive FTP? If you are using passive FTP to get
>around the problem of foreign server establishing data connection to your
>unprivileged port (>1023), which would probably be blocked by your firewall,
>then server side might have a problem.
>In active mode, foreign server always uses ports 21 (command) and 20 (data).
>In passive mode, the server uses port 21 as command port and allocates an
>unprivileged data port to which you (client) then connect from your
>unprivileged port. Since server needs to cater for many FTP connections, it
>may have many open unprivileged ports. To reduce the number of open ports, a
>firewall on the server side may be setup to allow only a *range* of
>unprivileged ports to be open at any one time. Also, some FTP servers can be
>setup to allocate only from within a range of ports. I wander what response
>do they send when that range is exhausted and what happens if the firewall's
>range and server's range do not match (e.g. server allocates a port, but
>firewall doesn't let it through)?
>
>Ivica Brodaric
>
>


Re: VMFTP Return Code -5

2008-09-02 Thread Fran Hensler
>On Tuesday, 09/02/2008 at 09:21 EDT, Nick Laflamme <[EMAIL PROTECTED]> w rote:
>
>> I'll put $5 on "Fran's talking to two different kinds of FTP servers,"
>please.
>>
>> {snip}
>
On Tue, 2 Sep 2008 11:23:15 -0400 Alan Altmark said:
>Pay up.  :-) The Internet only works (most of the time) because we DO have
>faith! Though, sometimes, it is just sheer luck.
>
>
>Sir Alan, Lord of the Protcols

I'll gladly pay upif I can get a solution.

/Sir Fran of the Rock


Re: VMFTP Return Code -5

2008-09-02 Thread Fran Hensler
On Tue, 2 Sep 2008 09:51:54 -0500 Mike Walter said:
>Is there any chance that when you get the rc-5, the target network drive
>is momentarily "full", but then before the re-try something cleaned out a
>large file?  Did you know how large the files were that failed, and from
>the other perspective, what free space was at the time of failure?
>
This process of FTPing to 450+ users takes place at 3:00 am.  The max
file size to any on user is 20 MB and number of files is <= 7.

I have noticed from the logs that the -5 occurs on the same user
every morning and continues for several more users.  Then things seem
to correct themselves and normal FTP continues.

When I do a command line FTP to the failed user it works.  And then
the next morning the -5 will occur on a user further into the
process.

This morning I had no -5 RCs.  I assume it is because I did a command
line FTP to all of the users whose return code was  -5 the previous
day.

I will continue to delay each FTP by 3 seconds until the next time I
get a -5.  Then I will raise the delay to maybe 10 seconds and see
what happens.

Thanks everyone for your responses.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: VMFTP Return Code -5

2008-09-02 Thread Fran Hensler
>At 09:45 AM 9/2/2008 -0400, Fran Hensler wrote:
>>All of the FTPs are going to the same network drive.
>
On Tue, 2 Sep 2008 09:52:29 -0500 Nick Laflamme said:
>When you say "the same network drive," is that the same as saying,
>"the exact same server"? Or are you using more than one Windows
>server at different times, perhaps at different service levels or
>even different Windows versions? After all, the FTP interaction isn't
>driven by the file system but by the server accessing the file system.

All of the FTPs are going to two IP addresses:  10.1.nn.n0 & 10.1.nn.n1 .
The FTP is directed to one or the other dependening on the userid.
Each VMFTP macro begins with opening one of these IP addresses and
logs in, does the file transfer and then quits.  Max files for any one userid
seven.  Both servers are Microsoft Server 2003 but I think they share
the same SAN.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: VMFTP Return Code -5

2008-09-02 Thread Fran Hensler
On Tue, 2 Sep 2008 08:20:58 -0500 Nick Laflamme said:
>I'll put $5 on "Fran's talking to two different kinds of FTP servers," please.
>
>If I'm wrong, I'll pay the $5 the next time I'm at SCIDS.

Well if I knew what SCIDS is I would attend so I could collect :-).

All of the FTPs are going to the same network drive.  The command
line FTP responds with:

ftp 10.1.nn.nn
VM TCP/IP FTP Level 3A0
Connecting to 10.1.nn.nn, port 21
220 Microsoft FTP Service
USER (identify yourself to the host):

I did have a hunch that I was overloading the FTP server so I have a
3 second delay between each VMFTP execution.  Maybe I should raise
that.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: VMFTP Return Code -5

2008-09-02 Thread Fran Hensler
The return code -5 is does NOT always happen on a disk full
condition.

I have an exec FTP2HOME that does 450+ FTPs to users' homes drives.

It creates a  VMFTP macro on a VDISK and then invokes VMFTP to
exec it.  The FTP2HOME EXEC creates and runs 384 macros before it
gets a -5 RC.  There were numerous -5 RCs after that one.  I
discovered from logs that the -5 occurred often after the first one
occurred, always far along in the process.

I did the same FTP commands manually on the user who first got the
-5.  It worked! Then I ran all of the remaining macros with VMFTP
and there were no more -5 RCs.

I run this process at 3:00 am every day with essentially the same
files (class lists for faculty) and this morning there were NO -5 RCs.

However I did receive some RC=550 indicating no space.

Could it be a storage corruption problem?  It seems that whatever
causes the first -5 continues to do so.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: VMFTP Return Code -5

2008-08-29 Thread Fran Hensler
On Fri, 29 Aug 2008 18:06:04 -0400 Hughes, Jim said:
>When you issue the put command from the command line(no vmftp), what is
>the text of the 550 message?
>
 
Command:
put NO_INST.TXT NO_INST_2008-08-29_15-57-07_FRI.txt
>>>SITE VARrecfm
500 'SITE VARrecfm': command not understood
>>>PORT 10,1,72,34,209,200
200 PORT command successful.
>>>STOR NO_INST_2008-08-29_15-57-07_FRI.txt
550 NO_INST_2008-08-29_15-57-07_FRI.txt: There is not enough space on the disk.
 
/Fran



Re: VMFTP Return Code -5

2008-08-29 Thread Fran Hensler
On Fri, 29 Aug 2008 17:32:22 -0400 Hughes, Jim said:
>Hi Fran,
>
>What is the exact response string you receive when doing the PUT and the
>target system does not have room to store the file?
>
I'm getting return code -5 (only on PUT) and stem OUTPUT has 0 lines.
 
But when I try to make a directory I get the proper response:
550 TEST: There is not enough space on the disk
 
/Fran


Re: VMFTP Return Code -5

2008-08-29 Thread Fran Hensler
I have found the reason for the return code -5.

Although it is supposed to mean 'subcommand syntax error' that is not
my case.  The problem is that there is not enough space on the target.

I'm doing the ftp to a network drive which has a limit of 30 MB for
each user.  The user in question has used his full 30 MB.

When I use the VMFTP macro I get a return code -5.  But when I type
the commands in CMS one at a time I get a return code on the PUT of
550 which means there is not enough space.  So there must be a problem
with VMFTP.

BTW, I tried MKDIR TEST in a VMFTP macro for this same user and VMFTP
gave me the correct response that there is not enough room on the disk.

/Fran
---
Here is the console log:

ftp 10.1.72.40
VM TCP/IP FTP Level 3A0
Connecting to 10.1.xx.xx, port 21
220 Microsoft FTP Service
USER (identify yourself to the host):
srunet\x
>>>USER srunet\x
331 Password required for srunet\x.
Password:

>>>PASS 
230 User srunet\aaamfuser logged in.
Command:
cd /eliott.baker
>>>CWD /eliott.baker
250 CWD command successful.
Command:
cd Mainframe
>>>CWD Mainframe
250 CWD command successful.
Command:
dir
>>>PORT 10,1,72,34,209,199
200 PORT command successful.
>>>LIST
150 Opening ASCII mode data connection for /bin/ls.
08-19-08  04:45PM Class_Lists
08-19-08  04:46PM DARS
08-19-08  04:50PM QWCONF
08-19-08  04:41PM RS133
226 Transfer complete.
Command:
cd rs133
>>>CWD rs133
250 CWD command successful.

Command:
put NO_INST.TXT NO_INST_2008-08-29_15-57-07_FRI.txt
>>>SITE VARrecfm
500 'SITE VARrecfm': command not understood
>>>PORT 10,1,72,34,209,200
200 PORT command successful.
>>>STOR NO_INST_2008-08-29_15-57-07_FRI.txt
550 NO_INST_2008-08-29_15-57-07_FRI.txt: There is not enough space on the disk.

Command:
quit
>>>QUIT
221


Re: VMFTP Return Code -5

2008-08-29 Thread Fran Hensler
Romney -
 
If the local file does not exist I get this:
 
   VMFTPM401I put TEST.FILE SAP041_2008-08-29_05-32-34_FRI.txt
   Local file not found or cannot be accessed.
 
If the remote file exists it should be overwritten.
 
That leave 'subcommand syntax error' as the reason for -5.
 
I can't see the syntax error.
 
   VMFTPM401I put NO_INST.TXT NO_INST_2008-08-26_03-38-11_TUE.txt
   33 *-* 'put NO_INST.TXT NO_INST_2008-08-26_03-38-11_TUE.txt'
  +++ RC(-5) +++
 
The STEM OUTPUT. contains 0 lines.
 
/Fran
 
 
 
On Fri, 29 Aug 2008 12:03:25 -0500 Romney_White said:
>Fran:
>
>That return code is set if there is a syntax error in the command or if the
>file does not exist.
>
>Romney


Re: VMFTP Return Code -5

2008-08-29 Thread Fran Hensler
HELP VMFTP shows that return code -5 indicates a "subcommand syntax
error".
 
Most of the time this exact statement works.  If you see a syntax
error then please point it out.
 
The file is being sent to a Microsoft server:
 
  VM TCP/IP FTP Level 3A0
  Connecting to 10.1.72.40, port 21
  220 Microsoft FTP Service
 
/Fran
-
On Fri, 29 Aug 2008 08:53:34 -0700 Schuh, Richard said:
>Aren't those "self explanatory"?
>
>Regards,
>Richard Schuh
>
>
>
>> -Original Message-
>> From: The IBM z/VM Operating System
>> [mailto:[EMAIL PROTECTED] On Behalf Of Fran Hensler
>> Sent: Friday, August 29, 2008 8:23 AM
>> To: IBMVM@LISTSERV.UARK.EDU
>> Subject: Re: VMFTP Return Code -5
>>
>> I should have included a couple of examples:
>>
>> VMFTPM401I put NO_INST.TXT NO_INST_2008-08-26_03-38-11_TUE.txt
>> 33 *-* 'put NO_INST.TXT NO_INST_2008-08-26_03-38-11_TUE.txt'
>>+++ RC(-5) +++
>>
>> VMFTPM401I put ALIAS.TXT ALIAS_2008-08-28_02-12-42_THU.txt
>> 33 *-* 'put ALIAS.TXT ALIAS_2008-08-28_02-12-42_THU.txt'
>>+++ RC(-5) +++
>>
>> Sorry I didn't provide relevant information in my first post.
>>
>> /Fran


Re: VMFTP Return Code -5

2008-08-29 Thread Fran Hensler
I should have included a couple of examples:

VMFTPM401I put NO_INST.TXT NO_INST_2008-08-26_03-38-11_TUE.txt
33 *-* 'put NO_INST.TXT NO_INST_2008-08-26_03-38-11_TUE.txt'
   +++ RC(-5) +++

VMFTPM401I put ALIAS.TXT ALIAS_2008-08-28_02-12-42_THU.txt
33 *-* 'put ALIAS.TXT ALIAS_2008-08-28_02-12-42_THU.txt'
   +++ RC(-5) +++

Sorry I didn't provide relevant information in my first post.

/Fran

On Fri, 29 Aug 2008 08:18:37 EDT Fran Hensler said:
>I should have investigated this further before bothering the list.
>
>I looked at the source for VMFTP and it return -5 on subcommand syntax error
>
>I run the VMFTP with the ECHO ALL option and I can not see a syntax
>error.  And the -5 is always on the PUT command.
>
>/Fran
>--------
>On Fri, 29 Aug 2008 08:05:23 EDT Fran Hensler said:
>>I run a VMFTP macro frequently and 99% of the time it works
>>perfectly.  But once in a while I will get a return code of -5 after
>>the PUT fn1 fn2
>>
>>Has anyone else experienced this?
>>
>>I think it is CMS that is issuing this negative RC but I can't find
>>a list of CMS return codes.
>>
>>/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
>>mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
>>  "Yes, Virginia, there is a Slippery Rock"
>>--


Re: VMFTP Return Code -5

2008-08-29 Thread Fran Hensler
I should have investigated this further before bothering the list.

I looked at the source for VMFTP and it return -5 on subcommand syntax error

I run the VMFTP with the ECHO ALL option and I can not see a syntax
error.  And the -5 is always on the PUT command.

/Fran

On Fri, 29 Aug 2008 08:05:23 EDT Fran Hensler said:
>I run a VMFTP macro frequently and 99% of the time it works
>perfectly.  But once in a while I will get a return code of -5 after
>the PUT fn1 fn2
>
>Has anyone else experienced this?
>
>I think it is CMS that is issuing this negative RC but I can't find
>a list of CMS return codes.
>
>/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
>mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
>  "Yes, Virginia, there is a Slippery Rock"
>--


VMFTP Return Code -5

2008-08-29 Thread Fran Hensler
I run a VMFTP macro frequently and 99% of the time it works
perfectly.  But once in a while I will get a return code of -5 after
the PUT fn1 fn2

Has anyone else experienced this?

I think it is CMS that is issuing this negative RC but I can't find
a list of CMS return codes.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: Tell vs. Msg ?

2008-08-21 Thread Fran Hensler
CP MSG always delivers the message in upper case.
An exception is using a pipe in an EXEC
PIPE CP MSG user 'Hello World!'

Tell is a CMS EXEC that uses CP MSG under the covers.  It always
delivers the message in the case in which it was invoked.

So you can use CP MSG in machines that aren't running CMS like RSCS,
GCS, VSE and I suppose z/OS.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--

On Thu, 21 Aug 2008 14:11:36 -0700 Lionel B. Dyck said:
>Is there any difference between TELL and MSG ?
>
>Is one preferred over the other?
>


Re: DDR'ing 3390 DASD To Remote Location

2008-08-21 Thread Fran Hensler
I now have running on z/VM 3.1 PIPEDDR, FTPPUT and FTPGET.

Thanks Bruce,
/Fran
---
On Thu, 21 Aug 2008 11:10:27 -0400 Bruce Hayden said:
>Your PIPEDDR syntax would be:
>pipeddr dump * 195 (ftp -h xx.sru.edu -u xx -p xxx -f fran.ddr
>
>I forgot to put ftp examples in the help when I sent it.  They are in
>there for the next update.
>
>A restore could be:
>pipeddr restore * 195 (ftp(-h xx.sru.edu -u xx -p xxx
>-f fran.ddr) noprompt
>
>The problem you had with ftpget is because you didn't specify the
>record format to write it out - either -fixed  or -var xxx (see
>the DRPC HELP file for the file formats for variable.)
>
>On Thu, Aug 21, 2008 at 10:49 AM, Fran Hensler <[EMAIL PROTECTED]> wrote:
>> Jiri and Bruce -
>>
>> What is the minimun level of VM required to run DRPC and PIPEDDR?
>> I have been trying unsuccessfully to run both in z/VM 3.1.
>>
>> I have tried with both the CMS Pipelines and the Princeton Runtime
>> Pipes.
>>
>> pipe ddr dump195 ddrin a | > 195 dump c
>> DMSABE141T Operation exception occurred at 00020416 in routine DDR CMS
>>
>> pipe < session globalv | ftpput ...  -f fran.junk
>> works to a UNIX system but I can't FTPGET the file back:
>>
>> pipe ftpget -h xx.sru.edu -p  -u xx -f fran.junk | > x x a
>> fran.junk
>> INVALID INTERNAL MODE MODE
>> FTPGET FAILED WITH RC=-109
>>
>> Here's attempts to use PIPEDDR:
>>
>> PIPEDDR DUMP * 195 = = C (PACK
>> Dumping disk FJH 0195 to FJH DISK0195 C
>> Dump completed.
>>
>> pipeddr dump * 195 xx.sru.edu 21 -u xx -p xxx -f fran.ddr
>> Dumping disk FJH 0195 to xx.SRU.EDU
>> Connection not established with the remote side.
>> Dump failed.
>>
>> I'm stuck on z/VM 3.1 because that's the only release IBM will
>> license for a FLEX-ES system.
>>
>> /Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
>>mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
>>  "Yes, Virginia, there is a Slippery Rock"
>> --
>>
>
>
>
>--
>Bruce Hayden
>Linux on System z Advanced Technical Support
>IBM, Endicott, NY


Re: DDR'ing 3390 DASD To Remote Location

2008-08-21 Thread Fran Hensler
Dave Jones' SFB VMARC is now on my download page at
http://zvm.sru.edu/~download
or
http://zvm.sru.edu/~download/SFB.VMARC

As Dave says in his DOC:
 The normal distribution is for z/VM 5.1 5.2 and 5.3

I haven't been able to get it to work in z/VM 3.1 .

Note that the download may be slow because this is the beginning of
the semester and students are fiercely dropping and adding courses.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--

On Thu, 21 Aug 2008 10:22:32 -0500 Dave Jones said:
>Gang, I've just sent it off to Fran to be included on his VM download web page.
>He'll post a note here when it's ready to go. There are two (somewhat cryptic)
>documentation files included.
>


Re: DDR'ing 3390 DASD To Remote Location

2008-08-21 Thread Fran Hensler
Jiri and Bruce -

What is the minimun level of VM required to run DRPC and PIPEDDR?
I have been trying unsuccessfully to run both in z/VM 3.1.

I have tried with both the CMS Pipelines and the Princeton Runtime
Pipes.

pipe ddr dump195 ddrin a | > 195 dump c
DMSABE141T Operation exception occurred at 00020416 in routine DDR CMS

pipe < session globalv | ftpput ...  -f fran.junk
works to a UNIX system but I can't FTPGET the file back:

pipe ftpget -h xx.sru.edu -p  -u xx -f fran.junk | > x x a
fran.junk
INVALID INTERNAL MODE MODE
FTPGET FAILED WITH RC=-109

Here's attempts to use PIPEDDR:

PIPEDDR DUMP * 195 = = C (PACK
Dumping disk FJH 0195 to FJH DISK0195 C
Dump completed.

pipeddr dump * 195 xx.sru.edu 21 -u xx -p xxx -f fran.ddr
Dumping disk FJH 0195 to xx.SRU.EDU
Connection not established with the remote side.
Dump failed.

I'm stuck on z/VM 3.1 because that's the only release IBM will
license for a FLEX-ES system.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: z/VM z/Linux tools website

2008-08-20 Thread Fran Hensler
On Wed, 20 Aug 2008 08:25:00 -0400 Martin, Terry R. (CMS/CTR) (CTR) said:
>At one point I had the name of a website that had z/VM and z/Linux tools
>such as TRACK and others. I can not remember the site can someone help
>this "old guy" with this?
 
 
  http://vm.marist.edu/track/
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: DDR'ing 3390 DASD To Remote Location

2008-08-19 Thread Fran Hensler
>On Aug 19, 2008, at 1:39 PM, Fran Hensler wrote:
>> I have the latest CMS PIPLINES but it doesn't include FTPGET and
>> FTPPUT.  I can't find them on the IBM Download site either.
>>
>> Where can I get them?

On Tue, 19 Aug 2008 13:48:20 -0500 Adam Thornton said:
>Run INSTPIPE MODULE from MAINT 2CC.

I'm stuck on z/VM 3.1 because I am on a FLEX-ES box.

I found INST* files on MAINT 2C2 but not FTPGET or FTPPUT.

I have the latest Princeton Runtime Distribution but there is no
FTPGET or FTPPUT stages.

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: DDR'ing 3390 DASD To Remote Location

2008-08-19 Thread Fran Hensler
On Tue, 19 Aug 2008 13:21:40 -0400 Jiri Stehlik said:
>http://www.vm.ibm.com/download/packages/descript.cgi?DRPC
>The FTPPUT and FTPGET PIPE stages were also included and documented at the
>above address.

I have the latest CMS PIPLINES but it doesn't include FTPGET and
FTPPUT.  I can't find them on the IBM Download site either.

Where can I get them?

/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--


Re: Shutdown wont complete.. What next..

2008-08-17 Thread Fran Hensler
Can you tell if anything is still running?
If so, can you shutdown that task?
 
Is the OPERATOR terminal still usuable?
If not then I would assume that the system is dead.
I'd power down and then start up from scratch.
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Mon, 18 Aug 2008 03:08:24 + Suleiman Shahin said:
>
>Greetings Listers,
>
>The operator her did Shutdown reipl 90 minutes ago and the last message was
>SYSTEM SHUTDOWN STARTED..
>
>What can be done to bring system back up.
>
>zVM 5.3 on 2096.
>
>Thanks.
>
>Suleiman Shahin
>
>
>
>
>_
>Get ideas on sharing photos from people like you.  Find new ways to share.
>http://www.windowslive.com/explore/photogallery/posts?ocid=TXT_TAGLM_WL_Photo_G
>a
>llery_082008


Re: Looking for a copy of Arty Ecock's RXLDEV

2008-08-13 Thread Fran Hensler
Jim -
 
You can find a copy dated 1998-06-09 on my download site:
 
   http://zvm.sru.edu/~download
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 45 years
mailto:[EMAIL PROTECTED]  http://zvm.sru.edu/~fjh  +1.724.738.2153
  "Yes, Virginia, there is a Slippery Rock"
--
On Wed, 13 Aug 2008 10:32:26 -0400 Hughes, Jim said:
>I checked the VM downloads area without success.
>
>Where would I locate Arty's RXLDEV program?
>
>Thanks in advance.
>
>
>Jim Hughes
>603-271-5586
>"Its kind of fun to do the impossible." (Walt Disney)


  1   2   3   >