Lines Matching refs:location

98 static void schema_load_file(sdlCtx *ctx, xmlAttrPtr ns, xmlChar *location, xmlAttrPtr tns, int imp…  in schema_load_file()  argument
99 if (location != NULL && in schema_load_file()
100 !zend_hash_exists(&ctx->docs, (char*)location, xmlStrlen(location)+1)) { in schema_load_file()
105 sdl_set_uri_credentials(ctx, (char*)location TSRMLS_CC); in schema_load_file()
106 doc = soap_xmlParseFile((char*)location TSRMLS_CC); in schema_load_file()
110 soap_error1(E_ERROR, "Parsing Schema: can't import schema from '%s'", location); in schema_load_file()
115 soap_error1(E_ERROR, "Parsing Schema: can't import schema from '%s'", location); in schema_load_file()
121 …ema: can't import schema from '%s', unexpected 'targetNamespace'='%s'", location, ns->children->co… in schema_load_file()
125 …ema: can't import schema from '%s', unexpected 'targetNamespace'='%s'", location, new_tns->childre… in schema_load_file()
135 …(E_ERROR, "Parsing Schema: can't include schema from '%s', different 'targetNamespace'", location); in schema_load_file()
138 …zend_hash_add(&ctx->docs, (char*)location, xmlStrlen(location)+1, (void**)&doc, sizeof(xmlDocPtr),… in schema_load_file()
190 xmlAttrPtr location; in load_schema() local
192 location = get_attribute(trav->properties, "schemaLocation"); in load_schema()
193 if (location == NULL) { in load_schema()
200 uri = xmlBuildURI(location->children->content, trav->doc->URL); in load_schema()
202 uri = xmlBuildURI(location->children->content, base); in load_schema()
210 xmlAttrPtr location; in load_schema() local
212 location = get_attribute(trav->properties, "schemaLocation"); in load_schema()
213 if (location == NULL) { in load_schema()
220 uri = xmlBuildURI(location->children->content, trav->doc->URL); in load_schema()
222 uri = xmlBuildURI(location->children->content, base); in load_schema()
231 xmlAttrPtr ns, location; in load_schema() local
235 location = get_attribute(trav->properties, "schemaLocation"); in load_schema()
238 if (location) { in load_schema()
239 …'%s', namespace must not match the enclosing schema 'targetNamespace'", location->children->conten… in load_schema()
244 if (location) { in load_schema()
248 uri = xmlBuildURI(location->children->content, trav->doc->URL); in load_schema()
250 uri = xmlBuildURI(location->children->content, base); in load_schema()