× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



You don't need a driver beyond jt400.jar

Not sure from memory what your err is but the answer should be clear from
the Javadocs.

I'll take a look because you made me curious.

On Tue, Sep 25, 2018 at 1:08 PM Gerald Magnuson <gmagqcy.midrange@xxxxxxxxx>
wrote:

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 thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.