Lines Matching refs:struri
318 static void load_wsdl_ex(zval *this_ptr, char *struri, sdlCtx *ctx, int include) in load_wsdl_ex() argument
325 if (zend_hash_str_exists(&ctx->docs, struri, strlen(struri))) { in load_wsdl_ex()
329 sdl_set_uri_credentials(ctx, struri); in load_wsdl_ex()
330 wsdl = soap_xmlParseFile(struri); in load_wsdl_ex()
337 soap_error2(E_ERROR, "Parsing WSDL: Couldn't load from '%s' : %s", struri, xmlErrorPtr->message); in load_wsdl_ex()
339 soap_error1(E_ERROR, "Parsing WSDL: Couldn't load from '%s'", struri); in load_wsdl_ex()
343 zend_hash_str_add_ptr(&ctx->docs, struri, strlen(struri), wsdl); in load_wsdl_ex()
355 soap_error1(E_ERROR, "Parsing WSDL: Couldn't find <definitions> in '%s'", struri); in load_wsdl_ex()
725 static sdlPtr load_wsdl(zval *this_ptr, char *struri) in load_wsdl() argument
733 ctx.sdl->source = estrdup(struri); in load_wsdl()
743 load_wsdl_ex(this_ptr, struri, &ctx, 0); in load_wsdl()