Author Info
Chris Malek

Chris Malek is a PeopleTools® Technical Consultant with two decades of experience working on PeopleSoft enterprise software projects. He is available for consulting engagements.

About Chris Work with Chris
Looking for pain-free PeopleSoft web services? 😀
PeopleSoft Simple Web Services (SWS)

Introducing a small but powerful PeopleSoft bolt-on that makes web services very easy. If you have a SQL statement, you can turn that into a web service in PeopleSoft in a few minutes.

Contents

OnAckReceive (OnReceive)

TODO: This page needs some work.

/*  OnAckReceive will pass in a message to your
derived application class method.
In order to access the data, you must use &message.GetContentString()
which will return the data in string format.
 
The possible return values of this method are:
DONE -(%Operation_Done)
ERROR -(%Operation_Error)
RETRY -(%Operation_Retry) if the Delivery Mode is Guaranteed. If RETRY is returned
when Delivery Mode is Best Effort, the the status will be changed to DONE_NOACK.
DONE_NOACK -(%Operation_DoneNoAck) Only Applicable if Delivery Mode is Best Effort.
If the Delivery Mode is Guaranteed then status will be changed to DONE.
 
For the case when Delivery Mode is Best Effort, in order to determine passed in status of transaction check the ResponseStatus property on Message Object.  If ResponseStatus is %IB_Status_Success then the status passed is DONE.  If the Status is not successful then the status passed
is DONE_NOACK, and the actual exception can be determined by the IBException object within the
Message Object.
 
If an error occurs the OnError method if implemented will be
automatically invoked. The type of exception can be viewed by using the
Message object to retrieve the Exception object (&Message.IBException).
Please see the PeopleCode Language Reference guide for
more information about the Exception class.
*/

interface IReceiver
   method OnAckReceive(&message As Message) Returns integer;
   method OnError(&request As Message);
   
end-interface;