From: Dmitry Stogov Date: Wed, 6 Sep 2006 11:03:59 +0000 (+0000) Subject: Fixed support for endpoint's URL without part (Rob) X-Git-Tag: RELEASE_1_0_0RC1~1759 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba833d2bc05227f54643176260f3f6127e59eaa8;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 6032fa0cb4..229fb52a21 100644 --- a/ext/soap/php_http.c +++ b/ext/soap/php_http.c @@ -398,6 +398,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, '?'); @@ -499,6 +501,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); @@ -548,6 +552,8 @@ 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, '?');