PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? Jul 2004, PHP 5.0.0
+- Fixed bug #28702 (SOAP does not parse WSDL service address correctly). (Dmitry)
- Fixed bug #28694 (ReflectionExtension::getFunctions() crashes PHP). (Marcus)
7 Jun 2004, PHP 5 Release Candidate 3
smart_str_append_unsigned(&soap_headers, phpurl->port);
}
smart_str_appends(&soap_headers, phpurl->path);
+ if (phpurl->query) {
+ smart_str_appendc(&soap_headers, '?');
+ smart_str_appends(&soap_headers, phpurl->query);
+ }
smart_str_append_const(&soap_headers, " HTTP/1.1\r\n"
"Host: ");
smart_str_appends(&soap_headers, phpurl->host);