You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ode.apache.org by Matthieu Riou <ma...@gmail.com> on 2006/07/14 17:47:29 UTC

Small IAPI change

I need to do a small change (add 2 methods) in the MessageExchange IAPI
interface. The idea here is to support stateful services and to do so we
need to include, in the message exchange, the (stateful) EPR of the service
invoking us. This EPR would of course have some instance specific session
information for the service invoking us. And the idea is then reusing that
information later on when we need to invoke that service.

So that would be:

public interface MessageExchange {
    ....
    public EndpointReference getCallbackEndpointReference();
    public void setCallbackEndpointReference(EndpointReference ref);
}


Nothing much but wanted you to be aware of it.

Cheers,

Matthieu