Hi Michele,

Hmm ... to prevent overriding of the same property in each client
invocation you can simply check whether the property exists in and
then modify the property (state) appropriately.

Example:

Modify the following:

private static void handleRequest(MessageContext inCtx) {
        confCtx.setProperty(<something>);
        .....
        // eventually confCtx.getProperty(<some_key);
        // process
}

To:

private static void handleRequest(MessageContext inCtx) {
       if(confCtx.getProperty(<some_key) !=  null) {
             confCtx.setProperty(<something>);
       }
       .....
       // eventually confCtx.getProperty(<some_key);
       // process
}


Thanks,
Ruchith

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to