JCL error - “$HASP165 IBMUSERW ENDED AT SVSCJES2 -

2019-09-10 16:56发布

问题:

I am trying to the utility DFHWS2LS to create a CICS Web service requester.

The first step mentioned in the IBM redbooks or the guides is running this in a JCL.

I face this issue on submitting the JCL.

I am doing something wrong. Can't figure out what.

Any help regarding this would be appreciated.

//IBMUSERW JOB (),'WS2LS',MSGCLASS=A,NOTIFY=&SYSUID,                
// REGION=0M                                                        
//  SET QT=''''                                                     
//         JCLLIB ORDER=(IBMUSER.SAMPLE.JCLS)                       
//JAVAPROC EXEC DFHWS2LS,REGION=0M,                                 
// PATHREF='/u',                                                    
// TMPFILE=&QT.&SYSUID.&QT                                          
//INPUT.SYSUT1 DD *                                                 
PDSLIB=//IBMUSER.SAMPLE.CPYBK                                       
REQMEM=REQCOP                                                       
RESPMEM=RESCOP                                                      
LANG=COBOL                                                          
LOGFILE=                                                            
/u/SharedProjectDirectory/MyFirstWebServiceRequester/wsbind/example.log       
MAPPING-LEVEL=3.0                                                   
CHAR-VARYING=NULL                                                   
INLINE-MAXOCCURS-LIMIT=2                                            
URI=exampleApp/example                                              
PGMINT=COMMAREA                                                     
SYNCONRETURN=YES                                                     
WSBIND=                                                             
/u/SharedProjectDirectory/MyFirstWebServiceRequester/wsbind/ES.wsbind         
WSDL=                                                               
/u/SharedProjectDirectory/MyFirstWebServiceRequester/wsdl/ES.wsdl   
/*                                                                  

回答1:

This is intended as an expanded comment

JCLLIB ORDER=(IBMUSER.SAMPLE.JCLS) 

is saying look for JCL procedures in IBMUSER.SAMPLE.JCLS. The message

IEFC001I PROCEDURE DFHWS2LS WAS EXPANDED USING PRIVATE LIBRARY IBMUSER...

says the JCL procedure DFHWS2LS was found in IBMUSER...


There is nothing in the question that indicates what the problem actually is.

PDSLIB=//IBMUSER.SAMPLE.CPYBK

is defining the PDSLIB as IBMUSER.SAMPLE.CPYBK I have no idea if this PDS exists.

There may be local site versions of these files but you would need to check with the System-Programmers where they are.


You need to supply more error message, hopefully then some one can help you