diff options
Diffstat (limited to 'ext/soap/php_sdl.c')
-rw-r--r-- | ext/soap/php_sdl.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/soap/php_sdl.c b/ext/soap/php_sdl.c index 507f5619f0..f89d8a5135 100644 --- a/ext/soap/php_sdl.c +++ b/ext/soap/php_sdl.c @@ -647,12 +647,19 @@ static void load_wsdl_ex(char *struri, sdlCtx *ctx, int include) xmlDocPtr wsdl; xmlNodePtr root, definitions, trav; xmlAttrPtr targetNamespace; + int old_error_reporting; /* TODO: WSDL Caching */ + old_error_reporting = EG(error_reporting); + EG(error_reporting) &= ~(E_WARNING|E_NOTICE|E_USER_WARNING|E_USER_NOTICE); + wsdl = xmlParseFile(struri); xmlCleanupParser(); + EG(error_reporting) = old_error_reporting; + + if (!wsdl) { php_error(E_ERROR, "SOAP-ERROR: Parsing WSDL: Couldn't load from %s", struri); } |