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 pi...@apache.org on 2007/12/04 12:27:07 UTC

svn commit: r600889 - /webservices/axis2/trunk/c/xdocs/docs/om_tutorial.html

Author: pini
Date: Tue Dec  4 03:27:06 2007
New Revision: 600889

URL: http://svn.apache.org/viewvc?rev=600889&view=rev
Log:
Fixing jira issue 794

Modified:
    webservices/axis2/trunk/c/xdocs/docs/om_tutorial.html

Modified: webservices/axis2/trunk/c/xdocs/docs/om_tutorial.html
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xdocs/docs/om_tutorial.html?rev=600889&r1=600888&r2=600889&view=diff
==============================================================================
--- webservices/axis2/trunk/c/xdocs/docs/om_tutorial.html (original)
+++ webservices/axis2/trunk/c/xdocs/docs/om_tutorial.html Tue Dec  4 03:27:06 2007
@@ -158,7 +158,7 @@
 <code>axutil_env_t</code>, which we refer to as the Axis2 environment. The
 environment holds <code>axutil_allocator_t</code>, which is used for memory
 allocation and deallocation, <code>axutil_error_t</code>, which is used for
-error reporting, <code>axuitl_log_t</code>, which is used for logging
+error reporting, <code>axutil_log_t</code>, which is used for logging
 mechanisms, and <code>axutil_thread_t</code> which is used for threading
 mechanisms.</p>
 
@@ -181,13 +181,13 @@
 
 <p>In a similar fashion, you can create the error and log structures.</p>
 
-<p><code>axuitl_log_t *log = NULL;</code></p>
+<p><code>axutil_log_t *log = NULL;</code></p>
 
 <p><code>axutil_error_t *error = NULL;</code></p>
 
-<p><code>log = axuitl_log_create(allocator, NULL, NULL);</code></p>
+<p><code>log = axutil_log_create(allocator, NULL, NULL);</code></p>
 
-<p><code>log = axuitl_log_create(allocator, NULL, "mylog.log");</code></p>
+<p><code>log = axutil_log_create(allocator, NULL, "mylog.log");</code></p>
 
 <p></p>
 
@@ -659,7 +659,7 @@
 <pre>#include &lt;axiom.h&gt;
 #include &lt;axis2_util.h&gt;
 #include &lt;axutil_env.h&gt;
-#include &lt;axuitl_log_default.h&gt;
+#include &lt;axutil_log_default.h&gt;
 #include &lt;axutil_error_default.h&gt;
 #include &lt;stdio.h&gt;
 
@@ -676,11 +676,11 @@
 {
     axutil_allocator_t *allocator = NULL;
     axutil_env_t *env = NULL;
-    axuitl_log_t *log = NULL;
+    axutil_log_t *log = NULL;
 
     axutil_error_t *error = NULL;
     allocator = axutil_allocator_init(NULL);
-    log = axuitl_log_create(allocator, NULL, NULL);
+    log = axutil_log_create(allocator, NULL, NULL);
 
     error = axutil_error_create(allocator);
     env = axutil_env_create_with_error_log(allocator, error, log);



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