hi,
yes you are right, i change my code to
axis2_char_t *om_str = NULL;
om_str = axiom_node_to_string(ret_node, env);
if(om_string)
printf("Response is: %s\n", om_string);
and it gives me a positiv answer back=) thanks
So i got a xml_element as the result with no text, but why i get text using
the axiom_node_to string-function? I dont see the differents....
I think the node Type AXIOM_TEXT is as the name implies "text". But what is
a node Type AXIOM ELEMENT? In the math example the code is like:
if(axiom_node_get_node_type(ret_node, env) == AXIOM_ELEMENT)
{
axis2_char_t *result = NULL;
axiom_element_t *result_ele =
(axiom_elemet_t*)axiom_node_get_data_element(ret_node,env);
result = axiom_element_get_text(result_ele, env, ret_node);
printf("\nResult = %s\n", result);
...
why is used here this and not the axiom_node_to string-function? I dont see
the different...
Di you understand me?
--
View this message in context:
http://www.nabble.com/AXIS2-and-AXIOM-tp19163204p19195749.html
Sent from the Axis - C++ - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]