Re: z/OS Java JVM question

2012-01-15 Thread Steve Austin
Thanks for your responses.

The problem turned out to be because my JVM launcher was APF and the JNI
routine was not.

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
Behalf Of Justin R. Bendich
Sent: 13 January 2012 21:53
To: IBM-MAIN@bama.ua.edu
Subject: Re: z/OS Java JVM question

Steve Austin wrote:

Having successfully created the JVM I can then find my class and run
the main method.
However, if I add code the call a JNI routine the class can no longer
be found
[...]

Make sure that your LIBPATH environment variable includes the directory
in which
the required load module resides.

If the required load module is an external link (to a PDSE), you must
also ensure
that the STEPLIB DD includes the library containing your module (i don't
know
whether this is in batch or from the OMVS shell).

Justin

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN

 

-
This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
 

-

 -
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
 -

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


z/OS Java JVM question

2012-01-12 Thread Steve Austin
Having successfully created the JVM I can then find my class and run the main 
method. However, if I add code the call a JNI routine the class can no longer 
be found; the source of my class is shown below with the JNI call code 
commented out.  Any idea why the class can't be found?

 

Thanks

 

public class myhttp { 

  

/* public static native void CallNative(int s);   

   static {   

   System.loadLibrary(CallNative);  

   } */   

   public static void main(Stringݨ a) throws Exception { 

   int i = 9; 

   System.out.println(Hello);   

   /*  CallNative(i); */  

   }  

} 

 

 

 

C code to find the class:

 

   #pragma convert(UTF-8)   

   /* find the class we will use; myhttp */   

   javaClass = (*env)-FindClass(env, myhttp);  

   #pragma convert(pop)   

   if (javaClass == NULL) 

   {  

  printf (Cannot find class - myhttp\n);

   }
   

 

 


 -
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
 -
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Re: z/OS Java JVM question

2012-01-12 Thread Steve Austin
I've not changed the classpath, the only difference is in the java
source as shown.

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
Behalf Of Staller, Allan
Sent: 12 January 2012 14:18
To: IBM-MAIN@bama.ua.edu
Subject: Re: z/OS Java JVM question

CLASSPATH?

snip

Having successfully created the JVM I can then find my class and run the
main method. However, if I add code the call a JNI routine the class can
no longer be found; the source of my class is shown below with the JNI
call code commented out.  Any idea why the class can't be found?

 /snip

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN

 

-
This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
 

-

 -
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
 -

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: INFO IBM-MAIN


Spool data set browse (SDSB) question

2011-10-12 Thread Steve Austin
Does anyone know if it is possible to read backwards through the syslog
using this interface? I'm setting the OPTCD=BWD in the RPL, but it is
still reading forwards.

 

Thanks

 

Steve


 -
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
 -
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


SDSF REXX question

2011-08-26 Thread Steve Austin
Hello,

 

I have a REXX exec that issues D M=CPU using ISFEXEC and I expect the
ULOG output to be returned in the isfulog. stem. This works fine under
TSO, but if I run the exec under IRXJCL the command is issued, but no
output returned in the isfulog. stem.

 

Any idea what I'm missing?

 

Thanks

 

Steve 


 -
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
 -
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: SDSF REXX question

2011-08-26 Thread Steve Austin
Here is the REXX exec;

rc=isfcalls(ON)   
isfcons = NODDY  /* EMCS console name */  
isfdelay =10 /* WAIT time */  
ADDRESS SDSF ISFEXEC '/D M=CPU' (WAIT VERBOSE)
if isfmsg then  
  say isfmsg
do i2 = 1 to isfmsg2.0 /* loop though messages */   
  say isfmsg2.i2
end 
if rc = 8 then do  
  say Number of ulog rows returned isfulog.0  
  if isfulog.0  1 then do  
do ix=1 to isfulog.0   /* loop through rows */  
  say isfulog.ix
end 
  end   
end 
RC=ISFCALLS(OFF)  

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
Behalf Of Elardus Engelbrecht
Sent: 26 August 2011 13:25
To: IBM-MAIN@bama.ua.edu
Subject: Re: SDSF REXX question

Steve Austin wrote:

I have a REXX exec that issues D M=CPU using ISFEXEC and I expect the
ULOG output to be returned in the isfulog. stem. This works fine under
TSO, but if I run the exec under IRXJCL the command is issued, but no
output returned in the isfulog. stem.

How are you capturing the output into that stem variable?

Please show us the statements used, if possible...

Groete / Greetings
Elardus Engelbrecht

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

 

-
This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
 

-

 -
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
 -

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


Re: SDSF REXX question

2011-08-26 Thread Steve Austin
I too have the REXX exec working under TSO, but I'm trying to get it to
work in batch under IRXJCL.

Thanks

Steve 

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
Behalf Of Elardus Engelbrecht
Sent: 26 August 2011 13:56
To: IBM-MAIN@bama.ua.edu
Subject: Re: SDSF REXX question

Steve Austin wrote:

Here is the REXX exec;

isfcons = NODDY  

:-D I asked BIGEARS with help and ... :-D

Thanks. I tried it out in TSO / ISPF and also with this JCL:

//ZYX  EXEC PGM=IKJEFT01
//SYSPROC  DD  DISP=SHR,DSN=REXX  
//SYSTSPRT DD SYSOUT=*
//SYSTSIN  DD *   
  PROF NOPREF 
  %SDSF2  

READY

  %SDSF2

COMMAND ISSUED

ISF754I Command 'SET CONSOLE NODDY' generated from associated variable
ISFCONS. 
ISF754I Command 'SET DELAY 10' generated from associated variable
ISFDELAY. 
ISF766I Request completed, status: COMMAND ISSUED.

NUMBER OF ULOG ROWS RETURNED 34

  2011238  14:49:24.56 ISF031I CONSOLE NODDY
ACTIVATED  
  2011238  14:49:24.56-D M=CPU

  2011238  14:49:24.57 IEE174I 14.49.24 DISPLAY M

   PROCESSOR STATUS

   ID  CPU
SERIAL  

Output is shown in SYSTSPRT...

Is this what you wanted? Perhaps I missed something from your original
post?

Groete / Greetings
Elardus Engelbrecht

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

 

-
This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
 

-

 -
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
 -

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


Re: SDSF REXX question

2011-08-26 Thread Steve Austin
Thanks,

Yes that is exactly what I want, but it is not working for me here. I
suspect an environmental problem of some sort; possibly something in
ISFPRMxx. 

Here is the REXX group in my ISPPRMxx. Can you see anything different to
yours?

/*/   
/* GROUP ISFREXX - Rexx Users*/   
/*/   
 GROUP NAME(ISFREXX),/* Group name  */
 IUID(ISFREXX),  /* Iuid*/
 ACTION(ALL),/* All route codes displayed   */
 ACTIONBAR(YES), /* Display action bar on panels*/
 APPC(ON),   /* Include APPC sysout */
 AUPDT(2),   /* Minimum auto update interval*/
 AUTH(I,O,H,DA,PREF,SE,SR,ST),   /* Authorized functions*/
 CMDAUTH(ALL),   /* Commands allowed for all jobs   */
 CMDLEV(7),  /* Authorized command level*/
 CONFIRM(ON),/* Enable cancel confirmation  */
 CURSOR(ON), /* Leave cursor on last row processed  */
 DADFLT(IN,OUT,TRANS,STC,TSU,JOB),  /* Default rows shown on DA */
 DATE(MMDD), /* Default date format */
 DATESEP('/'),   /* Default datesep format  */
 DISPLAY(OFF),   /* Do not display current values   */
 DSPAUTH(USERID,NOTIFY,AMSG),  /* Browse authority  */
 GPLEN(2),   /* Group prefix length */
 ILOGCOL(1), /* Initial display column in log   */
 ISYS(NONE), /* Initial system default for DA   */
 LANG(ENGLISH),  /* Default language*/
 LOGOPT(OPERACT),/* Default log option  */
 OWNER(NONE),/* Default owner   */
 UPCTAB(TRTAB2), /* Upper case translate table name */
 VALTAB(TRTAB),  /* Valid character translate table */
 VIO(SYSALLDA)   /* Unit name for page mode output  */
  
  NTBL NAME(ISFREXX)  
NTBLENT STRING(SA2)   

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
Behalf Of Elardus Engelbrecht
Sent: 26 August 2011 14:12
To: IBM-MAIN@bama.ua.edu
Subject: Re: SDSF REXX question

Steve Austin wrote:

I too have the REXX exec working under TSO, but I'm trying to get it to
work in batch under IRXJCL.

Will this (tested before posting) one be suitable for you?

//STEP1EXEC PGM=IRXJCL,PARM='SDSF2'   
//SYSTSPRT DD   SYSOUT=*  
//SYSEXEC  DD   DSN=REXX,DISP=SHR 

I have used your posted example successfully for this JCL.

If not desired solution, could you be kind to tell us how you want to
use IRXJCL?

Groete / Greetings
Elardus Engelbrecht


Q: What's black and brown and looks good on an attorney?
 
A: A Doberman pinscher.

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

 

-
This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
 

-

 -
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
 -

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


Re: SDSF REXX question

2011-08-26 Thread Steve Austin
Yes that helped identify the problem. I changed group AUTH parameter
from AUTH(I,O,H,DA,PREF,SE,SR,ST) to AUTH(ALL) and now all works as I
hoped.

Thanks

Steve 

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
Behalf Of Elardus Engelbrecht
Sent: 26 August 2011 14:40
To: IBM-MAIN@bama.ua.edu
Subject: Re: SDSF REXX question

Steve Austin wrote:

Yes that is exactly what I want, but it is not working for me here.

Ouch. More painful than a bored attorney's fee... :-D

 I suspect an environmental problem of some sort; possibly something in
ISFPRMxx.

Perhaps. Try these lines just before your own ADDRESS SDSF ISFEXEC for
some diagnostics.

ADDRESS SDSF ISFEXEC  WHO   
DO IX=1 TO ISFRESP.0 
  SAY ISFRESP.IX IS: ISFRESP.IX  
END  

Then compare the results to see what is the difference for your TSO and
Batch execution.

You may need extra access permission in ISFPRMxx or in RACF.

Groete / Greetings
Elardus Engelbrecht

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

 

-
This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
 

-

 -
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
 -

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


JRIO/JZOS zAAP eligability questions

2011-08-22 Thread Steve Austin
Hello,

 

I've read that JRIO has been deprecated and the JZOS component should be
used to access native files. I assume that both must be calling the JNI.
Do both, or either, maintain zAAP eligability across the JNI call? If so
is this documented anywhere?

 

Thanks

 

Steve 


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: JRIO/JZOS zAAP eligability questions

2011-08-22 Thread Steve Austin
Thanks for the prompt response Kirk.

I had hoped that would be the case. It is also interesting as it
suggests there is a way, albeit undocumented and no doubt not legal, to
call the JNI without losing zAAP eligability.

Steve 

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
Behalf Of Kirk Wolf
Sent: 22 August 2011 15:50
To: IBM-MAIN@bama.ua.edu
Subject: Re: JRIO/JZOS zAAP eligability questions

The JZOS JNI libraries included with the z/OS Java SDK are zAAP
eligible.

Kirk Wolf
Dovetailed Technologies
http://dovetail.com

On Mon, Aug 22, 2011 at 9:38 AM, Steve Austin
steve.aus...@macro4.comwrote:

 Hello,



 I've read that JRIO has been deprecated and the JZOS component should
be
 used to access native files. I assume that both must be calling the
JNI.
 Do both, or either, maintain zAAP eligability across the JNI call? If
so
 is this documented anywhere?



 Thanks



 Steve


 -

 This email has been scanned for all known viruses by the MessageLabs
Email
 Security Service and the Macro 4 internal virus protection system.
 .

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


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

 

-
This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
 

-

 -
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
 -

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


BPXWRBLD question?

2011-08-01 Thread Steve Austin
Hello,

 

I've taken a copy of the example C code in chapter 2 of Using REXX and
z/OS UNIX System Services, but have been unable to persuade it to run my
REXX exec. I get RC=20 and the following message in the envionment
block; IRX0112I The REXX exec cannot be loaded. 

 

The REXX exec is in the curent working directory. 

 

Any idea what I've missed?

 

Thanks

 

Steve  


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


SYSEVENT QVS question

2011-05-04 Thread Steve Austin
Hello,

Does anyone have an explanation of why this service returns different
capacity figures for the partition if z/OS is running under VM from when
running natively.

Thanks

Steve

The following is taken from the z/OS V1R9.0 MVS Authorized Assembler
Services Reference 

QvsCecCapacity, QvsImgCapacity, and QvsVmCapacity contain the maximum
service rate that theoretically could be achieved at each level. The
value is in millions of service units per hour (MSU).

QvsCecCapacity is equal to the individual CPU speed multiplied by the
number of online and offline physical CPUs.

If QvsImgValid is on, the image is in ESAME mode, and QvsVmValid is off,
then QvsImgCapacity is equal to one of the following:

*   The partition's defined capacity set via the Hardware Management
Console, if any
*   The individual CPU speed multiplied by the number of online and
offline logical CPUs, if the partition is uncapped and has no defined
capacity
*   The capacity at the partition's weight, if the partition is
capped via the Hardware Management Console.

If QvsImgValid is on, and either the image is in ESA/390 mode or
QvsVmValid is on, then QvsImgCapacity is equal to the individual CPU
speed multiplied by the number of online and offline logical CPUs.

QvsVmCapacity is the individual CPU speed multiplied by the number of
online and offline virtual CPUs.

In all cases, the individual CPU speed in based on the MP factor for the
number of online and offline physical CPUs.


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: CPU Serialnumber

2011-03-28 Thread Steve Austin
Have a look at at SYSEVENT QVS and CSRSI? 

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On
Behalf Of Fred van der Windt
Sent: 28 March 2011 11:55
To: IBM-MAIN@bama.ua.edu
Subject: CPU Serialnumber

Is it possible to retrieve the serialnumber of the cpu the program is
currently running on without the use of any privileged instructions?

Background: we want to generate UUIDs and need the clocktime (that's
easy) and a unique identifier of the machine/CPU we're running on. The
UUID algorithm normally uses the machine's MAC address but I have no
idea how to retrieve that information either..


thanks,

Fred!
-
ATTENTION:
The information in this electronic mail message is private and
confidential, and only intended for the addressee. Should you
receive this message by mistake, you are hereby notified that
any disclosure, reproduction, distribution or use of this
message is strictly prohibited. Please inform the sender by
reply transmission and delete the message without copying or
opening it.

Messages and attachments are scanned for all viruses known.
If this message contains password-protected attachments, the
files have NOT been scanned for viruses by the ING mail domain.
Always scan attachments before opening them.
-


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

-

This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
.


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 

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


Which level of z/OS is required to support an RSA keys size of 2048 and SHA-2?

2010-12-02 Thread Steve Austin
Hello,

 

In what manual and on what planet will I find this documented?

 

Thanks

 

Steve   


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


SYSPLEX names in a CPC

2010-11-02 Thread Steve Austin
Hello,

 

Does anyone have any idea where I might find documentation that will
tell me whether it is possible to have multiple sysplexes in a CPC share
the same sysplex name?

 

Thanks

 

Steve


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Identify all MVS images in a CEC

2010-09-23 Thread Steve Austin
Where is this documented?

Thanks

Steve

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf Of Norman Hollander on DesertWiz
Sent: 22 September 2010 19:10
To: IBM-MAIN@bama.ua.edu
Subject: Re: Identify all MVS images in a CEC

There is a hardware DIAG that gives all of the topography of the CEC you
are
on.

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf
Of Tony Harminc
Sent: Wednesday, September 22, 2010 Wednesday 10:46 AM
To: IBM-MAIN@bama.ua.edu
Subject: Re: Identify all MVS images in a CEC

On 22 September 2010 04:54, Mike Schwab mike.a.sch...@gmail.com wrote:

 If you are running multiple mainframes, communicating through the 
 mainframe partitioning manager would not detect the other mainframes.
 Does IBM register mainframe TCP/IP port numbers, like it does for 3 
 digit message prefixes?

No - IANA registers port numbers.
http://www.iana.org/assignments/port-numbers But since anyone can use
any
port number they like for anything, and we live in a NAT world, there's
decreasing interest in such a registry.

Tony H.

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

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

-

This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
.


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 

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


Re: Identify all MVS images in a CEC

2010-09-22 Thread Steve Austin
Thanks for all your responses.

Essentially I'm looking for a method of identifying MVS images so that I
can talk to my agent running in each of those images. If my agent is not
running on an image then neither is any other of my software.

BCPii looks interesting, but obviously has security issues and won't run
on an MVS image running under VM.

This is very very early days in my research. My initial thought was that
I might be able to extract the 'hypersocket' data in some way. 

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf Of Don Williams
Sent: 21 September 2010 22:47
To: IBM-MAIN@bama.ua.edu
Subject: Re: Identify all MVS images in a CEC

Why would a dishonest customer be willing to grant your product the
security
it needs to validate the seating arrangements (assuming that is your
intent)? [Think security exit, etc. that tells your product it is
authorized, but suppresses actual access.]
If the customer is honest, then he would just abide by the contract as
agreed.

 -Original Message-
 From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
 Behalf Of Steve Austin
 Sent: Monday, September 20, 2010 3:41 AM
 To: IBM-MAIN@bama.ua.edu
 Subject: Identify all MVS images in a CEC
 
 I am researching seat based licensing for Cloud computing on z/OS and
 have the following question.
 
 From an MVS image is it possible to identify all other active MVS
 images
 in the CEC even if some of those images are not in a sysplex?
 
 Thanks
 
 Steve
 
 -
-
 ---
 This email has been scanned for all known viruses by the MessageLabs
 Email
 Security Service and the Macro 4 internal virus protection system.
 .
-
 ---
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html

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

-

This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
.


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 

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


Re: Identify all MVS images in a CEC

2010-09-22 Thread Steve Austin
As yet I don't know. It's a case of I'll cross that bridge when (or if)
I come to it at present.

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf Of Vernooij, CP - SPLXM
Sent: 22 September 2010 09:16
To: IBM-MAIN@bama.ua.edu
Subject: Re: Identify all MVS images in a CEC

Just curious: if you can identify an MVS image, how do you know your
agent is running on that system and how do you know how to contact it?
They might well be running in totally separated sysplexes and
dasd/vtam/ip configurations.

Kees.


Steve Austin steve.aus...@macro4.com wrote in message
news:d3571c7d425590479eb3adb197bfc47b01133...@m4ukex02.intranet.macro4.
com...
 Thanks for all your responses.
 
 Essentially I'm looking for a method of identifying MVS images so that
I
 can talk to my agent running in each of those images. If my agent is
not
 running on an image then neither is any other of my software.
 
 BCPii looks interesting, but obviously has security issues and won't
run
 on an MVS image running under VM.
 
 This is very very early days in my research. My initial thought was
that
 I might be able to extract the 'hypersocket' data in some way. 
 
 -Original Message-
 From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
 Behalf Of Don Williams
 Sent: 21 September 2010 22:47
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: Identify all MVS images in a CEC
 
 Why would a dishonest customer be willing to grant your product the
 security
 it needs to validate the seating arrangements (assuming that is your
 intent)? [Think security exit, etc. that tells your product it is
 authorized, but suppresses actual access.]
 If the customer is honest, then he would just abide by the contract as
 agreed.
 
  -Original Message-
  From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
  Behalf Of Steve Austin
  Sent: Monday, September 20, 2010 3:41 AM
  To: IBM-MAIN@bama.ua.edu
  Subject: Identify all MVS images in a CEC
  
  I am researching seat based licensing for Cloud computing on z/OS
and
  have the following question.
  
  From an MVS image is it possible to identify all other active MVS
  images
  in the CEC even if some of those images are not in a sysplex?
  
  Thanks
  
  Steve
  
  -
 -
  ---
  This email has been scanned for all known viruses by the MessageLabs
  Email
  Security Service and the Macro 4 internal virus protection system.
  .
 -
  ---
 
--
  For IBM-MAIN subscribe / signoff / archive access instructions,
  send email to lists...@bama.ua.edu with the message: GET IBM-MAIN
INFO
  Search the archives at http://bama.ua.edu/archives/ibm-main.html
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html
 
 -


 This email has been scanned for all known viruses by the MessageLabs
 Email
 Security Service and the Macro 4 internal virus protection system.
 .


 
 -

 This email has been scanned for all known viruses by the MessageLabs
Email
 Security Service and the Macro 4 internal virus protection system.
 .

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

For information, services and offers, please visit our web site:
http://www.klm.com. This e-mail and any attachment may contain
confidential and privileged material intended for the addressee only. If
you are not the addressee, you are notified that no part of the e-mail
or any attachment may be disclosed, copied or distributed, and that any
other action related to this e-mail or attachment is strictly
prohibited, and may be unlawful. If you have received this e-mail by
error, please notify the sender immediately by return e-mail, and delete
this message. 

Koninklijke Luchtvaart Maatschappij NV (KLM), its subsidiaries and/or
its employees shall not be liable for the incorrect or incomplete
transmission of this e-mail or any attachments, nor responsible for any
delay in receipt. 
Koninklijke Luchtvaart Maatschappij N.V. (also known as KLM Royal Dutch
Airlines) is registered in Amstelveen

Identify all MVS images in a CEC

2010-09-20 Thread Steve Austin
I am researching seat based licensing for Cloud computing on z/OS and
have the following question.
 
From an MVS image is it possible to identify all other active MVS images
in the CEC even if some of those images are not in a sysplex?
 
Thanks
 
Steve  

- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


z/VSE name/token services

2010-09-07 Thread Steve Austin
I have created a persistent name/token pair on z/VSE using IEANTCR. A
subsequent delete using IEANTDL gives a retun code of zero, but if I
then retrieve the name/token using IEANTRT the 'deleted' token is
returned.

 

Is this a feature of the VSE implementation?

 

Can one delete a persisent name/token pair on VSE?

 

Thanks

 

Steve 


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Latch services question

2010-08-26 Thread Steve Austin
If multiple TCB and SRB callers all specify the same 'requestorid' on
the ISGLOBT call will this confuse ISGLOBT, or is the requestorid only
for use by ISGLPRG?
 
Thanks
 
Steve

- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Which TCB data element point to VSM

2010-08-25 Thread Steve Austin
TCBMSS, TCBUKYSP, TCBAE and TCBEAE 

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf Of Micheal Butz
Sent: 25 August 2010 13:56
To: IBM-MAIN@bama.ua.edu
Subject: Re: Which TCB data element point to VSM

That's for the whole Address space I am looking for the Virtual  
Storage Associated with a TCB

Sent from my iPhone

On Aug 25, 2010, at 8:27 AM, Bertus Bekker - Business Connexion
bertus.bek...@bcx.co.za 
  wrote:

 You might want to look at the LDA which as far as I can remember  
 hangs off the ASCB or ASXB, Michael


 From: IBM Mainframe Discussion List on behalf of Micheal Butz
 Sent: Wed 2010-08-25 14:21
 To: IBM-MAIN@bama.ua.edu
 Subject: Which TCB data element point to VSM

 Hi

 I am looking at a Dump. I know Virtual Storage is associated with a  
 TCB

 would anyone know what TCB/STCB. data element Points to the VSM

 Sent from my iPhone

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

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

-

This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
.


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 

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


Is there z/VSE APF authorzsation equivalent?

2010-05-21 Thread Steve Austin
Is there a z/VSE APF authorization equivalent?
The VSE MODESET macro description says the program must be identified as
'job control', which is not a great string to search for.
 
Thanks
 
Steve

- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


port from z/OS to z/VSE

2010-05-18 Thread Steve Austin
As VSE has been dying since I was an operator 30 years ago I have not
much bothered with it, but now I've been asked to 'port' some MVS
routines to VSE. 

 

I'm investigating porting a z/OS server address space to z/VSE. The
server address space creates PC-ss routines that client address spaces
call. The client call causes the server to schedule an SRB in the client
address space which in turn calls the server via a PC-ss to copy data
from the server to the client. I know that a number of z/OS services and
control blocks can be emulated, ETCON, TCB, etc, but what I'm missing is
the VSE equivalent of an SRB. 

 

Under VSE is it possible to create a new workunit in another address
space?

Is there a VSE equivalent of an SRB?

 

 

Thanks

 

Steve 


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


IEAVPSE and IEAMSCHD questions

2010-04-14 Thread Steve Austin
Hello,

 

If I use IEAVPSE to pause a TCB and a time interval set using STIMERM
expires, will the exit specified to be driven under another RB as it
does with wait?

If I schedule a synchronous SRB from a TCB and a time interval set using
STIMERM expires, will the specified exit be driven prior to the return
from the SRB? If so is the SRB suspended while the exit runs?

 

Thanks

 

Steve 


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


z/VSE manual

2010-04-12 Thread Steve Austin
Hello,
 
Is there a z/VSE equivalent of the z/OS Extended Addressability Guide?
Where are the VSE manuals? I'm looking to 'port' some z/OS PC-ss
routines to z/VSE if possible and would like to find out if ETDEF,
ETCON, etc exist on VSE. As you have probably guessed I am not familiar
with VSE.
 
Thanks
 
Steve

- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: z/VSE manual

2010-04-12 Thread Steve Austin
Thanks everyone I've now the manual.

Steve
-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf Of Chris Mason
Sent: 12 April 2010 16:52
To: IBM-MAIN@bama.ua.edu
Subject: Re: z/VSE manual

Steve

I recently had occasion to locate the z/VSE IP-based software and the
page 
with the following URL is still on my desktop:

http://www-03.ibm.com/systems/z/os/zos/bkserv/zvsepdf/#tcpip_vse15

Chris Mason

On Mon, 12 Apr 2010 16:25:59 +0100, Steve Austin 
steve.aus...@macro4.com wrote:

Hello,
 
Is there a z/VSE equivalent of the z/OS Extended Addressability Guide?
Where are the VSE manuals? I'm looking to 'port' some z/OS PC-ss
routines to z/VSE if possible and would like to find out if ETDEF,
ETCON, etc exist on VSE. As you have probably guessed I am not familiar
with VSE.
 
Thanks
 
Steve

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

-

This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
.


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 

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


Re: Assembler program calling a 'C' program with mixed case long names

2010-01-04 Thread Steve Austin
Hello Dave,

I was hoping the pre-linker would resolve the long names I specified on
the call to the 8 byte upper case names to which it renames the target
routines, but it does not. To get around this I am using CHANGE
statements in the linkedit step.

I'm doing this in order to link the program into a PDS rather than a
PDSE.

Is there something I'm missing?


The pre-linker I'm using is EDCPRLNK.

Thanks

Steve 

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf Of Thomas David Rivers
Sent: 24 December 2009 15:37
To: IBM-MAIN@bama.ua.edu
Subject: Re: Assembler program calling a 'C' program with mixed case
long names

Steve Austin wrote:
 Thanks for all your responses. I am now fighting with the pre-linker;
it
 does not pick up the long mixed case names I specified using alias
 statements.
 
 Steve
 


Steve,

   When you say pick up - what do you mean?

   And, which pre-linker is this?

- Dave Rivers -


-- 
riv...@dignus.comWork: (919) 676-0847
Get your mainframe programming tools at http://www.dignus.com

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

-

This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
.


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 

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


Re: Assembler program calling a 'C' program with mixed case long names

2010-01-04 Thread Steve Austin
Thanks

I should have explained that I'm using the pre-linker so that I can link
to a PDS.

Steve  

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf Of David Crayford
Sent: 25 December 2009 00:48
To: IBM-MAIN@bama.ua.edu
Subject: Re: Assembler program calling a 'C' program with mixed case
long names

You can't use the pre-linker with GOFF.

If I were you I would ditch the pre-linker. It's functionally stabalized

  and the binder does everything you need and more. Only use the 
pre-linker if you want to use load modules in a PDS.

Steve Austin wrote:
 Thanks for all your responses. I am now fighting with the pre-linker;
it
 does not pick up the long mixed case names I specified using alias
 statements.
 
 Steve
 
 -Original Message-
 From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
 Behalf Of Binyamin Dissen
 Sent: 23 December 2009 18:45
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: Assembler program calling a 'C' program with mixed case
 long names
 
 On Wed, 23 Dec 2009 15:55:12 - Steve Austin
 steve.aus...@macro4.com
 wrote:
 
 :Is it possible to persuade the assembler to create mixed case ESD
 names?
 :The GOFF option allows long names, but the ESD entries are upper
case.
 
 
 Look at the assembler ALIAS statement.
 
 --
 Binyamin Dissen bdis...@dissensoftware.com
 http://www.dissensoftware.com
 
 Director, Dissen Software, Bar  Grill - Israel
 
 
 Should you use the mailblocks package and expect a response from me,
 you should preauthorize the dissensoftware.com domain.
 
 I very rarely bother responding to challenge/response systems,
 especially those from irresponsible companies.
 
 --
 For IBM-MAIN subscribe / signoff / archive access instructions,
 send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
 Search the archives at http://bama.ua.edu/archives/ibm-main.html
 
 -


 This email has been scanned for all known viruses by the MessageLabs
 Email
 Security Service and the Macro 4 internal virus protection system.
 .


 
 -

 This email has been scanned for all known viruses by the MessageLabs
Email
 Security Service and the Macro 4 internal virus protection system.
 .

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

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

-

This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
.


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 

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


Re: Assembler program calling a 'C' program with mixed case long names

2010-01-04 Thread Steve Austin
The code I am writing is a prototype, but it is intended that something
like it will be shipped to customers in time. 
I don't know that PDSE usage will be an issue to anyone, but experiece
suggests that someone will at least question the requirement, so for the
time being I'm avoiding using a PDSE.

Steve  

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf Of David Crayford
Sent: 04 January 2010 11:52
To: IBM-MAIN@bama.ua.edu
Subject: Re: Assembler program calling a 'C' program with mixed case
long names

Steve Austin wrote:
 Thanks
 
 I should have explained that I'm using the pre-linker so that I can
link
 to a PDS.
 

Out of curiosity why are you tied to a PDS? You will get much better 
mileage from a PDSE. GOFF, XPLINK, programs  16MB and future features 
that will only be supported by PDSE program objects.

 Steve  
 
 -Original Message-
 From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
 Behalf Of David Crayford
 Sent: 25 December 2009 00:48
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: Assembler program calling a 'C' program with mixed case
 long names
 
 You can't use the pre-linker with GOFF.
 
 If I were you I would ditch the pre-linker. It's functionally
stabalized
 
   and the binder does everything you need and more. Only use the 
 pre-linker if you want to use load modules in a PDS.
 
 Steve Austin wrote:
 Thanks for all your responses. I am now fighting with the pre-linker;
 it
 does not pick up the long mixed case names I specified using alias
 statements.

 Steve

 -Original Message-
 From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
 Behalf Of Binyamin Dissen
 Sent: 23 December 2009 18:45
 To: IBM-MAIN@bama.ua.edu
 Subject: Re: Assembler program calling a 'C' program with mixed case
 long names

 On Wed, 23 Dec 2009 15:55:12 - Steve Austin
 steve.aus...@macro4.com
 wrote:

 :Is it possible to persuade the assembler to create mixed case ESD
 names?
 :The GOFF option allows long names, but the ESD entries are upper
 case.

 Look at the assembler ALIAS statement.

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

 Director, Dissen Software, Bar  Grill - Israel


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

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


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

 -



 This email has been scanned for all known viruses by the MessageLabs
 Email
 Security Service and the Macro 4 internal virus protection system.
 .



 -


 This email has been scanned for all known viruses by the MessageLabs
 Email
 Security Service and the Macro 4 internal virus protection system.
 .



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


 This email has been scanned for all known viruses by the MessageLabs
 Email
 Security Service and the Macro 4 internal virus protection system.
 .


 
 -

 This email has been scanned for all known viruses by the MessageLabs
Email
 Security Service and the Macro 4 internal virus protection system.
 .

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

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN

Re: Assembler program calling a 'C' program with mixed case long names

2009-12-24 Thread Steve Austin
Thanks for all your responses. I am now fighting with the pre-linker; it
does not pick up the long mixed case names I specified using alias
statements.

Steve

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf Of Binyamin Dissen
Sent: 23 December 2009 18:45
To: IBM-MAIN@bama.ua.edu
Subject: Re: Assembler program calling a 'C' program with mixed case
long names

On Wed, 23 Dec 2009 15:55:12 - Steve Austin
steve.aus...@macro4.com
wrote:

:Is it possible to persuade the assembler to create mixed case ESD
names?
:The GOFF option allows long names, but the ESD entries are upper case.


Look at the assembler ALIAS statement.

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

Director, Dissen Software, Bar  Grill - Israel


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

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

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

-

This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
.


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 

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


Assembler program calling a 'C' program with mixed case long names

2009-12-23 Thread Steve Austin
Hello,

 

Is it possible to persuade the assembler to create mixed case ESD names?
The GOFF option allows long names, but the ESD entries are upper case.  

 

Thanks

 

Steve  


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
. 
--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Curious about ATTACH and 'SVCR 0'

2009-09-18 Thread Steve Austin
This is occuring on z/OS 1.10. Is there specific maintenance required?
What type of entry will I see when the anomaly is addressed?

Thanks

Steve

-Original Message-
From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On
Behalf Of Peter Relson
Sent: 17 September 2009 19:38
To: IBM-MAIN@bama.ua.edu
Subject: Re: Curious about ATTACH and 'SVCR 0'

I believe that this anomaly has been addressed in z/OS 1.10.

Peter Relson
z/OS Core Technology Design

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

-

This email has been scanned for all known viruses by the MessageLabs
Email
Security Service and the Macro 4 internal virus protection system.
-


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
- 

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


Curious about ATTACH and 'SVCR 0'

2009-09-15 Thread Steve Austin
Hello,

 

I have noticed in a number of traces, that for a newly attached TCB
there is a 'SVCR0' without a previous 'SVC   0'.

Is this really a return from an EXCP SVC or something else masquerading
as such?

 

Thanks

 

Steve  


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
- 

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


Authenticate XML digital signature without using Java

2009-06-10 Thread Steve Austin
Hello,

Is there a way to authenticate an XML digital signature on MVS without
using Java? 

I had thought I could use C++, but the only example I can find uses the
Apache xsec c library and I don't think there is an MVS version.

Thanks

Steve


- 
This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 internal virus protection system.
- 

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


IEFU84

2008-09-22 Thread Steve Austin
Hello,

I have an IEFU84 exit that, when entered holding the local lock, schedules
an SRB; typically for record type 30, subtypes 2 and 3. All works as
expected, except that the JWT value in the SMFPRMxx member ceases to be
honoured.


Is this expected behaviour and if so why?

Thanks

Steve




This email has been scanned for all known viruses by the MessageLabs Email 
Security Service and the Macro 4 plc internal virus protection system.


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



Re: IEFU84

2008-09-22 Thread Steve Austin
Yes I'm scheduling the SRB in the primary address space; the address space
in which my IEFU84 routine is being driven. 

It looks like I'll have to schedule the SRB in my server address space
instead. 

Thanks

Steve

-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of John McKown
Sent: 22 September 2008 14:34
To: IBM-MAIN@BAMA.UA.EDU
Subject: Re: IEFU84

On Mon, 22 Sep 2008 10:18:25 +0100, Steve Austin [EMAIL PROTECTED]
wrote:

Hello,

I have an IEFU84 exit that, when entered holding the local lock, schedules
an SRB; typically for record type 30, subtypes 2 and 3. All works as
expected, except that the JWT value in the SMFPRMxx member ceases to be
honoured.

Is this expected behaviour and if so why?

Thanks

Steve

In which address space is the JWT not being honored? If it is the target
address space into which you scheduled the SRB, then I think this is normal.
The reason would be that the SRB is a dispatchable unit of work in the
address space. I'm fairly sure that resets the JWT. I.e. the JWT is not
reset just by TCB work, but by SRB work as well.

--
John McKown

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



This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 plc internal virus protection system.




This email has been scanned for all known viruses by the MessageLabs Email 
Security Service and the Macro 4 plc internal virus protection system.


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



Re: TEST

2008-09-22 Thread Steve Austin
-Original Message-
From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf
Of Howard Rifkind
Sent: 22 September 2008 16:41
To: IBM-MAIN@BAMA.UA.EDU
Subject: TEST

TEST to the List...Please be kind enough to reply.
 
Thanks.

_
LEGAL NOTICE
Unless expressly stated otherwise, this message is confidential
and may be privileged. It is intended for the addressee(s) only.
Access to this E-mail by anyone else is unauthorized.
If you are not an addressee, any disclosure or copying of the
contents of this E-mail or any action taken (or not taken) in
reliance on it is unauthorized and may be unlawful. If you are not an
addressee, please inform the sender immediately, then delete this
message and empty from your trash.


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



This email has been scanned for all known viruses by the MessageLabs Email
Security Service and the Macro 4 plc internal virus protection system.




This email has been scanned for all known viruses by the MessageLabs Email 
Security Service and the Macro 4 plc internal virus protection system.


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