We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5db3bf2 commit c68a901Copy full SHA for c68a901
ext/soap/config.w32
@@ -13,6 +13,10 @@ if (PHP_SOAP != "no") {
13
14
if (!PHP_SOAP_SHARED) {
15
ADD_FLAG('CFLAGS_SOAP', "/D LIBXML_STATIC ");
16
+ } else {
17
+ if (!CHECK_LIB('libxml2.lib', 'soap')) {
18
+ WARNING("soap support can't be enabled, libxml is not found");
19
+ }
20
}
21
} else {
22
WARNING("soap not enabled, libxml not found");
ext/soap/tests/wss/T09.phpt
@@ -167,7 +167,7 @@ var_dump($client->__setWSS(array(
167
return $data;
168
},
169
"x509_binsectoken" => null,
170
- "digest_method" => SOAP_WSS_DIGEST_METHOD_SHA256,
+ "digest_method" => SOAP_WSS_DIGEST_METHOD_SHA256,
171
"add_timestamp" => true,
172
"timestamp_expires" => 120,
173
"random_id" => true,
0 commit comments