Author: scheu Date: Wed Oct 24 05:28:30 2007 New Revision: 587877 URL: http://svn.apache.org/viewvc?rev=587877&view=rev Log: Add some trace to EndpointController.
Modified: webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/server/EndpointController.java Modified: webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/server/EndpointController.java URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/server/EndpointController.java?rev=587877&r1=587876&r2=587877&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/server/EndpointController.java (original) +++ webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/server/EndpointController.java Wed Oct 24 05:28:30 2007 @@ -339,7 +339,7 @@ //rather than just Exception. } catch (Throwable cnf) { throw ExceptionFactory.makeWebServiceException(Messages.getMessage( - "EndpointControllerErr4", className)); + "EndpointControllerErr4", className), cnf); } } @@ -362,7 +362,8 @@ ); } catch (PrivilegedActionException e) { if (log.isDebugEnabled()) { - log.debug("Exception thrown from AccessController: " + e); + log.debug("PrivilegedActionException thrown from AccessController: " + e); + log.debug("Real Cause is " + e.getException().getCause()); } throw (ClassNotFoundException)e.getException(); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]