Lines Matching refs:children

56 	trav = response->children;  in parse_packet_soap()
92 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
103 trav = env->children; in parse_packet_soap()
142 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
168 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
179 fault = get_node_ex(body->children,"Fault",envelope_ns); in parse_packet_soap()
188 tmp = get_node(fault->children, "faultcode"); in parse_packet_soap()
189 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
190 faultcode = (char*)tmp->children->content; in parse_packet_soap()
193 tmp = get_node(fault->children, "faultstring"); in parse_packet_soap()
194 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
200 tmp = get_node(fault->children, "faultactor"); in parse_packet_soap()
201 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
207 tmp = get_node(fault->children, "detail"); in parse_packet_soap()
212 tmp = get_node(fault->children, "Code"); in parse_packet_soap()
213 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
214 tmp = get_node(tmp->children, "Value"); in parse_packet_soap()
215 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
216 faultcode = (char*)tmp->children->content; in parse_packet_soap()
220 tmp = get_node(fault->children,"Reason"); in parse_packet_soap()
221 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
223 tmp = get_node(tmp->children,"Text"); in parse_packet_soap()
224 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
231 tmp = get_node(fault->children,"Detail"); in parse_packet_soap()
252 resp = body->children; in parse_packet_soap()
300 val = get_node(cur->children, param->paramName); in parse_packet_soap()
303 val = get_node(cur->children, "return"); in parse_packet_soap()
306 val = get_node(cur->children, "result"); in parse_packet_soap()
308 if (val == NULL && cur->children && cur->children->next == NULL) { in parse_packet_soap()
309 val = cur->children; in parse_packet_soap()
339 val = resp->children; in parse_packet_soap()
393 trav = head->children; in parse_packet_soap()