|
from within the IBM i.... specifically in the QSH command entry...
I have tried to copy and paste several examples and have not been
successful...
to clarify.. do I have to use a driver to connect back to the i?
import com.ibm.as400.access.AS400;
import com.ibm.as400.data.PcmlException;
import com.ibm.as400.data.ProgramCallDocument;
boolean rc = false;
AS400 as400;
ProgramCallDocument pcd;
String path = "/QSYS.LIB/GEMLIB.LIB/GETMQMSG.PGM";
as400 = new AS400 ();
pcd = new ProgramCallDocument (as400, "GETMQMSG");
pcd.setPath ("GETMQMSG", path);
pcd.setValue ("GETMQMSG.MESSAGE_1", message);
rc = pcd.callProgram("GETMQMSG");
I am getting the following errors:
Recv.java:39: error: unreported exception PcmlException; must be caught or
declared to be thrown
pcd = new ProgramCallDocument (as400, "GETMQMSG");
^
Recv.java:40: error: unreported exception PcmlException; must be caught or
declared to be thrown
pcd.setPath ("GETMQMSG", path);
^
Recv.java:41: error: unreported exception PcmlException; must be caught or
declared to be thrown
pcd.setValue ("GETMQMSG.MESSAGE_1", message);
^
Recv.java:42: error: unreported exception PcmlException; must be caught or
declared to be thrown
rc = pcd.callProgram("GETMQMSG");
--
This is the Java Programming on and around the IBM i (JAVA400-L) mailing
list
To post a message email: JAVA400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/java400-l
or email: JAVA400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/java400-l.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.