From ba833d2bc05227f54643176260f3f6127e59eaa8 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 6 Sep 2006 11:03:59 +0000 Subject: [PATCH] Fixed support for endpoint's URL without part (Rob) --- ext/soap/php_http.c | 6 ++++++ 1 file changed, 6 insertions(+) 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, '?'); -- 2.50.1