cics

Migration from JBoss to JBoss EAP 7.2.0.GA Gives Error with CICS JCA Connectivity

谁说我不能喝 提交于 2021-02-11 13:02:04
问题 My system is connecting CICS Mainframe system on JBoss 5 (Java 6) using ibmjsse jar. As part of the migration to JBOSS 7.2.0 (Java7 or Java8 both) I am getting below error. Can anyone advice what could be the root cause" Operation ("deploy") failed - address: ([("deployment" => "j2cf.ear")]) - failure description: { "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.ConnectionFactory"], "WFLYCTL0180: Services with missing/unavailable dependencies" =>

WSO2 ESB connectivity CICS Transaction Server

左心房为你撑大大i 提交于 2020-01-14 05:39:27
问题 Need to know if WSO2 ESB can integrate with CICS Transaction Server v 3.2 on a z/OS mainframe. TIA. 回答1: CICS Transaction Server v3.2 can support standard SOAP over http calls. Is there an need for your ESB to actually know it is integrating with CICS or can you get by with a wsdl document with an endpoint at a CICS server behaving like any other webservices provider? 来源: https://stackoverflow.com/questions/16780152/wso2-esb-connectivity-cics-transaction-server

WSO2 ESB connectivity CICS Transaction Server

我是研究僧i 提交于 2020-01-14 05:39:12
问题 Need to know if WSO2 ESB can integrate with CICS Transaction Server v 3.2 on a z/OS mainframe. TIA. 回答1: CICS Transaction Server v3.2 can support standard SOAP over http calls. Is there an need for your ESB to actually know it is integrating with CICS or can you get by with a wsdl document with an endpoint at a CICS server behaving like any other webservices provider? 来源: https://stackoverflow.com/questions/16780152/wso2-esb-connectivity-cics-transaction-server

Does the whole linkage section return?

二次信任 提交于 2019-12-24 17:43:23
问题 In program a EXEC CICS LINK PROGRAM(PGMB) COMMAREA(COMMA) LENGTH(LENGTH OF COMMA) RESP(CICS-RESP) END-EXEC In program b EXEC CICS RETURN END-EXEC Does program b only return the commarea that program a passed? Or does it return the whole LINKAGE SECTION? 回答1: Program B returns neither the entire LINKAGE SECTION nor the commarea (COMMA in your example). It returns nothing. Why does it return nothing? Because nothing gets passed to it. Or, rather, what gets passed to it is simply the address(es)

Issues in creating J2C Java beans using the Batch Import Utility in WAS 8.5

╄→尐↘猪︶ㄣ 提交于 2019-12-13 06:54:46
问题 I'm facing issues in creating J2C Java beans using the Batch Import Utility . In my project I have a custom ANT Build file which invokes ImportBatch.bat file of WSAD 5.1 Plugin. In WAS 5.1 it is working fine but in WAS 8.5 using Rational Application Developer 9.5 the same utility throws NullPointerException . As per my analysis WAS 5.1 has " com.ibm.etools.ctc.import.batch_5.1.1 " plugin which is used to perform the above task. I searched for this plugin in WAS 8.5 and I got that it has been

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

JCL equivalent of CEMT NEWCOPY

时间秒杀一切 提交于 2019-12-13 06:22:19
问题 I am looking for the JCL equivalent of NEWCOPY method in CEMT/CICS: CEMT SET PROG(xxxx) NEWCOPY Any help would be appreciated. 回答1: If your answer to NealB's question is "Yes," then here are some options. Invoke CEMT via an operator command. One way to do this is to run SDSF in batch, another is to use the TSO CONSOLE command. Be advised that this requires authorization. Write a program in your preferred programming language and invoke the CICS System Programming API SET PROGRAM. Then write

Abend Causing Line

余生长醉 提交于 2019-12-12 10:01:37
问题 Is there any way that we can find the exact line number that causes an abend ( like SO4C) from the Offset(like offset +00007D0A at address 1515CD0A ) given in the spool with the error message.? 回答1: If your program is compiled with options OFFSET,NOLIST, you will have a list of verbs/line numbers in the output listing which contain the "offset" from the start of the program. The line number on the the listing which has the closest offset, but less than or equal to, the "offset" reported in

Changes made to JVM profile in CICS are not being reflected in the runtime

久未见 提交于 2019-12-12 01:54:48
问题 I made a change to an OSGi JVM Profile by adding a library to LIBPATH_SUFFIX . After that I discarded my JVM server and reinstalled it, but the changes are not getting reflected. Is there a secondary step that I should have taken care of after making the changes to the JVM Profile file? 回答1: If you want to add DB2 JDBC type2 driver support to an OSGi JVM server you will need to do the following: Add the DB2 libraries to the CICS STEPLIB Create/install a CICS DB2CONN resource and ensure this

Numeric field accepting characters in cics map

故事扮演 提交于 2019-12-12 01:32:04
问题 I have 4 fields in my map which are 9(6),9(3),9(3),9(3). I wrote validation code like this: IF ROLLNUM IS NOT NUMERIC MOVE DFHRED TO ROLLNUMC MOVE 'INVALID DATA' TO RESMSGO MOVE ROLLNUMI TO ROLLNUMO PERFORM SEND-MAP THRU SEND-MAP-EXIT PERFORM KEY-VALIDATION THRU KEY-VALIDATION-EXIT. But I am not getting any kind of error while inserting the values like A12AK into the database from cics. It is replacing A with 1, B with 2, and so on... Why is this happening? And how to avoid this 回答1: Add