axiom_soap_builder.h

Go to the documentation of this file.
00001 
00002 /*
00003  * Licensed to the Apache Software Foundation (ASF) under one or more
00004  * contributor license agreements.  See the NOTICE file distributed with
00005  * this work for additional information regarding copyright ownership.
00006  * The ASF licenses this file to You under the Apache License, Version 2.0
00007  * (the "License"); you may not use this file except in compliance with
00008  * the License.  You may obtain a copy of the License at
00009  *
00010  *      http://www.apache.org/licenses/LICENSE-2.0
00011  *
00012  * Unless required by applicable law or agreed to in writing, software
00013  * distributed under the License is distributed on an "AS IS" BASIS,
00014  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00015  * See the License for the specific language governing permissions and
00016  * limitations under the License.
00017  */
00018 
00019 #ifndef AXIOM_SOAP_BUILDER_H
00020 #define AXIOM_SOAP_BUILDER_H
00021 
00022 #include <axiom_stax_builder.h>
00023 #include <axiom_soap_envelope.h>
00024 
00030 #ifdef __cplusplus
00031 extern "C"
00032 {
00033 #endif
00034 
00035     typedef struct axiom_soap_builder axiom_soap_builder_t;
00036 
00047     AXIS2_EXTERN axiom_soap_builder_t *AXIS2_CALL
00048     axiom_soap_builder_create(
00049         const axutil_env_t * env,
00050         axiom_stax_builder_t * builder,
00051         const axis2_char_t * soap_version);
00052 
00053     AXIS2_EXTERN void AXIS2_CALL
00054     axiom_soap_builder_free(
00055         axiom_soap_builder_t * builder,
00056         const axutil_env_t * env);
00057 
00058     AXIS2_EXTERN axiom_soap_envelope_t *AXIS2_CALL
00059 
00060     axiom_soap_builder_get_soap_envelope(
00061         axiom_soap_builder_t * builder,
00062         const axutil_env_t * env);
00063 
00064     AXIS2_EXTERN axiom_document_t *AXIS2_CALL
00065 
00066     axiom_soap_builder_get_document(
00067         axiom_soap_builder_t * builder,
00068         const axutil_env_t * env);
00069 
00070     AXIS2_EXTERN axis2_status_t AXIS2_CALL
00071     axiom_soap_builder_next(
00072         axiom_soap_builder_t * builder,
00073         const axutil_env_t * env);
00074 
00075     AXIS2_EXTERN axiom_node_t *AXIS2_CALL
00076 
00077     axiom_soap_builder_get_document_element(
00078         axiom_soap_builder_t * builder,
00079         const axutil_env_t * env);
00080 
00081     AXIS2_EXTERN axis2_status_t AXIS2_CALL
00082 
00083     axiom_soap_builder_set_bool_processing_mandatory_fault_elements(
00084         axiom_soap_builder_t * builder,
00085         const axutil_env_t * env,
00086         axis2_bool_t value);
00087 
00088     AXIS2_EXTERN axis2_status_t AXIS2_CALL
00089 
00090     axiom_soap_builder_set_processing_detail_elements(
00091         axiom_soap_builder_t * builder,
00092         const axutil_env_t * env,
00093         axis2_bool_t value);
00094 
00095     AXIS2_EXTERN axis2_bool_t AXIS2_CALL
00096 
00097     axiom_soap_builder_is_processing_detail_elements(
00098         axiom_soap_builder_t * builder,
00099         const axutil_env_t * env);
00100 
00101     AXIS2_EXTERN int AXIS2_CALL
00102     axiom_soap_builder_get_soap_version(
00103         axiom_soap_builder_t * builder,
00104         const axutil_env_t * env);
00105 
00106     AXIS2_EXTERN axis2_status_t AXIS2_CALL
00107 
00108     axiom_soap_builder_process_namespace_data(
00109         axiom_soap_builder_t * builder,
00110         const axutil_env_t * env,
00111         axiom_node_t * om_node,
00112         axis2_bool_t is_soap_element);
00113 
00114     AXIS2_EXTERN axis2_status_t AXIS2_CALL
00115 
00116     axiom_soap_builder_set_mime_body_parts(
00117         axiom_soap_builder_t * builder,
00118         const axutil_env_t * env,
00119         axutil_hash_t * map);
00120 
00122 #ifdef __cplusplus
00123 }
00124 #endif
00125 #endif                          /* AXIOM_SOAP_BUILDER_H */

Generated on Wed Feb 27 19:55:34 2008 for Axis2/C by  doxygen 1.5.5