From: Dmitry Stogov Date: Wed, 6 Sep 2006 11:03:45 +0000 (+0000) Subject: Fixed support for endpoint's URL without part (Rob) X-Git-Tag: php-5.2.0RC4~89 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=76d748f372de33c1b488b5f330381a9461907d65;p=php Fixed support for endpoint's URL without part (Rob) --- diff --git a/ext/soap/php_http.c b/ext/soap/php_http.c index 12fe4290a7..b5df837dc7 100644 --- a/ext/soap/php_http.c +++ b/ext/soap/php_http.c @@ -401,6 +401,8 @@ try_again: } if (phpurl->path) { smart_str_appends(&soap_headers, phpurl->path); + } else { + smart_str_appendc(&soap_headers, '/'); } if (phpurl->query) { smart_str_appendc(&soap_headers, '?'); @@ -518,6 +520,8 @@ try_again: PHP_MD5Update(&md5ctx, (unsigned char*)"POST:", sizeof("POST:")-1); if (phpurl->path) { PHP_MD5Update(&md5ctx, (unsigned char*)phpurl->path, strlen(phpurl->path)); + } else { + PHP_MD5Update(&md5ctx, (unsigned char*)"/", 1); } if (phpurl->query) { PHP_MD5Update(&md5ctx, (unsigned char*)"?", 1); @@ -574,7 +578,9 @@ try_again: smart_str_append_const(&soap_headers, "\", uri=\""); if (phpurl->path) { smart_str_appends(&soap_headers, phpurl->path); - } + } else { + smart_str_appendc(&soap_headers, '/'); + } if (phpurl->query) { smart_str_appendc(&soap_headers, '?'); smart_str_appends(&soap_headers, phpurl->query);