You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ru...@apache.org on 2006/11/02 07:52:37 UTC

svn commit: r470247 - in /webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2: deployment/ServiceBuilder.java i18n/resource.properties

Author: ruchithf
Date: Wed Nov  1 22:52:36 2006
New Revision: 470247

URL: http://svn.apache.org/viewvc?view=rev&rev=470247
Log:
fixed a typo : s/lable/label

Modified:
    webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/deployment/ServiceBuilder.java
    webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/i18n/resource.properties

Modified: webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/deployment/ServiceBuilder.java
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/deployment/ServiceBuilder.java?view=diff&rev=470247&r1=470246&r2=470247
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/deployment/ServiceBuilder.java (original)
+++ webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/deployment/ServiceBuilder.java Wed Nov  1 22:52:36 2006
@@ -431,13 +431,13 @@
             throws DeploymentException {
         while (messages.hasNext()) {
             OMElement messageElement = (OMElement) messages.next();
-            OMAttribute lable = messageElement.getAttribute(new QName(TAG_LABEL));
+            OMAttribute label = messageElement.getAttribute(new QName(TAG_LABEL));
 
-            if (lable == null) {
+            if (label == null) {
                 throw new DeploymentException(Messages.getMessage("messagelabelcannotfound"));
             }
 
-            AxisMessage message = operation.getMessage(lable.getAttributeValue());
+            AxisMessage message = operation.getMessage(label.getAttributeValue());
 
             Iterator parameters = messageElement.getChildrenWithName(new QName(TAG_PARAMETER));
 

Modified: webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/i18n/resource.properties
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/i18n/resource.properties?view=diff&rev=470247&r1=470246&r2=470247
==============================================================================
--- webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/i18n/resource.properties (original)
+++ webservices/axis2/branches/java/1_1/modules/kernel/src/org/apache/axis2/i18n/resource.properties Wed Nov  1 22:52:36 2006
@@ -179,7 +179,7 @@
 confdirnotfound=conf directory not found , and no axis2.xml file is given ! System will continue using default_axis2.xml
 noaxis2xmlfound=axis2.xml file not found in conf directory , system will continue using default_axis2.xml
 badelementfound=Looking for ''{0}'' element, but found ''{1}''
-messagelabelcannotfound=message lebel can not be null
+messagelabelcannotfound=message label can not be null
 paramterlockedbyparent=Parameter: {0} is already locked, hence value cannot be overridden
 modulealredyengaged={0}  module has already engaged to the operation operation terminated !!!
 mepmappingerror=Could not Map the MEP URI to a axis2 MEP constant value
@@ -233,4 +233,4 @@
 servicenotfoundinthesystem=Invalid service {0}, not found in the system
 transportnotfound=Transport Not found {0}
 CannotConfigureAxis2=Cannot configure Axis2
-wsaddressingrequirednotpresent=WS-Addressing required but not found.
\ No newline at end of file
+wsaddressingrequirednotpresent=WS-Addressing required but not found.



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org