summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-env.h
diff options
context:
space:
mode:
Diffstat (limited to 'libcsoap/soap-env.h')
-rw-r--r--libcsoap/soap-env.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/libcsoap/soap-env.h b/libcsoap/soap-env.h
index 58af136..523438d 100644
--- a/libcsoap/soap-env.h
+++ b/libcsoap/soap-env.h
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: soap-env.h,v 1.8 2004/10/28 10:30:46 snowdrop Exp $
+ * $Id: soap-env.h,v 1.9 2004/11/02 23:09:26 snowdrop Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -71,7 +71,7 @@ typedef struct _SoapEnv
</pre>
- */
+ */
herror_t
soap_env_new_with_fault(fault_code_t faultcode,
const char *faultstring,
@@ -85,8 +85,8 @@ soap_env_new_with_fault(fault_code_t faultcode,
@param urn The urn of the soap service to invoke
@param method The method name of the soap service
- @param out the result envelope out parameter like follows
- @returns H_OK if success
+ @param out the result envelope out parameter like follows
+ @returns H_OK if success
<pre>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="..." SOAP-ENV:encoding="..."
@@ -103,7 +103,7 @@ soap_env_new_with_fault(fault_code_t faultcode,
</pre>
*/
-herror_t
+herror_t
soap_env_new_with_method(const char *urn, const char *method, SoapEnv **out);
@@ -118,8 +118,8 @@ soap_env_new_with_method(const char *urn, const char *method, SoapEnv **out);
@param req The request object. A response object will be created
to this request.
- @param out the result envelope out paramter like follows
- @returns H_OK if success
+ @param out the result envelope out paramter like follows
+ @returns H_OK if success
<pre>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="..." SOAP-ENV:encoding="..."
@@ -144,8 +144,8 @@ herror_t soap_env_new_with_response(SoapEnv *req,SoapEnv **out);
Creates an envelope from a given libxml2 xmlDoc
pointer.
- @param doc the xml document pointer
- @param out the output envelope object
+ @param doc the xml document pointer
+ @param out the output envelope object
@returns H_OK if success
*/
@@ -157,18 +157,18 @@ herror_t soap_env_new_from_doc(xmlDocPtr doc, SoapEnv **out);
The string must be in xml format.
@param buffer The string to parse into a envelope.
- @param out the output envelope object
+ @param out the output envelope object
@returns H_OK if success
*/
herror_t soap_env_new_from_buffer(const char* buffer,SoapEnv **out);
/**
- Create an envelope from input stream
+ Create an envelope from input stream
- @param in the input stream object to read from
- @param out the output envelope object
- @returns H_OK if success
+ @param in the input stream object to read from
+ @param out the output envelope object
+ @returns H_OK if success
*/
herror_t soap_env_new_from_stream(http_input_stream_t *in, SoapEnv **out);