You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sc...@apache.org on 2007/10/24 14:28:31 UTC

svn commit: r587877 - /webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/server/EndpointController.java

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: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org