You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
version 2.3 uses the following code to set the Soap Server options:
...
433 $this->SoapServerOptions=Array(
434 'soap_version' => SOAP_1_1|SOAP_1_2,
435 'encoding' => 'UTF-8',
436 'compression' => SOAP_COMPRESSION_ACCEPT|SOAP_COMPRESSION_GZIP|9
437 );
The expression SOAP_1_1|SOAP_1_2, which I think is meant to evaluate to to the
maximum available soap version, actually evaluates to 1|2 => 3. This is not a
valid version and the server fails
Original issue reported on code.google.com by [email protected] on 16 Jan 2013 at 3:07
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 16 Jan 2013 at 3:07The text was updated successfully, but these errors were encountered: