View previous topic :: View next topic |
Author |
Message |
vani Beginner
Joined: 28 May 2003 Posts: 51 Topics: 30
|
Posted: Sat Oct 18, 2003 6:20 am Post subject: cics-java HelloWorld.java Program getting abended!! |
|
|
Hi,
We are currently trying to invoke the IBM supplied HelloWorld.java Program through CICS. We have the Transaction manager 1.3 and the Java JDK 1.1. When we try to initiate the transaction it is throwing the following message in the log:
DFHAC2236 10/18/03 16:41:27 CICSSFD Transaction RAK2 abend ASRB in program DFHAPLJ1 term 1057. Updates to local recoverable resources will be backed out.
Can anyone help Out?
Regards,
Vani |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
vani Beginner
Joined: 28 May 2003 Posts: 51 Topics: 30
|
Posted: Sat Oct 18, 2003 10:12 am Post subject: |
|
|
Kolusu,
We are invoking the Program online from CICS. We do not have EJB installed in the mainframes. We just followed the procedure as follows:
The Sample program is provided by IBM in the following path on USS:
/usr/lpp/cicsts/cicsts13/samples/dfjcics/examples/HelloWorld
We created the .class file using javac compiler.
We defined the required CLASSPATH and the LIBPATH in the following dataset:
CICSTS13.CICS.SDFHENV(DFHJVM)
and included the above dataset in the start-up JCL along with the following DD card:
DFHCJVM DD DUMMY
We then defined the program to cics with the JVM(YES) and JVMCLASS(examples.HelloWorld.HelloWorld) after including the /usr/lpp/cicsts/cicsts13/samples/dfjcics in the CLASSPATH.
Now, when we invoke the Txn it is abending with the above error saying that DFHAPLJ1 load module has errors. This program is picked up from
CICSTS13.CICS.SDFHLOAD.
Regards,
Vani |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Mon Oct 20, 2003 5:13 am Post subject: |
|
|
Vani,
This problem with your definitions.You are setting the link in USS to
Code: |
/usr/lpp/cicsts/cicsts13/samples/dfjcics/examples/HelloWorld
|
change the above to the following
Code: |
/usr/lpp/cicsts/cicsts13/examples
|
Hope this helps...
cheers
kolusu |
|
Back to top |
|
 |
|
|