Lines Matching refs:location

95 static void schema_load_file(sdlCtx *ctx, xmlAttrPtr ns, xmlChar *location, xmlAttrPtr tns, int imp…  in schema_load_file()  argument
96 if (location != NULL && in schema_load_file()
97 !zend_hash_str_exists(&ctx->docs, (char*)location, xmlStrlen(location))) { in schema_load_file()
102 sdl_set_uri_credentials(ctx, (char*)location); in schema_load_file()
103 doc = soap_xmlParseFile((char*)location); in schema_load_file()
107 soap_error1(E_ERROR, "Parsing Schema: can't import schema from '%s'", location); in schema_load_file()
112 soap_error1(E_ERROR, "Parsing Schema: can't import schema from '%s'", location); in schema_load_file()
118 …ema: can't import schema from '%s', unexpected 'targetNamespace'='%s'", location, ns->children->co… in schema_load_file()
122 …ema: can't import schema from '%s', unexpected 'targetNamespace'='%s'", location, new_tns->childre… in schema_load_file()
132 …(E_ERROR, "Parsing Schema: can't include schema from '%s', different 'targetNamespace'", location); in schema_load_file()
135 zend_hash_str_add_ptr(&ctx->docs, (char*)location, xmlStrlen(location), doc); in schema_load_file()
187 xmlAttrPtr location; in load_schema() local
189 location = get_attribute(trav->properties, "schemaLocation"); in load_schema()
190 if (location == NULL) { in load_schema()
197 uri = xmlBuildURI(location->children->content, trav->doc->URL); in load_schema()
199 uri = xmlBuildURI(location->children->content, base); in load_schema()
207 xmlAttrPtr location; in load_schema() local
209 location = get_attribute(trav->properties, "schemaLocation"); in load_schema()
210 if (location == NULL) { in load_schema()
217 uri = xmlBuildURI(location->children->content, trav->doc->URL); in load_schema()
219 uri = xmlBuildURI(location->children->content, base); in load_schema()
228 xmlAttrPtr ns, location; in load_schema() local
232 location = get_attribute(trav->properties, "schemaLocation"); in load_schema()
235 if (location) { in load_schema()
236 …'%s', namespace must not match the enclosing schema 'targetNamespace'", location->children->conten… in load_schema()
241 if (location) { in load_schema()
245 uri = xmlBuildURI(location->children->content, trav->doc->URL); in load_schema()
247 uri = xmlBuildURI(location->children->content, base); in load_schema()