diff options
Diffstat (limited to 'ext/soap/interop/index.php')
-rw-r--r-- | ext/soap/interop/index.php | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/ext/soap/interop/index.php b/ext/soap/interop/index.php new file mode 100644 index 0000000..1ae25d9 --- /dev/null +++ b/ext/soap/interop/index.php @@ -0,0 +1,59 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> + +<html> +<head> + <title>PHP SOAP Interop</title> +</head> +<?php +// get our endpoint +$server = $_SERVER['HTTP_HOST'].':'.$_SERVER['SERVER_PORT']; +$base = (isset($_SERVER['HTTPS'])?"https://":"http://").$server.dirname($_SERVER['PHP_SELF'])."/interop.wsdl.php"; +$groupb = (isset($_SERVER['HTTPS'])?"https://":"http://").$server.dirname($_SERVER['PHP_SELF'])."/interopB.wsdl.php"; +$groupc = (isset($_SERVER['HTTPS'])?"https://":"http://").$server.dirname($_SERVER['PHP_SELF'])."/echoheadersvc.wsdl.php"; +?> +<body> + +<h2 align='center'>PHP SOAP Interop</h2> +<p>Welcome to the PHP SOAP Interop pages. These pages are set up for +SOAP Builder interop tests. You can find out more about the interop tests +at <a href="http://www.whitemesa.com/interop.htm">White Mesa</a>.</p> +<p>Currently Round 2 base, Group B and Group C interop tests are enabled.</p> + +<h3>Round 2 Interop Server</h3> +Base WSDL: <a href="<?php echo $base ?>"><?php echo $base ?></a><br> +Group B WSDL: <a href="<?php echo $groupb ?>"><?php echo $groupb ?></a><br> +Group C WSDL: <a href="<?php echo $groupc ?>"><?php echo $groupc ?></a><br> + +<h3>Interop Client</h3> + +<p>Notes: Tests are done both "Direct" and with "WSDL". WSDL tests use the supplied interop WSDL +to run the tests against. The Direct method uses an internal prebuilt list of methods and parameters +for the test.</p> +<p>Tests are also run against two methods of generating method parameters. The first, 'php', attempts +to directly serialize PHP variables into soap values. The second method, 'soapval', uses a SoapParam and SoapVar +classes to define what the type of the value is.</p> + +<h3>Client Test Interface</h3> +<p>The <a href="client_round2.php">client interface</a> allows you to run the PHP SOAP +Client against a choosen interop server. Each run updates the results database below.</p> + +<h3>Interop Client Test Results</h3> +<p>This is a database of the current test results using PHP SOAP Clients against interop servers.</p> +<p>More detail (wire) about errors (marked yellow or red) can be obtained by clicking on the +link in the result box. If we have an HTTP error +attempting to connect to the endpoint, we will mark all consecutive attempts as errors, and skip +testing that endpoint. This reduces the time it takes to run the tests if a server is unavailable.</p> +<ul> +<li><a href="client_round2_results.php?test=base&type=php&wsdl=0">Base results using PHP native types</a></li> +<li><a href="client_round2_results.php?test=base&type=soapval&wsdl=0">Base results using SOAP types</a></li> +<li><a href="client_round2_results.php?test=base&type=php&wsdl=1">Base results using PHP native types with WSDL</a></li> +<li><a href="client_round2_results.php?test=GroupB&type=php&wsdl=0">Group B results using PHP native types</a></li> +<li><a href="client_round2_results.php?test=GroupB&type=soapval&wsdl=0">Group B results using SOAP types</a></li> +<li><a href="client_round2_results.php?test=GroupB&type=php&wsdl=1">Group B results using PHP native types with WSDL</a></li> +<li><a href="client_round2_results.php?test=GroupC&type=php&wsdl=0">Group C results using PHP native types</a></li> +<li><a href="client_round2_results.php?test=GroupC&type=soapval&wsdl=0">Group C results using SOAP types</a></li> +<li><a href="client_round2_results.php?test=GroupC&type=php&wsdl=1">Group C results using PHP native types with WSDL</a></li> +<li><a href="client_round2_results.php">Show All Results</a></li> +</ul> +</body> +</html> |