COBOL Module Using 'EZASOKET' Calls Receiving 0C!

2011-05-20 Thread John Weber
All,

Module HSMSOCKB is a batch COBOL module consisting of only 'EZASOKET' calls.

When is submitted it receives the following error:

'CEE3201S The system detected an operation exception (System Completion 
Code=0C1)
 From compile unit HSMSOCK at entry point HSMSOCK.'

It appears to be having an issue with 'inaccessible storage'.

Does anything need to be included with the compile/link besides SEZATCP with 
the link syslib and
004000 //SYSINDD *
004200  INCLUDE SYSLIB(EZACICAL)
004400  NAME HSMSOCKB(R)
With the link as well?

Thank you...

John Weber
FiTeq Inc.
Financial Technologies Powering Innovation in Payments
  30851 Agoura Road, Suite 103
  Agoura, CA 91301
 O: 818 483 4487  Fax: 818 865 8562
 Cell: 562 221 5702



Re: COBOL Module Using 'EZASOKET' Calls Receiving 0C!

2011-05-20 Thread Frank Swarbrick
EZACICAL contains the CICS version of the EZASOKET interface.  The batch 
version is simple EZASOKET.

Try just omitting the explicit INCLUDE and let it autolink EZASOKET from 
TCPIP.SEZATCP.

Frank
 
>>> On 5/20/2011 at 5:09 PM, in message
<0D00B6C52D003C4983CCA92922F5146B043BB25D@VA3DIAXVS671.RED001.local>, John
Weber  wrote:
> All,
> 
> Module HSMSOCKB is a batch COBOL module consisting of only 'EZASOKET' calls.
> 
> When is submitted it receives the following error:
> 
> 'CEE3201S The system detected an operation exception (System Completion 
> Code=0C1)
>  From compile unit HSMSOCK at entry point HSMSOCK.'
> 
> It appears to be having an issue with 'inaccessible storage'.
> 
> Does anything need to be included with the compile/link besides SEZATCP with 
> the link syslib and
> 004000 //SYSINDD *
> 004200  INCLUDE SYSLIB(EZACICAL)
> 004400  NAME HSMSOCKB(R)
> With the link as well?
> 
> Thank you...
> 
> John Weber
> FiTeq Inc.
> Financial Technologies Powering Innovation in Payments
>   30851 Agoura Road, Suite 103
>   Agoura, CA 91301
>  O: 818 483 4487  Fax: 818 865 8562
>  Cell: 562 221 5702
-- 

Frank Swarbrick
Applications Architect - Mainframe Applications Development
FirstBank Data Corporation - Lakewood, CO  USA
P: 303-235-1403




The information contained in this electronic communication and any document 
attached hereto or transmitted herewith is confidential and intended for the 
exclusive use of the individual or entity named above.  If the reader of this 
message is not the intended recipient or the employee or agent responsible for 
delivering it to the intended recipient, you are hereby notified that any 
examination, use, dissemination, distribution or copying of this communication 
or any part thereof is strictly prohibited.  If you have received this 
communication in error, please immediately notify the sender by reply e-mail 
and destroy this communication.  Thank you.

--
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: COBOL Module Using 'EZASOKET' Calls Receiving 0C!

2011-05-20 Thread Scott Ford
What version of z/OS are you trying to compile this Cobol prog
John:

What version of z/OS are you trying to compile this Cobol program on ?
We use EZASOKET all the time including STC and batch with no problems. We are 
running from z/OS 1.9 up through including z/OS 1.11 

Sounds like your compile/link is wrong..
 
Scott J Ford
www.identityforge.com
 





From: John Weber 
To: IBM-MAIN@bama.ua.edu
Sent: Fri, May 20, 2011 7:09:16 PM
Subject: COBOL Module Using 'EZASOKET' Calls Receiving 0C!

All,

Module HSMSOCKB is a batch COBOL module consisting of only 'EZASOKET' calls.

When is submitted it receives the following error:

'CEE3201S The system detected an operation exception (System Completion 
Code=0C1)
        From compile unit HSMSOCK at entry point HSMSOCK.'

It appears to be having an issue with 'inaccessible storage'.

Does anything need to be included with the compile/link besides SEZATCP with 
the 
link syslib and
004000 //SYSIN    DD *
004200  INCLUDE SYSLIB(EZACICAL)
004400  NAME HSMSOCKB(R)
With the link as well?

Thank you...

John Weber
FiTeq Inc.
Financial Technologies Powering Innovation in Payments
  30851 Agoura Road, Suite 103
  Agoura, CA 91301
O: 818 483 4487  Fax: 818 865 8562
Cell: 562 221 5702

--
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: COBOL Module Using 'EZASOKET' Calls Receiving 0C!

2011-05-20 Thread Scott Ford
Here is my JCL from z/OS 1.10 and .11 is the same except for the
John:

Here is my JCL from z/OS 1.10 and .11 is the same except for the cobol 
libraries:

//ADCDPION JOB SYSTEMS,MSGLEVEL=(1,1),MSGCLASS=X,CLASS=A,PRTY=8,    
// NOTIFY=&SYSUID,REGION=4096K  
//*
 
//COB EXEC PGM=IGYCRCTL,    
// PARM=('NOC(E)','FLAG(W)','DATA(31)',NODYN,RES,RENT,OPT,  
// MAP,NOSSR,NOZWB,NUM,NOTERM,NOVBREF,X,APOST,LIB,LIST),    
// REGION=1024K 
//STEPLIB   DD DISP=SHR,DSN=IGY410.SIGYCOMP 
//SYSLIB    DD DISP=SHR,DSN=CEE.ACEESRC1    
//SYSPRINT  DD SYSOUT=X 
//SYSUT1    DD UNIT=VIO 
//SYSUT2    DD UNIT=VIO 
//SYSUT3    DD UNIT=VIO 
//SYSUT4    DD UNIT=VIO 
//SYSUT5    DD UNIT=VIO 
//SYSUT6    DD UNIT=VIO 
//SYSUT7    DD UNIT=VIO 
//SYSLIN    DD DISP=(,PASS),DSN=&&LOADSET,  
// UNIT=VIO,    
// DCB=BLKSIZE=3200 
//SYSIN DD *  
*  Source code *
  
//* 

//LIBSET  SET  LINKLIB=SFORD.LINKLIB    
//LNK EXEC PGM=IEWL,    
// COND=(4,LT,COB), 
// PARM='LIST,XREF,AC(1)',  
// REGION=4096K 
//SYSLIB    DD 
DISP=SHR,DSN=MYLINK.LINKLIB   

//  DD DISP=SHR,DSN=CEE.SCEELKED    
//  DD DISP=SHR,DSN=SYS1.CSSLIB 
//  DD DISP=SHR,DSN=TCPIP.SEZATCP   
//SYSLMOD   DD DISP=SHR,DSN=&LINKLIB    
//SYSUT1    DD UNIT=SYSDA,  
// DCB=BLKSIZE=1024,    
// SPACE=(1024,(200,20))    
//SYSPRINT  DD SYSOUT=X 
//SYSLOUT   DD SYSOUT=X 
//SYSLIN    DD DISP=(OLD,DELETE),DSN=&&LOADSET  
//  DD DDNAME=SYSIN 
//SYSIN DD *    
  MODE AMODE(31),RMODE(ANY) 
  NAME MODNAME(R)  
/*  
// 
 
 
The modname(r) is your program execution module name

Regards,
Scott J Ford
www.identityforge.com
 





From: Scott Ford 
To: IBM-MAIN@bama.ua.edu
Sent: Fri, May 20, 2011 9:51:56 PM
Subject: Re: COBOL Module Using 'EZASOKET' Calls Receiving 0C!

What version of z/OS are you trying to compile this Cobol prog
John:

What version of z/OS are you trying to compile this Cobol program on ?
We use EZASOKET all the time including STC and batch with no problems. We are 
running from z/OS 1.9 up through including z/OS 1.11 

Sounds like your compile/link is wrong..
 
Scott J Ford
www.identityforge.com
 





From: John Weber 
To: IBM-MAIN@bama.ua.edu
Sent: Fri, May 20, 2011 7:09:16 PM
Subject: COBOL Module Using 'EZASOKET' Calls Receiving 0C!

All,

Module HSMSOCKB is a batch COBOL module consisting of only 'EZASOKET' calls.

When is submitted it receives the following error:

'CEE3201S The system detected an operation exception (System Completion 
Code=0C1)
        From compile unit HSMSOCK at entry point HSMSOCK.'

It appears to 

Re: COBOL Module Using 'EZASOKET' Calls Receiving 0C!

2011-05-21 Thread Binyamin Dissen
On Fri, 20 May 2011 16:09:16 -0700 John Weber  wrote:

:>Module HSMSOCKB is a batch COBOL module consisting of only 'EZASOKET' calls.

:>When is submitted it receives the following error:

:>'CEE3201S The system detected an operation exception (System Completion 
Code=0C1)
:> From compile unit HSMSOCK at entry point HSMSOCK.'

:>It appears to be having an issue with 'inaccessible storage'.

0C1 is an operation exception, which usually means a wild branch.

:>Does anything need to be included with the compile/link besides SEZATCP with 
the link syslib and
:>004000 //SYSINDD *
:>004200  INCLUDE SYSLIB(EZACICAL)
:>004400  NAME HSMSOCKB(R)
:>With the link as well?

What is the PSW? Was the LINK successful?

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

Director, Dissen Software, Bar & Grill - Israel


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

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

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


Re: COBOL Module Using 'EZASOKET' Calls Receiving 0C!

2011-05-23 Thread John Weber
Thanks Frank.  Scott's JCL excludes the explicit INCLUDE also.  Thanks.

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of 
Frank Swarbrick
Sent: Friday, May 20, 2011 4:43 PM
To: IBM-MAIN@bama.ua.edu
Subject: Re: COBOL Module Using 'EZASOKET' Calls Receiving 0C!

EZACICAL contains the CICS version of the EZASOKET interface.  The batch 
version is simple EZASOKET.

Try just omitting the explicit INCLUDE and let it autolink EZASOKET from 
TCPIP.SEZATCP.

Frank
 
>>> On 5/20/2011 at 5:09 PM, in message
<0D00B6C52D003C4983CCA92922F5146B043BB25D@VA3DIAXVS671.RED001.local>, John
Weber  wrote:
> All,
> 
> Module HSMSOCKB is a batch COBOL module consisting of only 'EZASOKET' calls.
> 
> When is submitted it receives the following error:
> 
> 'CEE3201S The system detected an operation exception (System Completion 
> Code=0C1)
>  From compile unit HSMSOCK at entry point HSMSOCK.'
> 
> It appears to be having an issue with 'inaccessible storage'.
> 
> Does anything need to be included with the compile/link besides SEZATCP with 
> the link syslib and
> 004000 //SYSINDD *
> 004200  INCLUDE SYSLIB(EZACICAL)
> 004400  NAME HSMSOCKB(R)
> With the link as well?
> 
> Thank you...
> 
> John Weber
> FiTeq Inc.
> Financial Technologies Powering Innovation in Payments
>   30851 Agoura Road, Suite 103
>   Agoura, CA 91301
>  O: 818 483 4487  Fax: 818 865 8562
>  Cell: 562 221 5702
-- 

Frank Swarbrick
Applications Architect - Mainframe Applications Development
FirstBank Data Corporation - Lakewood, CO  USA
P: 303-235-1403




The information contained in this electronic communication and any document 
attached hereto or transmitted herewith is confidential and intended for the 
exclusive use of the individual or entity named above.  If the reader of this 
message is not the intended recipient or the employee or agent responsible for 
delivering it to the intended recipient, you are hereby notified that any 
examination, use, dissemination, distribution or copying of this communication 
or any part thereof is strictly prohibited.  If you have received this 
communication in error, please immediately notify the sender by reply e-mail 
and destroy this communication.  Thank you.

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

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


Re: COBOL Module Using 'EZASOKET' Calls Receiving 0C!

2011-07-26 Thread Grillo Paul
2011/5/20, John Weber :
> All,
>
> Module HSMSOCKB is a batch COBOL module consisting of only 'EZASOKET'
> calls.
>
> When is submitted it receives the following error:
>
> 'CEE3201S The system detected an operation exception (System Completion
> Code=0C1)
>  From compile unit HSMSOCK at entry point HSMSOCK.'
>
> It appears to be having an issue with 'inaccessible storage'.
>
> Does anything need to be included with the compile/link besides SEZATCP with
> the link syslib and
> 004000 //SYSINDD *
> 004200  INCLUDE SYSLIB(EZACICAL)
> 004400  NAME HSMSOCKB(R)
> With the link as well?
>
> Thank you...
>
> John Weber
> FiTeq Inc.
> Financial Technologies Powering Innovation in Payments
>   30851 Agoura Road, Suite 103
>   Agoura, CA 91301
>  O: 818 483 4487  Fax: 818 865 8562
>  Cell: 562 221 5702
>
>

--
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: COBOL Module Using 'EZASOKET' Calls Receiving 0C!

2011-07-27 Thread Jan MOEYERSONS
On Tue, 26 Jul 2011 22:09:20 -0300, Grillo Paul  wrote:

>2011/5/20, John Weber :

>> Module HSMSOCKB is a batch COBOL module consisting of only 'EZASOKET'
>> calls.


>> 004000 //SYSINDD *
>> 004200  INCLUDE SYSLIB(EZACICAL)

EZACICAL is the CICS version of the stub program. Not very likely it will work 
OK in batch...

Off the top of my head, I would say you need EZASOKET, but do check the FM on 
that.

Cheers,

Jantje.

--
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: COBOL Module Using 'EZASOKET' Calls Receiving 0C!

2011-07-27 Thread David Lesser
EZACICAL is the CICS interface. For batch you should include EZASOKET.

David

--
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