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 sa...@apache.org on 2007/07/12 07:58:49 UTC

svn commit: r555499 - in /webservices/axis2/trunk/c: include/axis2_options.h include/axis2_stub.h xdocs/docs/axis2c_manual.html

Author: samisa
Date: Wed Jul 11 22:58:48 2007
New Revision: 555499

URL: http://svn.apache.org/viewvc?view=rev&rev=555499
Log:
Fixed the AXIOM_SOAP_11 vs AXIOM_SOAP11 problem

Modified:
    webservices/axis2/trunk/c/include/axis2_options.h
    webservices/axis2/trunk/c/include/axis2_stub.h
    webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html

Modified: webservices/axis2/trunk/c/include/axis2_options.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_options.h?view=diff&rev=555499&r1=555498&r2=555499
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_options.h (original)
+++ webservices/axis2/trunk/c/include/axis2_options.h Wed Jul 11 22:58:48 2007
@@ -561,7 +561,7 @@
      * Gets SOAP version.
      * @param options pointer to options struct
      * @param env pointer to environment struct
-     * @return AXIOM_SOAP_11 if SOAP version 1.1 is in use, else AXIOM_SOAP_12
+     * @return AXIOM_SOAP11 if SOAP version 1.1 is in use, else AXIOM_SOAP12
      */
     AXIS2_EXTERN int AXIS2_CALL
     axis2_options_get_soap_version(const axis2_options_t *options,
@@ -571,7 +571,7 @@
      * Sets SOAP version.
      * @param options pointer to options struct
      * @param env pointer to environment struct
-     * @param soap_version soap version, either AXIOM_SOAP_11 or AXIOM_SOAP_12
+     * @param soap_version soap version, either AXIOM_SOAP11 or AXIOM_SOAP12
      * @return AXIS2_SUCCESS on success, else AXIS2_FAILURE
      */
     AXIS2_EXTERN axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/include/axis2_stub.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_stub.h?view=diff&rev=555499&r1=555498&r2=555499
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_stub.h (original)
+++ webservices/axis2/trunk/c/include/axis2_stub.h Wed Jul 11 22:58:48 2007
@@ -37,9 +37,9 @@
 #include <axutil_property.h>
 
 /** Constant value representing SOAP version 1.1 */
-#define AXIOM_SOAP_11 0
+#define AXIOM_SOAP_11 1
 /** Constant value representing SOAP version 1.2 */
-#define AXIOM_SOAP_12 1
+#define AXIOM_SOAP_12 2
 
 #ifdef __cplusplus
 extern "C"

Modified: webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html?view=diff&rev=555499&r1=555498&r2=555499
==============================================================================
--- webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html (original)
+++ webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html Wed Jul 11 22:58:48 2007
@@ -2862,7 +2862,7 @@
     </tr>
     <tr>
       <td>const int soap_version</td>
-      <td>SOAP version, either AXIOM_SOAP_11 or AXIOM_SOAP_12.</td>
+      <td>SOAP version, either AXIOM_SOAP11 or AXIOM_SOAP12.</td>
     </tr>
   </tbody>
 </table>



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