View previous topic :: View next topic
|
Author |
Message |
RogerBravo58
New User
Joined: 11 Nov 2021 Posts: 3 Location: Brazil
|
|
|
|
Hi,
I'm trying to connect with CPSM through from a batch JOB, I compiled the REXX EYU#API1 using the REXXCG proc (COMPILE and GO).
But on running the JOB, I get the following messages:
Initialing API...
Establishing connection...
ERROR CONNECTINT TO API...
RESPONSE=1034 REASON=1339 RESULT=0 |
|
Back to top |
|
|
sergeyken
Senior Member
Joined: 29 Apr 2008 Posts: 2133 Location: USA
|
|
|
|
Looks like a diary:
"How I spent my working day"...
RogerBravo58 wrote: |
Hi,
I'm trying to connect with CPSM through from a batch JOB, I compiled the REXX EYU#API1 using the REXXCG proc (COMPILE and GO).
But on running the JOB, I get the following messages:
Code: |
Initialing API...
Establishing connection...
ERROR CONNECTINT TO API...
RESPONSE=1034 REASON=1339 RESULT=0 |
|
0. Learn how to use the Code button when posting your code, or data.
1. Find out what RESPONSE=1034 stands for?
2. Find out what REASON=1339 stands for?
3. Find out is there are any other error or warning messages, in SDSF log, or anywhere else. |
|
Back to top |
|
|
RogerBravo58
New User
Joined: 11 Nov 2021 Posts: 3 Location: Brazil
|
|
|
|
I'm sure I'm using the updated SEYUAUTH, the only message I found with these symptoms is referring to the COBOL program.
Code: |
Problem
Your batch COBOL programs that use the application program interface (API), get a RESPONSE: NOTAVAILABLE (resp1034) REASON: CPSMSERVER (reas1339). This is followed by EYUXE0003I End of Task entered. In one of your MVS images you have upgraded one of your CMASs to a new release of CICS, but you have left your production CMASs running the old release.
Symptom
You have one LPAR in a CICSPlex SM environment that has both a test and a production CMAS. You have upgraded your test CMAS to a newer release of CICS Transaction Server for z/OS (CICS TS), for example V4.2, but your production CMAS is still running an older release of CICS TS, for example V4.1. When you run your program in the test (V4.2) environment, you get:
Resp 1034 ( NOTAVAILABLE)
Reas 1339 (CPSMSERVER)
Cause
The SEYUAUTH library in the MVS linklist is still at the old level (CICS TS V4.1). This causes the application to connect to the V4.1 ESSS. Since the test CMAS is not part of the production CICSPlex the NOT AVAILABLE response is returned.
Resolving The Problem
Define a STEPLIB in the JCL for your COBOL programs that points to the SEYUAUTH library at the higher level (V4.2 level in this case). This STEPLIB can be removed once the linklist is updated with the V4.2 library. |
The result of the JCL with RC=0 not display any error message. |
|
Back to top |
|
|
sergeyken
Senior Member
Joined: 29 Apr 2008 Posts: 2133 Location: USA
|
|
|
|
RogerBravo58 wrote: |
I'm sure I'm using the updated SEYUAUTH, the only message I found with these symptoms is referring to the COBOL program. |
This statement is equivalent to:
Quote: |
I'm sure my program has no bugs, but it is not working! Why? |
Based on the explanation message, this product versions mismatch issue need to be resolved together with your System Support team.
Any minor detail needs to be verified, step by step.
Besides this, please try to not use attachments and screenshots in your messages.
Use the copied text, and Copy button, please. |
|
Back to top |
|
|
|