<?php

$client = new SoapClient(dirname(__FILE__) . "/round3_groupD_doclitparams.wsdl", array("trace" => 1, "exceptions" => 0));
$client->echoStringArray(array("param0" => array("one", "two", "three")));
echo $client->__getlastrequest();
$HTTP_RAW_POST_DATA = $client->__getlastrequest();
include "round3_groupD_doclitparams.inc";
echo "ok\n";
Example #2
0
<?php

$client = new SoapClient(dirname(__FILE__) . "/round2_base.wsdl", array("trace" => 1, "exceptions" => 0));
$client->echoStringArray(array('good', 'bad'));
echo $client->__getlastrequest();
$HTTP_RAW_POST_DATA = $client->__getlastrequest();
include "round2_base.inc";
echo "ok\n";
Example #3
0
<?php

$client = new SoapClient(dirname(__FILE__) . "/round2_base.wsdl", array("trace" => 1, "exceptions" => 0));
$client->echoStringArray(NULL);
echo $client->__getlastrequest();
$HTTP_RAW_POST_DATA = $client->__getlastrequest();
include "round2_base.inc";
echo "ok\n";
Example #4
0
<?php

$client = new SoapClient(dirname(__FILE__) . "/round3_groupD_rpcenc.wsdl", array("trace" => 1, "exceptions" => 0));
$client->echoStringArray(array("one", "two", "three"));
echo $client->__getlastrequest();
$HTTP_RAW_POST_DATA = $client->__getlastrequest();
include "round3_groupD_rpcenc.inc";
echo "ok\n";
Example #5
0
<?php

$client = new SoapClient(dirname(__FILE__) . "/round2_base.wsdl", array("trace" => 1, "exceptions" => 0));
$client->echoStringArray(array());
echo $client->__getlastrequest();
$HTTP_RAW_POST_DATA = $client->__getlastrequest();
include "round2_base.inc";
echo "ok\n";