|
Faizulla, This is easy to do with Java and JTOpen, which you can call from RPG if necessary This is from the dataqueue examples The following example creates a DataQueue object, reads data from the DataQueueEntry object, and then disconnects from the system. // Create an AS400 object AS400 sys = new AS400("mySystem.myCompany.com"); // Create the DataQueue object DataQueue dq = new DataQueue(sys, "/QSYS.LIB/MYLIB.LIB/MYQUEUE.DTAQ"); // read data from the queue DataQueueEntry dqData = dq.read(); // get the data out of the DataQueueEntry object. byte[] data = dqData.getData(); // ... process the data // Disconnect since I am done using data queues sys.disconnectService(AS400.DATAQUEUE); Cheers Colin.W -----Original Message----- From: FZKhan@xxxxxxx [mailto:FZKhan@xxxxxxx] Sent: 07 January 2004 13:43 To: rpg400-l@xxxxxxxxxxxx Subject: Accessing DTAQ on remote AS/400 Hi I was wondering if there is an API that will let me use the DTAQ on a remote AS/400 from a local AS/400. It seems that I can access a DTAQ object on any AS/400 on the WAN from any PC on a WAN but not from AS/400 to AS/400. Regards Faizulla Khan fzkhan@xxxxxxx _______________________________________________ This is the RPG programming on the AS400 / iSeries (RPG400-L) mailing list To post a message email: RPG400-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options, visit: http://lists.midrange.com/mailman/listinfo/rpg400-l or email: RPG400-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at http://archive.midrange.com/rpg400-l. For the latest on Bertram Books products and services and for up-to-the-minute book news visit www.bertrams.com This e-mail and any attachments may contain information that is confidential and privileged and is solely for the use of the intended recipient. If you are not the intended recipient please notify the sender and delete this e-mail and any attachments immediately
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 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.