mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
ext/soap: Remove bool type coercions in tests
This commit is contained in:
parent
0ab5f70b3c
commit
091308cb3e
7 changed files with 7 additions and 7 deletions
|
@ -6,7 +6,7 @@ soap
|
|||
soap.wsdl_cache_enabled=0
|
||||
--FILE--
|
||||
<?php
|
||||
$hdr = new SoapHeader("http://soapinterop.org/wsdl", "UnknownHeaderRequest", "Hello World", 1);
|
||||
$hdr = new SoapHeader("http://soapinterop.org/wsdl", "UnknownHeaderRequest", "Hello World", true);
|
||||
$client = new SoapClient(__DIR__."/round4_groupH_soapfault.wsdl",array("trace"=>1,"exceptions"=>0));
|
||||
$client->__soapCall("echoVersionMismatchFault",array(), null, $hdr);
|
||||
echo $client->__getlastrequest();
|
||||
|
|
|
@ -6,7 +6,7 @@ soap
|
|||
soap.wsdl_cache_enabled=0
|
||||
--FILE--
|
||||
<?php
|
||||
$hdr = new SoapHeader("http://soapinterop.org/","echoMeStringRequest", array("varString"=>"Hello World"), 1);
|
||||
$hdr = new SoapHeader("http://soapinterop.org/","echoMeStringRequest", array("varString"=>"Hello World"), true);
|
||||
$client = new SoapClient(__DIR__."/round4_groupI_xsd.wsdl",array("trace"=>1,"exceptions"=>0));
|
||||
$client->__soapCall("echoVoidSoapHeader",array(),null,$hdr);
|
||||
echo $client->__getlastrequest();
|
||||
|
|
|
@ -6,7 +6,7 @@ soap
|
|||
soap.wsdl_cache_enabled=0
|
||||
--FILE--
|
||||
<?php
|
||||
$hdr = new SoapHeader("http://soapinterop.org/","echoMeStringRequest", array(), 1);
|
||||
$hdr = new SoapHeader("http://soapinterop.org/","echoMeStringRequest", array(), true);
|
||||
$client = new SoapClient(__DIR__."/round4_groupI_xsd.wsdl",array("trace"=>1,"exceptions"=>0));
|
||||
$client->__soapCall("echoVoidSoapHeader",array(),null,$hdr);
|
||||
echo $client->__getlastrequest();
|
||||
|
|
|
@ -7,7 +7,7 @@ precision=14
|
|||
soap.wsdl_cache_enabled=0
|
||||
--FILE--
|
||||
<?php
|
||||
$hdr = new SoapHeader("http://soapinterop.org/","echoMeComplexTypeRequest", array("varInt"=>34,"varString"=>"arg","varFloat"=>12.345), 1);
|
||||
$hdr = new SoapHeader("http://soapinterop.org/","echoMeComplexTypeRequest", array("varInt"=>34,"varString"=>"arg","varFloat"=>12.345), true);
|
||||
$client = new SoapClient(__DIR__."/round4_groupI_xsd.wsdl",array("trace"=>1,"exceptions"=>0));
|
||||
$client->__soapCall("echoVoidSoapHeader",array(),null,$hdr);
|
||||
echo $client->__getlastrequest();
|
||||
|
|
|
@ -7,7 +7,7 @@ precision=14
|
|||
soap.wsdl_cache_enabled=0
|
||||
--FILE--
|
||||
<?php
|
||||
$hdr = new SoapHeader("http://soapinterop.org/","echoMeComplexTypeRequest", array("varInt"=>34,"varFloat"=>12.345), 1);
|
||||
$hdr = new SoapHeader("http://soapinterop.org/","echoMeComplexTypeRequest", array("varInt"=>34,"varFloat"=>12.345), true);
|
||||
$client = new SoapClient(__DIR__."/round4_groupI_xsd.wsdl",array("trace"=>1,"exceptions"=>0));
|
||||
$client->__soapCall("echoVoidSoapHeader",array(),null,$hdr);
|
||||
echo $client->__getlastrequest();
|
||||
|
|
|
@ -6,7 +6,7 @@ soap
|
|||
soap.wsdl_cache_enabled=0
|
||||
--FILE--
|
||||
<?php
|
||||
$hdr = new SoapHeader("http://soapinterop.org/","echoMeStringRequest", array("varString"=>"Hello World"), 1, SOAP_ACTOR_NEXT);
|
||||
$hdr = new SoapHeader("http://soapinterop.org/","echoMeStringRequest", array("varString"=>"Hello World"), true, SOAP_ACTOR_NEXT);
|
||||
$client = new SoapClient(__DIR__."/round4_groupI_xsd.wsdl",array("trace"=>1,"exceptions"=>0));
|
||||
$client->__soapCall("echoVoidSoapHeader",array(),null,$hdr);
|
||||
echo $client->__getlastrequest();
|
||||
|
|
|
@ -7,7 +7,7 @@ precision=14
|
|||
soap.wsdl_cache_enabled=0
|
||||
--FILE--
|
||||
<?php
|
||||
$hdr = new SoapHeader("http://soapinterop.org/","echoMeComplexTypeRequest", array("varInt"=>34,"varString"=>"arg","varFloat"=>12.345), 1, SOAP_ACTOR_NEXT);
|
||||
$hdr = new SoapHeader("http://soapinterop.org/","echoMeComplexTypeRequest", array("varInt"=>34,"varString"=>"arg","varFloat"=>12.345), true, SOAP_ACTOR_NEXT);
|
||||
$client = new SoapClient(__DIR__."/round4_groupI_xsd.wsdl",array("trace"=>1,"exceptions"=>0));
|
||||
$client->__soapCall("echoVoidSoapHeader",array(),null,$hdr);
|
||||
echo $client->__getlastrequest();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue