I am maintaining old soap webservices running on JAX-RPC (Weblogic implementation). But I am experiencing an NPE without any complete stack trace :
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Header/><env:Body><env:Fault><faultcode>env:Server</faultcode><faultstring>Failed to invoke end component com.old.service.MyService (POJO), operation=listUsers
-> Failed to invoke method
</faultstring><detail><java:string xmlns:java="java.io">java.lang.NullPointerException
</java:string></detail></env:Fault></env:Body></env:Envelope>
Is there is a way to find the full stack trace ?
Is there is a way to programmatically handling webservices exception like @HandlerChain
annotation in Jax-WS (for logging purpose) ?