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 di...@apache.org on 2005/11/22 19:14:58 UTC

svn commit: r348200 - /webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/Stub.java

Author: dims
Date: Tue Nov 22 10:14:54 2005
New Revision: 348200

URL: http://svn.apache.org/viewcvs?rev=348200&view=rev
Log:
minor typo


Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/Stub.java

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/Stub.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/Stub.java?rev=348200&r1=348199&r2=348200&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/Stub.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/client/Stub.java Tue Nov 22 10:14:54 2005
@@ -62,7 +62,7 @@
     protected boolean useSeparateListener;
 
     //Default SOAP version is 11
-    protected int soapVesrion = SOAP_11;
+    protected int soapVersion = SOAP_11;
     protected HashMap propertyMap = new HashMap();
     protected ArrayList modules = new ArrayList();
 
@@ -121,7 +121,7 @@
      * @param soapVersion
      */
     public void setSOAPVersion(int soapVersion){
-        this.soapVesrion = soapVersion;
+        this.soapVersion = soapVersion;
     }
 
 
@@ -169,7 +169,7 @@
 
 
     protected SOAPEnvelope createEnvelope() throws SOAPProcessingException {
-        return getFactory(this.soapVesrion).getDefaultEnvelope();
+        return getFactory(this.soapVersion).getDefaultEnvelope();
     }
 
     protected void setValueRPC(SOAPEnvelope env,
@@ -178,7 +178,7 @@
                                String[] paramNames,
                                Object[] values) {
         SOAPBody body = env.getBody();
-        OMFactory fac = this.getFactory(this.soapVesrion);
+        OMFactory fac = this.getFactory(this.soapVersion);
 
         OMNamespace methodNamespace = fac.createOMNamespace(methodNamespaceURI,
                 "ns1");