2 Replies Latest reply on Dec 4, 2007 12:21 PM by burrsutter

    Message delivery question

      Hello,

      when I call ServiceInvoker.deliverySync(inputMessage), does the method return reply message for the input message (with RelatesTo id equal to MessageId of input message), OR does the method simply return first avalaible message on reply channel?

      Thanks for reply
      Pavel

        • 1. Re: Message delivery question
          kurtstam

          For example if you use JMS, a unique message-filter is used which guarantees that it will wait for that specific reply message and nothing else.

          --K

          • 2. Re: Message delivery question
            burrsutter

            I like to say that the message that is returned to the client (the one using ServiceInvoker.deliverSync) is the last non-null Message from the last successfully executed action in the action chain/pipeline.

            If there is an exception in the action chain then the exception makes it all the way back to the client.

            Note: I've not tested what returning null does to the SI client. Perhaps null makes it all the way back to the client. Plus I've not fully tested what is returned should the timer expire. I'm guessing the returned message is null.

            Burr