Skip to content

Instantly share code, notes, and snippets.

Created November 29, 2015 04:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/c7bd9d0cf1c4246beb69 to your computer and use it in GitHub Desktop.
Save anonymous/c7bd9d0cf1c4246beb69 to your computer and use it in GitHub Desktop.
PHP7.0.0RC8 Soap Array Reference Bug Results
Expected:
PHP Version: 5.5.9-1ubuntu4.14
PASS: Requests Identical
Fine: <?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://RayWhite.PropertyServices.ServiceContracts" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SOAP-ENV:Body><ns1:GetSuburbsByLocationCountryRequest><ns1:LocationName>3000</ns1:LocationName><ns1:NumberOfResults xsi:nil="true"/></ns1:GetSuburbsByLocationCountryRequest></SOAP-ENV:Body></SOAP-ENV:Envelope>
Bad: <?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://RayWhite.PropertyServices.ServiceContracts" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SOAP-ENV:Body><ns1:GetSuburbsByLocationCountryRequest><ns1:LocationName>3000</ns1:LocationName><ns1:NumberOfResults xsi:nil="true"/></ns1:GetSuburbsByLocationCountryRequest></SOAP-ENV:Body></SOAP-ENV:Envelope>
Actual:
PHP Version: 7.0.0RC8
FAIL: Requests Differ
Fine: <?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://RayWhite.PropertyServices.ServiceContracts" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SOAP-ENV:Body><ns1:GetSuburbsByLocationCountryRequest><ns1:LocationName>3000</ns1:LocationName><ns1:NumberOfResults xsi:nil="true"/></ns1:GetSuburbsByLocationCountryRequest></SOAP-ENV:Body></SOAP-ENV:Envelope>
Bad: <?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://RayWhite.PropertyServices.ServiceContracts"><SOAP-ENV:Body><ns1:GetSuburbsByLocationCountryRequest/></SOAP-ENV:Body></SOAP-ENV:Envelope>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment