JCL error - “$HASP165 IBMUSERW ENDED AT SVSCJES2 - JCL ERROR CN(INTERNAL)”

ぃ、小莉子 提交于 2019-12-13 06:47:10

问题


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



来源:https://stackoverflow.com/questions/39681692/jcl-error-hasp165-ibmuserw-ended-at-svscjes2-jcl-error-cninternal

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!