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 ve...@apache.org on 2010/01/30 15:58:18 UTC

svn commit: r904782 - /webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/framework/JAXWSDeployer.java

Author: veithen
Date: Sat Jan 30 14:58:17 2010
New Revision: 904782

URL: http://svn.apache.org/viewvc?rev=904782&view=rev
Log:
Clarified an error message in the servicejar deployer.

Modified:
    webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/framework/JAXWSDeployer.java

Modified: webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/framework/JAXWSDeployer.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/framework/JAXWSDeployer.java?rev=904782&r1=904781&r2=904782&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/framework/JAXWSDeployer.java (original)
+++ webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/framework/JAXWSDeployer.java Sat Jan 30 14:58:17 2010
@@ -158,7 +158,7 @@
                 AxisServiceGroup serviceGroup = deployClasses(groupName, location, classLoader, classList);
                 
                 if(serviceGroup == null) {
-                    String msg = "Error:\n No annotated classes found in the jar: " +
+                    String msg = "Error:\n No @WebService annotated service implementations found in the jar: " +
                             location.toString() +
                             ". Service deployment failed.";
                     log.error(msg);