You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ode.apache.org by shihoir <sh...@gmail.com> on 2009/08/22 15:49:16 UTC

NullPointerException in "One ways cleanup"

Hi All
I am using ode 1.3.2, and Instance Data Cleanup like below.

 <process name="pns:XXXX">
    ...
    <cleanup on="always" />
 </process>

processes were completed successfully, but
I got NullPointerException at org.apache.ode.axis2.ODEService.java L219.

217: } else {
218:     // One ways cleanup
219:     odeMex.release(true);
220: }

It seemed that messeges(ODE_MESSAGE, ODE_MESSAGE_ROUTE, ODE_MEX_PROPS,
ODE_MESSAGE_EXCHANGE)
were cleaned up successfully.

I just commented out L219, and tried again.
NPE does not occured, and messeges are cleaned up successfully.

ODEService L219 should be commented out?

//shihoir