Lines Matching refs:method

3726 	xmlNodePtr method = NULL, param;  local
3740 method = xmlNewChild(body, ns, BAD_CAST(function->responseName), NULL);
3742 method = xmlNewChild(body, ns, BAD_CAST(function->functionName), NULL);
3750 method = xmlNewChild(body, ns, BAD_CAST(function_name), NULL);
3771 rpc_result = xmlNewChild(method, rpc_ns, BAD_CAST("result"), NULL);
3772 param = serialize_parameter(parameter, ret, 0, "return", use, method);
3775 param = serialize_parameter(parameter, ret, 0, "return", use, method);
3800 param = serialize_parameter(parameter, data, i, ZSTR_VAL(param_name), use, method);
3816 if (use == SOAP_ENCODED && version == SOAP_1_2 && method != NULL) {
3817 xmlSetNsProp(method, body->ns, BAD_CAST("encodingStyle"), BAD_CAST(SOAP_1_2_ENC_NAMESPACE));
3820 *node = method;
4198 xmlNodePtr envelope = NULL, body, method = NULL, head = NULL; local
4241 method = xmlNewChild(body, ns, BAD_CAST(function->requestName), NULL);
4243 method = xmlNewChild(body, ns, BAD_CAST(function->functionName), NULL);
4258 method = xmlNewChild(body, ns, BAD_CAST(function_name), NULL);
4260 method = xmlNewChild(body, ns, BAD_CAST(function->requestName), NULL);
4262 method = xmlNewChild(body, ns, BAD_CAST(function->functionName), NULL);
4264 method = body;
4267 method = body;
4283 param = serialize_parameter(parameter, &arguments[i], i, NULL, use, method);
4305 param = serialize_parameter(parameter, NULL, i, NULL, use, method);
4380 if (method) {
4381 xmlSetNsProp(method, envelope->ns, BAD_CAST("encodingStyle"), BAD_CAST(SOAP_1_2_ENC_NAMESPACE));